Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitLab,
|
|
buildGoModule,
|
|
ruby,
|
|
libkrb5,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-shell";
|
|
version = "14.45.2";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-shell";
|
|
rev = "v${version}";
|
|
hash = "sha256-FxtqTRCa1sYSeTR+V2UKEsb480llU6cHWVwNiNFtUmE=";
|
|
};
|
|
|
|
buildInputs = [
|
|
ruby
|
|
libkrb5
|
|
];
|
|
|
|
patches = [
|
|
./remove-hardcoded-locations.patch
|
|
];
|
|
|
|
vendorHash = "sha256-Q3U0uuO+w+0GpDc7zEoiwUYsCIpXG+LOP822KNWR9Ww=";
|
|
|
|
subPackages = [
|
|
"cmd/gitlab-shell"
|
|
"cmd/gitlab-sshd"
|
|
"cmd/gitlab-shell-check"
|
|
"cmd/gitlab-shell-authorized-principals-check"
|
|
"cmd/gitlab-shell-authorized-keys-check"
|
|
];
|
|
|
|
postInstall = ''
|
|
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;
|
|
teams = [ teams.gitlab ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|