mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
31 lines
713 B
Nix
31 lines
713 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gh-i";
|
|
version = "0.0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "gennaro-tedesco";
|
|
repo = "gh-i";
|
|
rev = "v${version}";
|
|
hash = "sha256-k1xfQxRh8T0SINtbFlIVNFEODYU0RhBAkjudOv1bLvw=";
|
|
};
|
|
|
|
vendorHash = "sha256-eqSAwHFrvBxLl5zcZyp3+1wTf7+JmpogFBDuVgzNm+w=";
|
|
|
|
ldflags = [ "-s" ];
|
|
|
|
meta = with lib; {
|
|
description = "Search github issues interactively";
|
|
changelog = "https://github.com/gennaro-tedesco/gh-i/releases/tag/v${version}";
|
|
homepage = "https://github.com/gennaro-tedesco/gh-i";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ phanirithvij ];
|
|
mainProgram = "gh-i";
|
|
};
|
|
}
|