2021-01-06 03:25:32 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, xdg_utils, installShellFiles, git }:
|
2018-12-15 14:37:35 +00:00
|
|
|
|
2019-03-18 06:13:52 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "lab";
|
2021-01-24 04:20:00 +00:00
|
|
|
version = "0.19.0";
|
2018-12-15 14:37:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zaquestion";
|
|
|
|
repo = "lab";
|
|
|
|
rev = "v${version}";
|
2021-01-24 04:20:00 +00:00
|
|
|
sha256 = "1l6xsikd1113qd4y0mvjsl64gbi4327m9v4d593f27fxink39j8s";
|
2018-12-15 14:37:35 +00:00
|
|
|
};
|
|
|
|
|
2019-03-18 06:13:52 +00:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-01-06 03:25:32 +00:00
|
|
|
vendorSha256 = "07zl5xhzgrgr5skba6cds5nal58pllf10gak0ap62j1k9gk2ych2";
|
2019-12-13 05:00:00 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-06 03:25:32 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper installShellFiles ];
|
2020-10-20 16:01:09 +01:00
|
|
|
|
2019-12-13 05:00:00 +00:00
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
|
2018-12-15 14:37:35 +00:00
|
|
|
|
2019-03-17 21:10:35 +00:00
|
|
|
postInstall = ''
|
2021-01-06 03:25:32 +00:00
|
|
|
wrapProgram $out/bin/lab --prefix PATH ":" "${lib.makeBinPath [ git xdg_utils ]}";
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/lab completion $shell > lab.$shell
|
|
|
|
installShellCompletion lab.$shell
|
|
|
|
done
|
2019-03-17 21:10:35 +00:00
|
|
|
'';
|
|
|
|
|
2020-10-20 16:01:09 +01:00
|
|
|
meta = with lib; {
|
2018-12-15 14:37:35 +00:00
|
|
|
description = "Lab wraps Git or Hub, making it simple to clone, fork, and interact with repositories on GitLab";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://zaquestion.github.io/lab";
|
2019-05-31 18:57:17 +01:00
|
|
|
license = licenses.cc0;
|
2019-03-18 06:13:52 +00:00
|
|
|
maintainers = with maintainers; [ marsam dtzWill ];
|
2018-12-15 14:37:35 +00:00
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|