2017-07-05 22:53:31 +01:00
|
|
|
{ pkgs, stdenv, lib, bundler, fetchurl, fetchFromGitHub, bundlerEnv, libiconv
|
|
|
|
, ruby, tzdata, git, nodejs, procps, dpkg, yarn
|
2015-01-25 21:01:48 +00:00
|
|
|
}:
|
2014-10-25 17:22:49 +01:00
|
|
|
|
2016-01-30 13:47:04 +00:00
|
|
|
/* When updating the Gemfile add `gem "activerecord-nulldb-adapter"`
|
|
|
|
to allow building the assets without a database */
|
|
|
|
|
2014-10-25 17:22:49 +01:00
|
|
|
let
|
2017-07-05 22:53:31 +01:00
|
|
|
# Taken from yarn2nix
|
|
|
|
buildYarnPackageDeps = {
|
|
|
|
name,
|
|
|
|
packageJson,
|
|
|
|
yarnLock,
|
|
|
|
yarnNix,
|
|
|
|
pkgConfig ? {},
|
|
|
|
yarnFlags ? []
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
offlineCache = (pkgs.callPackage yarnNix {}).offline_cache;
|
|
|
|
extraBuildInputs = (lib.flatten (builtins.map (key:
|
|
|
|
pkgConfig.${key} . buildInputs or []
|
|
|
|
) (builtins.attrNames pkgConfig)));
|
|
|
|
postInstall = (builtins.map (key:
|
|
|
|
if (pkgConfig.${key} ? postInstall) then
|
|
|
|
''
|
|
|
|
for f in $(find -L -path '*/node_modules/${key}' -type d); do
|
|
|
|
(cd "$f" && (${pkgConfig.${key}.postInstall}))
|
|
|
|
done
|
|
|
|
''
|
|
|
|
else
|
|
|
|
""
|
|
|
|
) (builtins.attrNames pkgConfig));
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "${name}-modules";
|
|
|
|
|
|
|
|
phases = ["buildPhase"];
|
|
|
|
buildInputs = [ yarn nodejs ] ++ extraBuildInputs;
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
# Yarn writes cache directories etc to $HOME.
|
|
|
|
export HOME=`pwd`/yarn_home
|
|
|
|
cp ${packageJson} ./package.json
|
|
|
|
cp ${yarnLock} ./yarn.lock
|
|
|
|
chmod +w ./yarn.lock
|
|
|
|
yarn config --offline set yarn-offline-mirror ${offlineCache}
|
|
|
|
# Do not look up in the registry, but in the offline cache.
|
|
|
|
# TODO: Ask upstream to fix this mess.
|
|
|
|
sed -i -E 's|^(\s*resolved\s*")https?://.*/|\1|' yarn.lock
|
|
|
|
yarn install ${lib.escapeShellArgs yarnFlags}
|
|
|
|
${lib.concatStringsSep "\n" postInstall}
|
|
|
|
mkdir $out
|
|
|
|
mv node_modules $out/
|
|
|
|
patchShebangs $out
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
node-env = buildYarnPackageDeps {
|
|
|
|
name = "gitlab";
|
|
|
|
packageJson = ./package.json;
|
|
|
|
yarnLock = ./yarn.lock;
|
|
|
|
yarnNix = ./yarn.nix;
|
|
|
|
yarnFlags = [
|
|
|
|
"--offline"
|
|
|
|
"--frozen-lockfile"
|
|
|
|
"--ignore-engines"
|
|
|
|
"--ignore-scripts"
|
|
|
|
];
|
|
|
|
# pkgConfig might need to come from node-packages ?
|
|
|
|
};
|
|
|
|
ruby-env = bundlerEnv {
|
2017-08-06 15:27:54 +01:00
|
|
|
name = "gitlab-env-0.2";
|
2015-01-25 21:01:48 +00:00
|
|
|
inherit ruby;
|
2017-01-17 23:26:30 +00:00
|
|
|
gemdir = ./.;
|
2015-01-25 21:01:48 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = http://www.gitlab.com/;
|
|
|
|
platforms = platforms.linux;
|
2017-09-02 22:23:09 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin ];
|
2015-01-25 21:01:48 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
};
|
2014-10-25 17:22:49 +01:00
|
|
|
|
2017-08-25 15:13:36 +01:00
|
|
|
version = "9.4.5";
|
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 {
|
|
|
|
name = "gitlab-${version}";
|
2016-01-30 13:47:04 +00:00
|
|
|
|
2017-03-02 03:18:19 +00:00
|
|
|
buildInputs = [
|
2017-07-05 22:53:31 +01:00
|
|
|
ruby-env ruby bundler tzdata git nodejs procps dpkg yarn
|
2017-03-02 03:18:19 +00:00
|
|
|
];
|
2016-01-30 13:47:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "gitlabhq";
|
|
|
|
repo = "gitlabhq";
|
|
|
|
rev = "v${version}";
|
2017-08-25 15:13:36 +01:00
|
|
|
sha256 = "1jdvgpzkrap9n9pclyi5ln5l5qfhj4y8ygb1w90jkgrd785bg573";
|
2015-10-21 18:48:56 +01:00
|
|
|
};
|
|
|
|
|
2014-10-25 17:22:49 +01:00
|
|
|
patches = [
|
|
|
|
./remove-hardcoded-locations.patch
|
2016-01-30 13:47:04 +00:00
|
|
|
./nulladapter.patch
|
2014-10-25 17:22:49 +01:00
|
|
|
];
|
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 \
|
|
|
|
--replace "ps -U" "${procps}/bin/ps -U"
|
2014-10-25 17:22:49 +01:00
|
|
|
|
|
|
|
# required for some gems:
|
|
|
|
cat > config/database.yml <<EOF
|
|
|
|
production:
|
2016-01-30 13:47:04 +00:00
|
|
|
adapter: <%= ENV["GITLAB_DATABASE_ADAPTER"] || sqlite %>
|
2014-10-25 17:22:49 +01:00
|
|
|
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
|
|
|
'';
|
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
|
|
|
|
2017-08-06 15:27:54 +01:00
|
|
|
# Emulate yarn install --production --pure-lockfile
|
2017-07-05 22:53:31 +01:00
|
|
|
mkdir -p node_modules/
|
|
|
|
ln -s ${node-env}/node_modules/* node_modules/
|
|
|
|
ln -s ${node-env}/node_modules/.bin node_modules/
|
|
|
|
|
2017-08-06 15:27:54 +01:00
|
|
|
# Compile assets. We skip the yarn check because it fails
|
|
|
|
export GITLAB_DATABASE_ADAPTER=nulldb
|
|
|
|
export SKIP_STORAGE_VALIDATION=true
|
2017-08-25 15:13:18 +01:00
|
|
|
rake gettext:compile RAILS_ENV=production
|
2017-07-05 22:53:31 +01:00
|
|
|
rake rake:assets:precompile RAILS_ENV=production NODE_ENV=production
|
|
|
|
rake webpack:compile RAILS_ENV=production NODE_ENV=production
|
|
|
|
rake gitlab:assets:fix_urls RAILS_ENV=production NODE_ENV=production
|
2017-03-02 03:18:19 +00:00
|
|
|
|
2016-01-30 13:47:04 +00:00
|
|
|
mv config/gitlab.yml config/gitlab.yml.example
|
2016-08-17 12:16:32 +01:00
|
|
|
rm 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 = ''
|
|
|
|
mkdir -p $out/share
|
|
|
|
cp -r . $out/share/gitlab
|
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-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-07-05 22:53:31 +01:00
|
|
|
inherit ruby-env;
|
2015-01-25 21:01:48 +00:00
|
|
|
inherit ruby;
|
2014-10-25 17:22:49 +01:00
|
|
|
};
|
|
|
|
}
|