2021-02-01 08:05:09 +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-05-22 07:36:22 +01:00
|
|
|
version = "0.22.0";
|
2018-12-15 14:37:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zaquestion";
|
|
|
|
repo = "lab";
|
|
|
|
rev = "v${version}";
|
2021-05-22 07:36:22 +01:00
|
|
|
sha256 = "sha256-CyXEmlsc40JtwDjRYNWqN+3cuoG8K07jAQdd1rktvS8=";
|
2018-12-15 14:37:35 +00:00
|
|
|
};
|
|
|
|
|
2019-03-18 06:13:52 +00:00
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-05-22 07:36:22 +01:00
|
|
|
vendorSha256 = "sha256-PSS7OPbM+XsylqDlWc4h+oZrOua2kSWKLEuyjqo/cxM=";
|
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-02-01 08:05:09 +00:00
|
|
|
wrapProgram $out/bin/lab --prefix PATH ":" "${lib.makeBinPath [ git xdg-utils ]}";
|
2021-01-06 03:25:32 +00:00
|
|
|
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;
|
2021-02-23 16:16:18 +00:00
|
|
|
maintainers = with maintainers; [ marsam dtzWill SuperSandro2000 ];
|
2018-12-15 14:37:35 +00:00
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|