mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
23 lines
593 B
Nix
23 lines
593 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "di";
|
|
version = "4.47.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://gentoo.com/${pname}/${pname}-${version}.tar.gz";
|
|
sha256 = "1g97pp2hznskqlkhl6ppyzgdmv878bcqiwh633kdnm70d1pvh192";
|
|
};
|
|
|
|
makeFlags = [ "INSTALL_DIR=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Disk information utility; displays everything 'df' does and more";
|
|
homepage = https://gentoo.com/di/;
|
|
license = licenses.zlib;
|
|
updateWalker = true;
|
|
maintainers = with maintainers; [ manveru ndowens ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|