Commit 69cb9958 authored by phanirithvij's avatar phanirithvij
Browse files

gh-i: init at 0.0.7

parent 40b1c697
Loading
Loading
Loading
Loading
+30 −0
Original line number Diff line number Diff line
{
  lib,
  buildGoModule,
  fetchFromGitHub,
}:

buildGoModule rec {
  pname = "gh-i";
  version = "0.0.7";

  src = fetchFromGitHub {
    owner = "gennaro-tedesco";
    repo = "gh-i";
    rev = "v${version}";
    hash = "sha256-nVMWeXssSpfWsD20+qLvQp6Wlrp/DiVNLBR6qnvuD2M=";
  };

  vendorHash = "sha256-TSl+7N3W3BeW8UWxUdTv3cob2P7eLvO+80BLqcbhanQ=";

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