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

26 lines
673 B
Nix
Raw Normal View History

2020-09-22 06:57:28 +01:00
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "duf";
2021-02-05 11:05:17 +00:00
version = "0.6.0";
2020-09-22 06:57:28 +01:00
src = fetchFromGitHub {
owner = "muesli";
repo = "duf";
rev = "v${version}";
2021-02-05 11:05:17 +00:00
sha256 = "sha256-Wm3gfir6blQFLLi+2bT5Y/5tf7qUxEddJQ7tCYfBGgM=";
2020-09-22 06:57:28 +01:00
};
2021-02-05 11:05:17 +00:00
vendorSha256 = "0icxy6wbqjqawr6i5skwp1z37fq303p8f95crd8lwn6pjjiqzk4i";
2020-10-13 01:22:05 +01:00
2021-02-05 11:05:17 +00:00
buildFlagsArray = [ "-ldflags=" "-s -w -X=main.Version=${version}" ];
2020-09-22 06:57:28 +01:00
meta = with lib; {
homepage = "https://github.com/muesli/duf/";
description = "Disk Usage/Free Utility";
license = licenses.mit;
2020-12-20 17:47:42 +00:00
platforms = platforms.unix;
2021-02-05 11:05:17 +00:00
maintainers = with maintainers; [ petabyteboy penguwin SuperSandro2000 ];
2020-09-22 06:57:28 +01:00
};
}