forked from mirrors/nixpkgs
066db11215
This reverts commit4e6bf03504
, reversing changes made toafd997aab6
. Instead we propagate those frameworks from the compiler again
35 lines
1.1 KiB
Nix
35 lines
1.1 KiB
Nix
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "lab";
|
|
version = "0.17.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zaquestion";
|
|
repo = "lab";
|
|
rev = "v${version}";
|
|
sha256 = "0zkwvmzgj7h8lc8jkg2a81392b28c8hkwqzj6dds6q4asbmymx5c";
|
|
};
|
|
|
|
subPackages = [ "." ];
|
|
|
|
modSha256 = "03fqa7s6729g0a6ffiyc61dkldpi7vg8pvvpqak4c0mqi1dycivd";
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
|
|
|
|
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;
|
|
};
|
|
}
|