gh-dash: init at 3.2.0

This commit is contained in:
amesgen 2022-07-27 22:07:40 +02:00 committed by Matthieu Coudron
parent 5d1fdccef1
commit ac27a3cd32
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "gh-dash";
version = "3.2.0";
src = fetchFromGitHub {
owner = "dlvhdr";
repo = "gh-dash";
rev = "v${version}";
sha256 = "sha256-y7PJ8BDTiip6cjKQ3CVIcf3LwlGsEj3DHn3EOtCGa4A=";
};
vendorSha256 = "sha256-Hk/sBUI2XYB+ZHfuGUR3muEzUtVsGR28EkRD1jKg0Ss=";
ldflags = [ "-s" "-w" ];
meta = {
description = "gh extension to display a dashboard with pull requests and issues";
homepage = "https://github.com/dlvhdr/gh-dash";
changelog = "https://github.com/dlvhdr/gh-dash/releases/tag/${src.rev}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ amesgen ];
};
}

View file

@ -1221,6 +1221,8 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) Security;
};
gh-dash = callPackage ../tools/misc/gh-dash { };
gh-eco = callPackage ../tools/misc/gh-eco { };
glooctl = callPackage ../applications/networking/cluster/glooctl { };