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

22 lines
560 B
Nix
Raw Normal View History

2014-08-28 14:16:11 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-03-01 20:09:43 +01:00
name = "di-${version}";
2017-07-11 21:57:12 +02:00
version = "4.44";
2014-08-28 14:16:11 +02:00
src = fetchurl {
url = "http://gentoo.com/di/${name}.tar.gz";
2017-07-11 21:57:12 +02:00
sha256 = "0803lp8kd3mp1jcm17i019xiqxdy85hhs6xk67zib8gmvg500gcn";
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";
2014-08-28 14:16:11 +02:00
homepage = http://www.gentoo.com/di/;
license = licenses.zlib;
2017-03-01 20:09:43 +01:00
maintainers = with maintainers; [ manveru ndowens ];
2014-08-28 14:16:11 +02:00
platforms = platforms.all;
};
}