mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 03:53:41 +00:00
33 lines
1,007 B
Nix
33 lines
1,007 B
Nix
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "lab";
|
|
version = "0.16.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zaquestion";
|
|
repo = "lab";
|
|
rev = "v${version}";
|
|
sha256 = "0f1gi4mlcxjvz2sgh0hzzsqxg5gfvq2ay7xjd0y1kz3pp8kxja7i";
|
|
};
|
|
|
|
subPackages = [ "." ];
|
|
|
|
modSha256 = "0bw47dd1b46ywsian2b957a4ipm77ncidipzri9ra39paqlv7abb";
|
|
|
|
postInstall = ''
|
|
mkdir -p "$out/share/bash-completion/completions" "$out/share/zsh/site-functions"
|
|
export LAB_CORE_HOST=a LAB_CORE_USER=b LAB_CORE_TOKEN=c
|
|
$out/bin/lab completion bash > $out/share/bash-completion/completions/lab
|
|
$out/bin/lab completion zsh > $out/share/zsh/site-functions/_lab
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Lab wraps Git or Hub, making it simple to clone, fork, and interact with repositories on GitLab";
|
|
homepage = https://zaquestion.github.io/lab;
|
|
license = licenses.cc0;
|
|
maintainers = with maintainers; [ marsam dtzWill ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|