5081a6cd56
- gitlab-shell no longer requires ruby for anything else than the install script, so the bundlerEnv stuff could be dropped - gitlab-shell and gitlab-workhorse now report their versions correctly
32 lines
894 B
Nix
32 lines
894 B
Nix
{ stdenv, fetchFromGitLab, buildGoPackage, ruby }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "gitlab-shell-go";
|
|
version = "10.2.0";
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-shell";
|
|
rev = "v${version}";
|
|
sha256 = "1mpzsdqd8mlsh8wccz4s8415w080z55lnifn7l7vd5rflpnyfhcj";
|
|
};
|
|
|
|
buildInputs = [ ruby ];
|
|
|
|
patches = [ ./remove-hardcoded-locations.patch ];
|
|
|
|
goPackagePath = "gitlab.com/gitlab-org/gitlab-shell";
|
|
goDeps = ./deps.nix;
|
|
|
|
postInstall = ''
|
|
cp -r "$NIX_BUILD_TOP/go/src/$goPackagePath"/bin/* $bin/bin
|
|
cp -r "$NIX_BUILD_TOP/go/src/$goPackagePath"/{support,VERSION} $bin/
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "SSH access and repository management app for GitLab";
|
|
homepage = http://www.gitlab.com/;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ fpletz globin talyz ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|