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

21 lines
546 B
Nix
Raw Normal View History

2014-08-28 12:16:11 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-04-12 15:05:29 +00:00
name = "di-4.37";
2014-08-28 12:16:11 +00:00
src = fetchurl {
url = "http://gentoo.com/di/${name}.tar.gz";
2016-04-12 15:05:29 +00:00
sha256 = "1ljamhbpfps5b3n6gsk11znjv2f0cqfy7imda2qmzrlb8dipjs0h";
2014-08-28 12:16:11 +00:00
};
makeFlags = "INSTALL_DIR=$(out)";
meta = with stdenv.lib; {
description = "A disk information utility, displaying everything (and more) that your 'df' command does";
homepage = http://www.gentoo.com/di/;
license = licenses.zlib;
maintainers = with maintainers; [ manveru ];
platforms = platforms.all;
};
}