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

89 lines
2.3 KiB
Nix
Raw Normal View History

2016-03-15 20:50:10 +00:00
{ stdenv, lib, bundler, fetchFromGitHub, bundlerEnv, libiconv, ruby
2015-10-21 17:48:56 +00:00
, tzdata, git, nodejs, procps
2015-01-25 21:01:48 +00:00
}:
/* When updating the Gemfile add `gem "activerecord-nulldb-adapter"`
to allow building the assets without a database */
let
2015-01-25 21:01:48 +00:00
env = bundlerEnv {
name = "gitlab";
inherit ruby;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
meta = with lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.linux;
2016-09-27 13:49:21 +00:00
maintainers = with maintainers; [ fpletz ];
2015-01-25 21:01:48 +00:00
license = licenses.mit;
};
};
2015-01-25 21:01:48 +00:00
in
2015-01-25 21:01:48 +00:00
stdenv.mkDerivation rec {
name = "gitlab-${version}";
2016-11-10 05:16:42 +00:00
version = "8.13.5";
buildInputs = [ env ruby bundler tzdata git nodejs procps ];
src = fetchFromGitHub {
owner = "gitlabhq";
repo = "gitlabhq";
rev = "v${version}";
2016-11-10 05:16:42 +00:00
sha256 = "1ir52fdg81jawkfk03xj6c2j4lmw8sy4mwc25p024l0zpsg2gpz3";
2015-10-21 17:48:56 +00:00
};
patches = [
./remove-hardcoded-locations.patch
./nulladapter.patch
];
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
2015-10-21 17:48:56 +00:00
rm config/initializers/gitlab_shell_secret_token.rb
substituteInPlace app/controllers/admin/background_jobs_controller.rb \
--replace "ps -U" "${procps}/bin/ps -U"
# 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 21:01:48 +00:00
'';
2015-01-25 21:01:48 +00:00
buildPhase = ''
mv config/gitlab.yml.example config/gitlab.yml
GITLAB_DATABASE_ADAPTER=nulldb \
SKIP_STORAGE_VALIDATION=true \
rake assets:precompile RAILS_ENV=production
mv config/gitlab.yml config/gitlab.yml.example
rm config/secrets.yml
mv config config.dist
'';
2015-01-25 21:01:48 +00:00
installPhase = ''
mkdir -p $out/share
cp -r . $out/share/gitlab
ln -sf /run/gitlab/uploads $out/share/gitlab/public/uploads
ln -sf /run/gitlab/config $out/share/gitlab/config
2015-01-25 21:01:48 +00:00
'';
2015-01-25 21:01:48 +00:00
passthru = {
inherit env;
inherit ruby;
};
}