f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
36 lines
898 B
Nix
36 lines
898 B
Nix
{ lib, fetchFromGitLab, buildGoModule, ruby, libkrb5 }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-shell";
|
|
version = "14.37.0";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-shell";
|
|
rev = "v${version}";
|
|
hash = "sha256-to4ZIFKEiM4FCznoLrvHua9/hIqiHcviALzfay+1rb8=";
|
|
};
|
|
|
|
buildInputs = [ ruby libkrb5 ];
|
|
|
|
patches = [
|
|
./remove-hardcoded-locations.patch
|
|
];
|
|
|
|
vendorHash = "sha256-TbjpCCo/ZdFP+yE2h8B8kwS08iUilXNgBT2F5Si7/dc=";
|
|
|
|
postInstall = ''
|
|
cp -r "$NIX_BUILD_TOP/source"/bin/* $out/bin
|
|
cp -r "$NIX_BUILD_TOP/source"/{support,VERSION} $out/
|
|
'';
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "SSH access and repository management app for GitLab";
|
|
homepage = "http://www.gitlab.com/";
|
|
platforms = platforms.linux;
|
|
maintainers = teams.gitlab.members;
|
|
license = licenses.mit;
|
|
};
|
|
}
|