nixpkgs/pkgs/tools/system/di/default.nix

23 lines
593 B
Nix
Raw Normal View History

2014-08-28 14:16:11 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "di";
2019-11-01 21:35:07 +01:00
version = "4.47.2";
2014-08-28 14:16:11 +02:00
src = fetchurl {
2019-10-05 02:32:21 +02:00
url = "https://gentoo.com/${pname}/${pname}-${version}.tar.gz";
2019-11-01 21:35:07 +01:00
sha256 = "1g97pp2hznskqlkhl6ppyzgdmv878bcqiwh633kdnm70d1pvh192";
2014-08-28 14:16:11 +02:00
};
makeFlags = [ "INSTALL_DIR=$(out)" ];
2014-08-28 14:16:11 +02:00
meta = with stdenv.lib; {
description = "Disk information utility; displays everything 'df' does and more";
2019-10-05 02:32:21 +02:00
homepage = https://gentoo.com/di/;
2014-08-28 14:16:11 +02:00
license = licenses.zlib;
2019-10-05 02:32:21 +02:00
updateWalker = true;
2017-03-01 20:09:43 +01:00
maintainers = with maintainers; [ manveru ndowens ];
2014-08-28 14:16:11 +02:00
platforms = platforms.all;
};
}