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