duf: 0.3.1 -> 0.4.0

This commit is contained in:
Nicolas Martin 2020-10-13 02:22:05 +02:00
parent 166bbe963b
commit 16ef162b13
No known key found for this signature in database
GPG Key ID: 7B4E6623E5DCCC09
1 changed files with 8 additions and 4 deletions

View File

@ -2,22 +2,26 @@
buildGoModule rec { buildGoModule rec {
pname = "duf"; pname = "duf";
version = "0.3.1"; version = "0.4.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "muesli"; owner = "muesli";
repo = "duf"; repo = "duf";
rev = "v${version}"; rev = "v${version}";
sha256 = "1y27cc818099drccqg57nq4kcgl2zmg6akxv2k1c8rkz932q718f"; sha256 = "093kir1zwpkl0jic4p1f032ir5k7kra94di2indzn0fa4j4r7a0i";
}; };
vendorSha256 = "1jmj46yami37r2wmiprpwyljcmj7dir9mcccx5is1jbiai6sx79i"; dontStrip = true;
vendorSha256 = "1jqilfsirj7bkhzywimzf98w2b4s777phb06nsw6lr3bi6nnwzr1";
buildFlagsArray = [ "-ldflags=" "-X=main.Version=${version}" ];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/muesli/duf/"; homepage = "https://github.com/muesli/duf/";
description = "Disk Usage/Free Utility"; description = "Disk Usage/Free Utility";
license = licenses.mit; license = licenses.mit;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ petabyteboy ]; maintainers = with maintainers; [ petabyteboy penguwin ];
}; };
} }