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

23 lines
585 B
Nix
Raw Normal View History

2014-08-28 05:16:11 -07:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "di";
2020-01-06 00:24:56 -08:00
version = "4.47.3";
2014-08-28 05:16:11 -07:00
src = fetchurl {
2019-10-04 17:32:21 -07:00
url = "https://gentoo.com/${pname}/${pname}-${version}.tar.gz";
2020-01-06 00:24:56 -08:00
sha256 = "0m4npba50sf5s61g5z3xd2r7937zwja941f2h3f081xi24c2hfck";
2014-08-28 05:16:11 -07:00
};
makeFlags = [ "INSTALL_DIR=$(out)" ];
2014-08-28 05:16:11 -07:00
meta = with stdenv.lib; {
description = "Disk information utility; displays everything 'df' does and more";
2019-10-04 17:32:21 -07:00
homepage = https://gentoo.com/di/;
2014-08-28 05:16:11 -07:00
license = licenses.zlib;
2019-10-04 17:32:21 -07:00
updateWalker = true;
2019-12-26 13:28:10 -08:00
maintainers = with maintainers; [ manveru ];
2014-08-28 05:16:11 -07:00
platforms = platforms.all;
};
}