Skip to content

Commit

Permalink
Merge pull request #108548 from marsam/update-lab
Browse files Browse the repository at this point in the history
gitAndTools.lab: 0.17.2 -> 0.18.0
  • Loading branch information
marsam committed Jan 6, 2021
2 parents c50b817 + 9cd62d0 commit edb4183
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions pkgs/applications/version-management/git-and-tools/lab/default.nix
@@ -1,32 +1,32 @@
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, xdg_utils }:
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, xdg_utils, installShellFiles, git }:

buildGoModule rec {
pname = "lab";
version = "0.17.2";
version = "0.18.0";

src = fetchFromGitHub {
owner = "zaquestion";
repo = "lab";
rev = "v${version}";
sha256 = "0zkwvmzgj7h8lc8jkg2a81392b28c8hkwqzj6dds6q4asbmymx5c";
sha256 = "1vl5ylix4h6z1vrdslv9qphgb6yqpqd4r54jzk5kd6zgrnf9c2zc";
};

subPackages = [ "." ];

vendorSha256 = "1lrmafvv5zfn9kc0p8g5vdz351n1zbaqwhwk861fxys0rdpqskyc";
vendorSha256 = "07zl5xhzgrgr5skba6cds5nal58pllf10gak0ap62j1k9gk2ych2";

doCheck = false;

buildInputs = [ makeWrapper ];
nativeBuildInputs = [ makeWrapper installShellFiles ];

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
wrapProgram $out/bin/lab --prefix PATH ":" "${lib.makeBinPath [ xdg_utils ]}";
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
'';

meta = with lib; {
Expand Down

0 comments on commit edb4183

Please sign in to comment.