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

48 lines
1.3 KiB
Nix
Raw Normal View History

2017-07-05 22:53:31 +01:00
{ stdenv, ruby, bundler, fetchFromGitLab, go }:
stdenv.mkDerivation rec {
2019-02-05 19:40:41 +00:00
version = "8.4.4";
name = "gitlab-shell-${version}";
2015-01-25 21:10:04 +00:00
2018-09-21 08:34:26 +01:00
src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-shell";
rev = "v${version}";
2019-02-05 19:40:41 +00:00
sha256 = "1a6p13g38f4gqqfjgymcvf09k4mnr2bfpj8mqz0x6rz7q67lllcq";
};
2018-01-07 03:58:31 +00:00
buildInputs = [ ruby bundler go ];
2018-09-21 08:34:26 +01:00
patches = [ ./remove-hardcoded-locations.patch ];
installPhase = ''
export GOCACHE="$TMPDIR/go-cache"
2017-07-05 22:53:31 +01:00
ruby bin/compile
mkdir -p $out/
cp -R . $out/
# Nothing to install ATM for non-development but keeping the
# install command anyway in case that changes in the future:
export HOME=$(pwd)
bundle install -j4 --verbose --local --deployment --without development test
'';
2015-01-25 21:10:04 +00:00
# gitlab-shell will try to read its config relative to the source
# code by default which doesn't work in nixos because it's a
# read-only filesystem
postPatch = ''
substituteInPlace lib/gitlab_config.rb --replace \
"File.join(ROOT_PATH, 'config.yml')" \
"'/run/gitlab/shell-config.yml'"
'';
2016-09-27 14:49:21 +01:00
meta = with stdenv.lib; {
2018-09-21 08:34:26 +01:00
description = "SSH access and repository management app for GitLab";
2016-09-27 14:49:21 +01:00
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
2018-04-25 18:55:58 +01:00
maintainers = with maintainers; [ fpletz globin ];
2016-09-27 14:49:21 +01:00
license = licenses.mit;
};
}