nixpkgs/pkgs/tools/misc/duf/default.nix

26 lines
657 B
Nix
Raw Normal View History

2020-09-22 07:57:28 +02:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "duf";
2021-04-03 01:18:16 +02:00
version = "0.6.2";
2020-09-22 07:57:28 +02:00
src = fetchFromGitHub {
owner = "muesli";
repo = "duf";
rev = "v${version}";
2021-04-03 01:18:16 +02:00
sha256 = "sha256-aRXm31sGHvHPpqPck5+jplbWT52OzaiQIgU/C7llJs8=";
2020-09-22 07:57:28 +02:00
};
2021-04-03 01:18:16 +02:00
vendorSha256 = "153z0ccd556c0wpnxgyjq7m0c4y2z6fxsqq2p77kly9nr8cpzdb9";
2020-10-13 02:22:05 +02:00
2021-08-26 08:45:51 +02:00
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
2020-09-22 07:57:28 +02:00
meta = with lib; {
homepage = "https://github.com/muesli/duf/";
description = "Disk Usage/Free Utility";
license = licenses.mit;
2020-12-20 18:47:42 +01:00
platforms = platforms.unix;
2021-02-05 12:05:17 +01:00
maintainers = with maintainers; [ petabyteboy penguwin SuperSandro2000 ];
2020-09-22 07:57:28 +02:00
};
}