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

26 lines
673 B
Nix
Raw Normal View History

2020-09-22 07:57:28 +02:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "duf";
2021-02-05 12:05:17 +01:00
version = "0.6.0";
2020-09-22 07:57:28 +02:00
src = fetchFromGitHub {
owner = "muesli";
repo = "duf";
rev = "v${version}";
2021-02-05 12:05:17 +01:00
sha256 = "sha256-Wm3gfir6blQFLLi+2bT5Y/5tf7qUxEddJQ7tCYfBGgM=";
2020-09-22 07:57:28 +02:00
};
2021-02-05 12:05:17 +01:00
vendorSha256 = "0icxy6wbqjqawr6i5skwp1z37fq303p8f95crd8lwn6pjjiqzk4i";
2020-10-13 02:22:05 +02:00
2021-02-05 12:05:17 +01:00
buildFlagsArray = [ "-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
};
}