34 lines
790 B
Nix
34 lines
790 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "glab";
|
|
version = "1.21.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "profclems";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-naCCJ9s63UPDxRWbVjVikXtGUlM4Lp7vyDHlESEtXeI=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-iiHDxiP6Dg7MK5jhSwly5oEhFZ8ByCx5WEyrbzL/u4w=";
|
|
runVend = true;
|
|
|
|
ldflags = [
|
|
"-X main.version=${version}"
|
|
];
|
|
|
|
preCheck = ''
|
|
# failed to read configuration: mkdir /homeless-shelter: permission denied
|
|
export HOME=$TMPDIR
|
|
'';
|
|
|
|
subPackages = [ "cmd/glab" ];
|
|
|
|
meta = with lib; {
|
|
description = "An open-source GitLab command line tool";
|
|
license = licenses.mit;
|
|
homepage = "https://glab.readthedocs.io/";
|
|
maintainers = with maintainers; [ freezeboy ];
|
|
};
|
|
}
|