2018-09-21 08:37:51 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv
|
2019-10-08 10:24:06 +01:00
|
|
|
, ruby, tzdata, git, nettools, nixosTests, nodejs
|
|
|
|
, gitlabEnterprise ? false, callPackage, yarn
|
2019-10-20 21:32:31 +01:00
|
|
|
, fixup_yarn_lock, replace
|
2015-01-25 21:01:48 +00:00
|
|
|
}:
|
2014-10-25 17:22:49 +01:00
|
|
|
|
|
|
|
let
|
2019-10-08 14:52:11 +01:00
|
|
|
data = (builtins.fromJSON (builtins.readFile ./data.json));
|
2019-10-08 10:24:06 +01:00
|
|
|
|
|
|
|
version = data.version;
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
owner = data.owner;
|
|
|
|
repo = data.repo;
|
|
|
|
rev = data.rev;
|
|
|
|
sha256 = data.repo_hash;
|
|
|
|
};
|
|
|
|
|
2019-07-10 01:09:15 +01:00
|
|
|
rubyEnv = bundlerEnv rec {
|
2017-09-03 14:38:28 +01:00
|
|
|
name = "gitlab-env-${version}";
|
2015-01-25 21:01:48 +00:00
|
|
|
inherit ruby;
|
2019-10-08 14:52:11 +01:00
|
|
|
gemdir = ./rubyEnv;
|
2019-07-10 01:09:15 +01:00
|
|
|
gemset =
|
|
|
|
let x = import (gemdir + "/gemset.nix");
|
|
|
|
in x // {
|
|
|
|
# grpc expects the AR environment variable to contain `ar rpc`. See the
|
|
|
|
# discussion in nixpkgs #63056.
|
|
|
|
grpc = x.grpc // {
|
|
|
|
patches = [ ./fix-grpc-ar.patch ];
|
|
|
|
dontBuild = false;
|
|
|
|
};
|
|
|
|
};
|
2019-07-16 00:18:42 +01:00
|
|
|
groups = [
|
2019-10-01 14:38:22 +01:00
|
|
|
"default" "unicorn" "ed25519" "metrics" "development" "puma" "test" "kerberos"
|
2019-07-16 00:18:42 +01:00
|
|
|
];
|
2019-07-10 01:09:15 +01:00
|
|
|
# N.B. omniauth_oauth2_generic and apollo_upload_server both provide a
|
|
|
|
# `console` executable.
|
|
|
|
ignoreCollisions = true;
|
2015-01-25 21:01:48 +00:00
|
|
|
};
|
2014-10-25 17:22:49 +01:00
|
|
|
|
2019-10-08 10:24:06 +01:00
|
|
|
yarnOfflineCache = (callPackage ./yarnPkgs.nix {}).offline_cache;
|
2017-09-03 14:38:28 +01:00
|
|
|
|
2019-10-08 10:24:06 +01:00
|
|
|
assets = stdenv.mkDerivation {
|
|
|
|
pname = "gitlab-assets";
|
|
|
|
inherit version src;
|
|
|
|
|
2019-12-22 23:39:33 +00:00
|
|
|
nativeBuildInputs = [ rubyEnv.wrappedRuby rubyEnv.bundler nodejs yarn git ];
|
|
|
|
|
|
|
|
# Since version 12.6.0, the rake tasks need the location of git,
|
|
|
|
# so we have to apply the location patches here too.
|
|
|
|
patches = [ ./remove-hardcoded-locations.patch ];
|
|
|
|
# One of the patches uses this variable - if it's unset, execution
|
|
|
|
# of rake tasks fails.
|
|
|
|
GITLAB_LOG_PATH = "log";
|
2020-01-13 14:51:37 +00:00
|
|
|
FOSS_ONLY = !gitlabEnterprise;
|
2019-10-08 10:24:06 +01:00
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
runHook preConfigure
|
|
|
|
|
|
|
|
# Some rake tasks try to run yarn automatically, which won't work
|
|
|
|
rm lib/tasks/yarn.rake
|
|
|
|
|
|
|
|
# The rake tasks won't run without a basic configuration in place
|
|
|
|
mv config/database.yml.env config/database.yml
|
|
|
|
mv config/gitlab.yml.example config/gitlab.yml
|
|
|
|
|
|
|
|
# Yarn and bundler wants a real home directory to write cache, config, etc to
|
|
|
|
export HOME=$NIX_BUILD_TOP/fake_home
|
|
|
|
|
|
|
|
# Make yarn install packages from our offline cache, not the registry
|
|
|
|
yarn config --offline set yarn-offline-mirror ${yarnOfflineCache}
|
|
|
|
|
|
|
|
# Fixup "resolved"-entries in yarn.lock to match our offline cache
|
2019-10-20 21:32:31 +01:00
|
|
|
${fixup_yarn_lock}/bin/fixup_yarn_lock yarn.lock
|
2019-10-08 10:24:06 +01:00
|
|
|
|
2019-11-26 16:32:01 +00:00
|
|
|
# fixup_yarn_lock currently doesn't correctly fix the dagre-d3
|
|
|
|
# url, so we have to do it manually
|
|
|
|
${replace}/bin/replace-literal -f -e '"https://codeload.github.com/dagrejs/dagre-d3/tar.gz/e1a00e5cb518f5d2304a35647e024f31d178e55b"' \
|
|
|
|
'"https___codeload.github.com_dagrejs_dagre_d3_tar.gz_e1a00e5cb518f5d2304a35647e024f31d178e55b"' yarn.lock
|
|
|
|
|
2019-10-08 10:24:06 +01:00
|
|
|
yarn install --offline --frozen-lockfile --ignore-scripts --no-progress --non-interactive
|
|
|
|
|
|
|
|
patchShebangs node_modules/
|
|
|
|
|
|
|
|
runHook postConfigure
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
bundle exec rake gettext:po_to_json RAILS_ENV=production NODE_ENV=production
|
|
|
|
bundle exec rake rake:assets:precompile RAILS_ENV=production NODE_ENV=production
|
2019-11-04 15:46:05 +00:00
|
|
|
bundle exec rake webpack:compile RAILS_ENV=production NODE_ENV=production NODE_OPTIONS="--max_old_space_size=2048"
|
2019-10-08 10:24:06 +01:00
|
|
|
bundle exec rake gitlab:assets:fix_urls RAILS_ENV=production NODE_ENV=production
|
|
|
|
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mv public/assets $out
|
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
2017-09-03 14:38:28 +01:00
|
|
|
};
|
2015-01-25 21:01:48 +00:00
|
|
|
in
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-10-08 14:52:11 +01:00
|
|
|
name = "gitlab${lib.optionalString gitlabEnterprise "-ee"}-${version}";
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2019-10-08 10:24:06 +01:00
|
|
|
inherit src;
|
2015-10-21 18:48:56 +01:00
|
|
|
|
2018-01-07 03:59:27 +00:00
|
|
|
buildInputs = [
|
2019-07-04 23:20:00 +01:00
|
|
|
rubyEnv rubyEnv.wrappedRuby rubyEnv.bundler tzdata git nettools
|
2018-01-07 03:59:27 +00:00
|
|
|
];
|
|
|
|
|
2018-09-21 08:37:51 +01:00
|
|
|
patches = [ ./remove-hardcoded-locations.patch ];
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2014-10-25 17:22:49 +01:00
|
|
|
postPatch = ''
|
2019-10-08 14:52:11 +01:00
|
|
|
${lib.optionalString (!gitlabEnterprise) ''
|
|
|
|
# Remove all proprietary components
|
|
|
|
rm -rf ee
|
|
|
|
''}
|
|
|
|
|
2015-01-25 21:01:48 +00:00
|
|
|
# For reasons I don't understand "bundle exec" ignores the
|
|
|
|
# RAILS_ENV causing tests to be executed that fail because we're
|
|
|
|
# not installing development and test gems above. Deleting the
|
2019-10-08 10:24:06 +01:00
|
|
|
# tests works though.
|
2015-01-25 21:01:48 +00:00
|
|
|
rm lib/tasks/test.rake
|
2014-10-25 17:22:49 +01:00
|
|
|
|
2015-10-21 18:48:56 +01:00
|
|
|
rm config/initializers/gitlab_shell_secret_token.rb
|
|
|
|
|
2018-03-22 01:08:49 +00:00
|
|
|
sed -i '/ask_to_continue/d' lib/tasks/gitlab/two_factor.rake
|
2018-11-02 20:22:51 +00:00
|
|
|
sed -ri -e '/log_level/a config.logger = Logger.new(STDERR)' config/environments/production.rb
|
2019-10-19 15:36:24 +01:00
|
|
|
|
|
|
|
# Always require lib-files and application.rb through their store
|
|
|
|
# path, not their relative state directory path. This gets rid of
|
|
|
|
# warnings and means we don't have to link back to lib from the
|
|
|
|
# state directory.
|
|
|
|
${replace}/bin/replace-literal -f -r -e '../lib' "$out/share/gitlab/lib" config
|
|
|
|
${replace}/bin/replace-literal -f -r -e "require_relative 'application'" "require_relative '$out/share/gitlab/config/application'" config
|
2015-01-25 21:01:48 +00:00
|
|
|
'';
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2015-01-25 21:01:48 +00:00
|
|
|
buildPhase = ''
|
2017-09-03 14:38:28 +01:00
|
|
|
rm -f config/secrets.yml
|
2016-01-30 13:47:04 +00:00
|
|
|
mv config config.dist
|
2019-10-08 10:24:06 +01:00
|
|
|
rm -r tmp
|
2014-10-25 17:22:49 +01:00
|
|
|
'';
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2015-01-25 21:01:48 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share
|
|
|
|
cp -r . $out/share/gitlab
|
2019-10-08 10:24:06 +01:00
|
|
|
ln -sf ${assets} $out/share/gitlab/public/assets
|
2017-09-03 14:38:28 +01:00
|
|
|
rm -rf $out/share/gitlab/log
|
|
|
|
ln -sf /run/gitlab/log $out/share/gitlab/log
|
2016-01-30 13:47:04 +00:00
|
|
|
ln -sf /run/gitlab/uploads $out/share/gitlab/public/uploads
|
|
|
|
ln -sf /run/gitlab/config $out/share/gitlab/config
|
2017-10-14 21:58:02 +01:00
|
|
|
ln -sf /run/gitlab/tmp $out/share/gitlab/tmp
|
2017-03-21 11:52:39 +00:00
|
|
|
|
|
|
|
# rake tasks to mitigate CVE-2017-0882
|
|
|
|
# see https://about.gitlab.com/2017/03/20/gitlab-8-dot-17-dot-4-security-release/
|
|
|
|
cp ${./reset_token.rake} $out/share/gitlab/lib/tasks/reset_token.rake
|
2015-01-25 21:01:48 +00:00
|
|
|
'';
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2015-01-25 21:01:48 +00:00
|
|
|
passthru = {
|
2019-10-08 14:52:11 +01:00
|
|
|
inherit rubyEnv assets;
|
2018-04-25 18:57:10 +01:00
|
|
|
ruby = rubyEnv.wrappedRuby;
|
2018-11-23 14:03:02 +00:00
|
|
|
GITALY_SERVER_VERSION = data.passthru.GITALY_SERVER_VERSION;
|
|
|
|
GITLAB_PAGES_VERSION = data.passthru.GITLAB_PAGES_VERSION;
|
|
|
|
GITLAB_SHELL_VERSION = data.passthru.GITLAB_SHELL_VERSION;
|
|
|
|
GITLAB_WORKHORSE_VERSION = data.passthru.GITLAB_WORKHORSE_VERSION;
|
2019-06-13 01:23:15 +01:00
|
|
|
tests = {
|
|
|
|
nixos-test-passes = nixosTests.gitlab;
|
|
|
|
};
|
2014-10-25 17:22:49 +01:00
|
|
|
};
|
2018-08-20 19:08:12 +01:00
|
|
|
|
2018-09-21 08:37:51 +01:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = http://www.gitlab.com/;
|
|
|
|
platforms = platforms.linux;
|
2019-10-08 15:37:01 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin krav talyz ];
|
2018-09-21 08:40:08 +01:00
|
|
|
} // (if gitlabEnterprise then
|
|
|
|
{
|
|
|
|
license = licenses.unfreeRedistributable; # https://gitlab.com/gitlab-org/gitlab-ee/raw/master/LICENSE
|
|
|
|
description = "GitLab Enterprise Edition";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
license = licenses.mit;
|
|
|
|
description = "GitLab Community Edition";
|
|
|
|
longDescription = "GitLab Community Edition (CE) is an open source end-to-end software development platform with built-in version control, issue tracking, code review, CI/CD, and more. Self-host GitLab CE on your own servers, in a container, or on a cloud provider.";
|
|
|
|
});
|
2014-10-25 17:22:49 +01:00
|
|
|
}
|