gdu: add changelog to meta

This commit is contained in:
Fabian Affolter 2023-01-07 23:35:14 +01:00
parent ecaed7ca40
commit 521239525f

View File

@ -14,13 +14,15 @@ buildGoModule rec {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "dundee"; owner = "dundee";
repo = pname; repo = pname;
rev = "v${version}"; rev = "refs/tags/v${version}";
sha256 = "sha256-7zVYki4sA5jsnxWye0ouUwAOwKUBf/TiZDqFuXTm45w="; hash = "sha256-7zVYki4sA5jsnxWye0ouUwAOwKUBf/TiZDqFuXTm45w=";
}; };
vendorSha256 = "sha256-UP6IdJLc93gRP4vwKKOJl3sNt4sOFeYXjvwk8QM+D48="; vendorHash = "sha256-UP6IdJLc93gRP4vwKKOJl3sNt4sOFeYXjvwk8QM+D48=";
nativeBuildInputs = [ installShellFiles ]; nativeBuildInputs = [
installShellFiles
];
ldflags = [ ldflags = [
"-s" "-s"
@ -50,7 +52,8 @@ buildGoModule rec {
the performance gain is not so huge. the performance gain is not so huge.
''; '';
homepage = "https://github.com/dundee/gdu"; homepage = "https://github.com/dundee/gdu";
changelog = "https://github.com/dundee/gdu/releases/tag/v${version}";
license = with licenses; [ mit ]; license = with licenses; [ mit ];
maintainers = [ maintainers.fab maintainers.zowoq ]; maintainers = with maintainers; [ fab zowoq ];
}; };
} }