mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
a3b2828de3
This is left over from when gitlab-shell had a ruby part and a go part. The ruby part is now gone, so let's call the go part gitlab-shell.
33 lines
892 B
Nix
33 lines
892 B
Nix
{ stdenv, fetchFromGitLab, buildGoPackage, ruby }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "gitlab-shell";
|
|
version = "11.0.0";
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitlab-shell";
|
|
rev = "v${version}";
|
|
sha256 = "1ca4yil8gp1cm7w939irp1x2y907z2mkdqiap8ik8mqp8svv1m44";
|
|
};
|
|
|
|
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.linux;
|
|
maintainers = with maintainers; [ fpletz globin talyz ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|