broom: init at 0.3.0
This commit is contained in:
parent
7bacb4ec62
commit
2f4fd9f520
1 changed files with 28 additions and 0 deletions
28
pkgs/by-name/br/broom/package.nix
Normal file
28
pkgs/by-name/br/broom/package.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "broom";
|
||||
version = "0.3.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "a-camarillo";
|
||||
repo = "broom";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-a2hUgYpiKm/dZWLRuCZKuGStmZ/7jDtLRAjd/B57Vxw=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-zNklqGjMt89b+JOZfKjTO6c75SXO10e7YtQOqqQZpnA=";
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "An interactive CLI tool for managing local git branches";
|
||||
homepage = "https://github.com/a-camarillo/broom";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ a-camarillo ];
|
||||
mainProgram = "broom";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue