gh-dash: 4.16.2 -> 4.17.0

This commit is contained in:
amesgen
2025-10-05 17:41:39 +02:00
parent 2ce7840140
commit 8d4e97cd35
+8 -3
View File
@@ -8,16 +8,16 @@
buildGoModule rec {
pname = "gh-dash";
version = "4.16.2";
version = "4.17.0";
src = fetchFromGitHub {
owner = "dlvhdr";
repo = "gh-dash";
rev = "v${version}";
hash = "sha256-LMKY7UpJtCrlMaui+fllc6mwVYQyVkuIM8bb6fop1Bc=";
hash = "sha256-uQc5s5CLR5uKieD1+YMzahKNBqsddLwX+CTThzWPnwY=";
};
vendorHash = "sha256-AeDGtEh+8sAczm0hBebvMdK/vTDzQsSXcB0xIYcQd8o=";
vendorHash = "sha256-IsEz6hA8jnWP+2ELkZ6V5Y0/rpTz1tAzaYJvzgPQQCo=";
ldflags = [
"-s"
@@ -25,6 +25,11 @@ buildGoModule rec {
"-X github.com/dlvhdr/gh-dash/v4/cmd.Version=${version}"
];
checkFlags = [
# requires network
"-skip=TestFullOutput"
];
passthru.tests = {
version = testers.testVersion { package = gh-dash; };
};