2018-09-21 08:37:51 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv
|
2018-09-25 01:32:02 +01:00
|
|
|
, ruby, tzdata, git, procps, nettools
|
|
|
|
, gitlabEnterprise ? false
|
2015-01-25 21:01:48 +00:00
|
|
|
}:
|
2014-10-25 17:22:49 +01:00
|
|
|
|
|
|
|
let
|
2017-09-03 14:38:28 +01:00
|
|
|
rubyEnv = bundlerEnv {
|
|
|
|
name = "gitlab-env-${version}";
|
2015-01-25 21:01:48 +00:00
|
|
|
inherit ruby;
|
2018-10-08 14:02:14 +01:00
|
|
|
gemdir = ./rubyEnv- + "${if gitlabEnterprise then "ee" else "ce"}";
|
2018-04-25 18:57:10 +01:00
|
|
|
groups = [ "default" "unicorn" "ed25519" "metrics" ];
|
2015-01-25 21:01:48 +00:00
|
|
|
};
|
2014-10-25 17:22:49 +01:00
|
|
|
|
2018-11-03 00:44:47 +00:00
|
|
|
version = "11.4.4";
|
2017-09-03 14:38:28 +01:00
|
|
|
|
2018-09-21 08:40:08 +01: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";
|
2018-11-03 00:44:47 +00:00
|
|
|
sha256 = "15lpcdjcw6lpmzlhqnpd6pgaxh7wvx2mldjd1vqr414r4bcnhgy4";
|
2018-09-21 08:40:08 +01:00
|
|
|
};
|
|
|
|
gitlab = fetchFromGitLab {
|
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-ee";
|
|
|
|
rev = "v${version}-ee";
|
2018-11-03 00:44:47 +00:00
|
|
|
sha256 = "046hchr7q4jnx3j4yxg3rdixfzlva35al3ci26pf9vxrbbl5y8cg";
|
2018-09-21 08:40:08 +01:00
|
|
|
};
|
|
|
|
} else {
|
|
|
|
gitlabDeb = fetchurl {
|
|
|
|
url = "https://packages.gitlab.com/gitlab/gitlab-ce/packages/debian/stretch/gitlab-ce_${version}-ce.0_amd64.deb/download.deb";
|
2018-11-03 00:44:47 +00:00
|
|
|
sha256 = "02p7azyjgb984bk491q6f4zk1mikbcd38rif08kl07bjjzzkir81";
|
2018-09-21 08:40:08 +01:00
|
|
|
};
|
|
|
|
gitlab = fetchFromGitLab {
|
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitlab-ce";
|
|
|
|
rev = "v${version}";
|
2018-11-03 00:44:47 +00:00
|
|
|
sha256 = "1hq9iyp0xrxwmncn61ja3pdj9h2hmdy1l63d1ic3r1dyacybaf2g";
|
2018-09-21 08:40:08 +01:00
|
|
|
};
|
2017-09-03 14:38:28 +01:00
|
|
|
};
|
2017-03-02 03:18:19 +00:00
|
|
|
|
2015-01-25 21:01:48 +00:00
|
|
|
in
|
2014-10-25 17:22:49 +01:00
|
|
|
|
2015-01-25 21:01:48 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-09-21 08:40:08 +01:00
|
|
|
name = "gitlab${if gitlabEnterprise then "-ee" else ""}-${version}";
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2018-09-21 08:40:08 +01:00
|
|
|
src = sources.gitlab;
|
2015-10-21 18:48:56 +01:00
|
|
|
|
2018-01-07 03:59:27 +00:00
|
|
|
buildInputs = [
|
2018-04-25 18:57:10 +01:00
|
|
|
rubyEnv rubyEnv.wrappedRuby rubyEnv.bundler tzdata git procps 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 = ''
|
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
|
|
|
|
# tests works though.:
|
|
|
|
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
|
|
|
|
|
|
|
|
substituteInPlace app/controllers/admin/background_jobs_controller.rb \
|
2018-04-25 18:57:10 +01:00
|
|
|
--replace "ps -U" "${procps}/bin/ps -U"
|
2014-10-25 17:22:49 +01:00
|
|
|
|
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
|
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 = ''
|
2016-01-30 13:47:04 +00:00
|
|
|
mv config/gitlab.yml.example config/gitlab.yml
|
2017-03-02 03:18:19 +00:00
|
|
|
|
2018-09-21 08:37:51 +01:00
|
|
|
# Building this requires yarn, node &c, so we just get it from the deb
|
2018-09-21 08:40:08 +01:00
|
|
|
ar p ${sources.gitlabDeb} data.tar.gz | gunzip > gitlab-deb-data.tar
|
2018-09-21 08:37:51 +01:00
|
|
|
# Work around unpacking deb containing binary with suid bit
|
2018-01-07 03:59:27 +00:00
|
|
|
tar -f gitlab-deb-data.tar --delete ./opt/gitlab/embedded/bin/ksu
|
|
|
|
tar -xf gitlab-deb-data.tar
|
|
|
|
|
2017-09-03 14:38:28 +01:00
|
|
|
mv -v opt/gitlab/embedded/service/gitlab-rails/public/assets public
|
2018-09-21 08:37:51 +01:00
|
|
|
rm -rf opt # only directory in data.tar.gz
|
2017-03-02 03:18:19 +00:00
|
|
|
|
2016-01-30 13:47:04 +00:00
|
|
|
mv config/gitlab.yml config/gitlab.yml.example
|
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
|
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 = ''
|
2017-10-14 21:58:02 +01:00
|
|
|
rm -r tmp
|
2015-01-25 21:01:48 +00:00
|
|
|
mkdir -p $out/share
|
|
|
|
cp -r . $out/share/gitlab
|
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 = {
|
2017-09-03 14:38:28 +01:00
|
|
|
inherit rubyEnv;
|
2018-04-25 18:57:10 +01:00
|
|
|
ruby = rubyEnv.wrappedRuby;
|
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;
|
|
|
|
maintainers = with maintainers; [ fpletz globin krav ];
|
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
|
|
|
}
|