Unverified Commit 47997634 authored by Milan's avatar Milan Committed by GitHub
Browse files

duf: init at 0.1.0 (#98396)

parent c4cb4c22
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ lib, fetchFromGitHub, buildGoModule }:

buildGoModule rec {
  pname = "duf";
  version = "0.1.0";

  src = fetchFromGitHub {
    owner = "muesli";
    repo = "duf";
    rev = "v${version}";
    sha256 = "1akziaa5wjszflyylvnw284pz1aqngl40civzfabjz94pvyjkp76";
  };

  vendorSha256 = "1aj7rxlylgvxdnnfnfzh20v2jvs8falvjjishxd8rdk1jgfpipl8";

  meta = with lib; {
    homepage = "https://github.com/muesli/duf/";
    description = "Disk Usage/Free Utility";
    license = licenses.mit;
    platforms = platforms.linux;
    maintainers = with maintainers; [ petabyteboy ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1858,6 +1858,8 @@ in
  dua = callPackage ../tools/misc/dua { };
  duf = callPackage ../tools/misc/duf { };
  inherit (ocamlPackages) dune dune_2 dune-release;
  duperemove = callPackage ../tools/filesystems/duperemove { };