7d542a9f98
GitOrigin-RevId: b72b8b94cf0c012b0252a9100a636cad69696666
32 lines
868 B
Nix
32 lines
868 B
Nix
{ lib, fetchFromGitLab, buildGoModule, ruby }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-shell";
|
|
version = "14.13.0";
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-shell";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-KN1twfuamRsG5/jan4Frhd4LXOU9Bp5Htex+TsTc+Is=";
|
|
};
|
|
|
|
buildInputs = [ ruby ];
|
|
|
|
patches = [ ./remove-hardcoded-locations.patch ];
|
|
|
|
vendorSha256 = "sha256-CAadjiZCopjGNxQTJbvs56THtAve92ewiFLjGTY2/9E=";
|
|
|
|
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 = with maintainers; [ globin talyz yayayayaka ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|