nixpkgs/pkgs/applications/version-management/gitlab/default.nix

133 lines
4.3 KiB
Nix
Raw Normal View History

2018-09-21 09:37:51 +02:00
{ stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv
, ruby, tzdata, git, procps, nettools,
2018-09-21 09:40:08 +02:00
gitlabEnterprise ? false
2015-01-25 22:01:48 +01:00
}:
let
2017-09-03 15:38:28 +02:00
rubyEnv = bundlerEnv {
name = "gitlab-env-${version}";
2015-01-25 22:01:48 +01:00
inherit ruby;
2017-01-18 00:26:30 +01:00
gemdir = ./.;
2018-04-25 19:57:10 +02:00
groups = [ "default" "unicorn" "ed25519" "metrics" ];
2015-01-25 22:01:48 +01:00
};
2018-09-21 09:37:51 +02:00
version = "11.2.3";
2017-09-03 15:38:28 +02:00
2018-09-21 09:40:08 +02:00
sources = if gitlabEnterprise then {
gitlabDeb = fetchurl {
url = "https://packages.gitlab.com/gitlab/gitlab-ee/packages/debian/stretch/gitlab-ee_${version}-ee.0_amd64.deb/download.deb";
sha256 = "0gv8gqmbyzcbsqv1f7sixzsx7p2pk822gxi7hy7sddkcms12m4vr";
};
gitlab = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-ee";
rev = "v${version}-ee";
sha256 = "1ynr177d6y24h74sr3119ywgml0n39s8nfxssnixhmd69pz6rpm5";
};
} else {
gitlabDeb = fetchurl {
url = "https://packages.gitlab.com/gitlab/gitlab-ce/packages/debian/stretch/gitlab-ce_${version}-ce.0_amd64.deb/download.deb";
sha256 = "1z7mj412zj88ia24caq41bi5p1jbcfwnrvak3bqf1113f0snkb0x";
};
gitlab = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-ce";
rev = "v${version}";
sha256 = "1j8y2phwdj6dv55racypm8r2v8bnzcxh2g1z33v9212hrgyjzrrh";
};
2017-09-03 15:38:28 +02:00
};
2018-09-21 09:40:08 +02:00
2015-01-25 22:01:48 +01:00
in
2015-01-25 22:01:48 +01:00
stdenv.mkDerivation rec {
2018-09-21 09:40:08 +02:00
name = "gitlab${if gitlabEnterprise then "-ee" else ""}-${version}";
2018-09-21 09:40:08 +02:00
src = sources.gitlab;
2015-10-21 19:48:56 +02:00
2018-01-07 04:59:27 +01:00
buildInputs = [
2018-04-25 19:57:10 +02:00
rubyEnv rubyEnv.wrappedRuby rubyEnv.bundler tzdata git procps nettools
2018-01-07 04:59:27 +01:00
];
2018-09-21 09:37:51 +02:00
patches = [ ./remove-hardcoded-locations.patch ];
postPatch = ''
2015-01-25 22:01:48 +01: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
# tests works though.:
rm lib/tasks/test.rake
2015-10-21 19:48:56 +02:00
rm config/initializers/gitlab_shell_secret_token.rb
substituteInPlace app/controllers/admin/background_jobs_controller.rb \
2018-04-25 19:57:10 +02:00
--replace "ps -U" "${procps}/bin/ps -U"
2018-03-22 02:08:49 +01:00
sed -i '/ask_to_continue/d' lib/tasks/gitlab/two_factor.rake
# required for some gems:
cat > config/database.yml <<EOF
production:
adapter: <%= ENV["GITLAB_DATABASE_ADAPTER"] || sqlite %>
database: gitlab
host: <%= ENV["GITLAB_DATABASE_HOST"] || "127.0.0.1" %>
password: <%= ENV["GITLAB_DATABASE_PASSWORD"] || "blerg" %>
username: gitlab
encoding: utf8
EOF
2015-01-25 22:01:48 +01:00
'';
2015-01-25 22:01:48 +01:00
buildPhase = ''
mv config/gitlab.yml.example config/gitlab.yml
2018-09-21 09:37:51 +02:00
# Building this requires yarn, node &c, so we just get it from the deb
2018-09-21 09:40:08 +02:00
ar p ${sources.gitlabDeb} data.tar.gz | gunzip > gitlab-deb-data.tar
2018-09-21 09:37:51 +02:00
# Work around unpacking deb containing binary with suid bit
2018-01-07 04:59:27 +01:00
tar -f gitlab-deb-data.tar --delete ./opt/gitlab/embedded/bin/ksu
tar -xf gitlab-deb-data.tar
2017-09-03 15:38:28 +02:00
mv -v opt/gitlab/embedded/service/gitlab-rails/public/assets public
2018-09-21 09:37:51 +02:00
rm -rf opt # only directory in data.tar.gz
mv config/gitlab.yml config/gitlab.yml.example
2017-09-03 15:38:28 +02:00
rm -f config/secrets.yml
mv config config.dist
'';
2015-01-25 22:01:48 +01:00
installPhase = ''
rm -r tmp
2015-01-25 22:01:48 +01:00
mkdir -p $out/share
cp -r . $out/share/gitlab
2017-09-03 15:38:28 +02:00
rm -rf $out/share/gitlab/log
ln -sf /run/gitlab/log $out/share/gitlab/log
ln -sf /run/gitlab/uploads $out/share/gitlab/public/uploads
ln -sf /run/gitlab/config $out/share/gitlab/config
ln -sf /run/gitlab/tmp $out/share/gitlab/tmp
# 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 22:01:48 +01:00
'';
2015-01-25 22:01:48 +01:00
passthru = {
2017-09-03 15:38:28 +02:00
inherit rubyEnv;
2018-04-25 19:57:10 +02:00
ruby = rubyEnv.wrappedRuby;
};
2018-08-20 20:08:12 +02:00
2018-09-21 09:37:51 +02:00
meta = with lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.linux;
maintainers = with maintainers; [ fpletz globin krav ];
2018-09-21 09:40:08 +02: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.";
});
}