2018-09-21 08:37:51 +01:00
|
|
|
{ stdenv, lib, fetchurl, fetchFromGitLab, bundlerEnv
|
2019-07-04 23:20:00 +01:00
|
|
|
, ruby, tzdata, git, nettools, nixosTests
|
2018-09-25 01:32:02 +01:00
|
|
|
, gitlabEnterprise ? false
|
2015-01-25 21:01:48 +00:00
|
|
|
}:
|
2014-10-25 17:22:49 +01:00
|
|
|
|
|
|
|
let
|
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;
|
2018-10-08 14:02:14 +01:00
|
|
|
gemdir = ./rubyEnv- + "${if gitlabEnterprise then "ee" else "ce"}";
|
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 = [
|
|
|
|
"default" "unicorn" "ed25519" "metrics" "development" "puma" "test"
|
|
|
|
];
|
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
|
|
|
|
2018-11-23 14:03:02 +00:00
|
|
|
flavour = if gitlabEnterprise then "ee" else "ce";
|
|
|
|
data = (builtins.fromJSON (builtins.readFile ./data.json)).${flavour};
|
2017-09-03 14:38:28 +01:00
|
|
|
|
2018-11-23 14:03:02 +00:00
|
|
|
version = data.version;
|
|
|
|
sources = {
|
2018-09-21 08:40:08 +01:00
|
|
|
gitlab = fetchFromGitLab {
|
2018-11-23 14:03:02 +00:00
|
|
|
owner = data.owner;
|
|
|
|
repo = data.repo;
|
|
|
|
rev = data.rev;
|
|
|
|
sha256 = data.repo_hash;
|
2018-09-21 08:40:08 +01:00
|
|
|
};
|
|
|
|
gitlabDeb = fetchurl {
|
2018-11-23 14:03:02 +00:00
|
|
|
url = data.deb_url;
|
|
|
|
sha256 = data.deb_hash;
|
2018-09-21 08:40:08 +01:00
|
|
|
};
|
2017-09-03 14:38:28 +01: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 = [
|
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 = ''
|
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
|
|
|
|
|
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
|
2019-08-14 13:42:52 +01:00
|
|
|
rm gitlab-deb-data.tar
|
2018-01-07 03:59:27 +00:00
|
|
|
|
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;
|
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;
|
|
|
|
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
|
|
|
}
|