mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
21 lines
546 B
Nix
21 lines
546 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "di-4.37";
|
|
|
|
src = fetchurl {
|
|
url = "http://gentoo.com/di/${name}.tar.gz";
|
|
sha256 = "1ljamhbpfps5b3n6gsk11znjv2f0cqfy7imda2qmzrlb8dipjs0h";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|