mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
44 lines
1 KiB
Nix
44 lines
1 KiB
Nix
{ lib, fetchFromGitLab, buildGoModule, ruby, libkrb5 }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gitlab-shell";
|
|
version = "14.39.0";
|
|
|
|
# nixpkgs-update: no auto update
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-shell";
|
|
rev = "v${version}";
|
|
hash = "sha256-HSieVAYuqv5zYN6CMAo86s/Df17PdIXzDIZ2pM4Sqlw=";
|
|
};
|
|
|
|
buildInputs = [ ruby libkrb5 ];
|
|
|
|
patches = [
|
|
./remove-hardcoded-locations.patch
|
|
];
|
|
|
|
vendorHash = "sha256-wlxHaPstdXjMWV+qHxahAukk/Lc07kq37SlnCU3KO4o=";
|
|
|
|
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;
|
|
maintainers = teams.gitlab.members;
|
|
license = licenses.mit;
|
|
};
|
|
}
|