Merge #306057: init broom at 0.3.0

This commit is contained in:
nicoo 2024-05-02 13:29:16 +00:00 committed by GitHub
commit b100b00625
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

View file

@ -429,6 +429,12 @@
githubId = 1517066;
name = "Aiken Cairncross";
};
a-camarillo = {
name = "Anthony Camarillo";
email = "anthony.camarillo.96@gmail.com";
github = "a-camarillo";
githubId = 58638902;
};
aciceri = {
name = "Andrea Ciceri";
email = "andrea.ciceri@autistici.org";

View 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";
};
}