nixpkgs/pkgs/tools/system/di/default.nix
R. RyanTM 0cb3cd5604 di: 4.46 -> 4.47
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/di/versions.
2018-08-17 05:32:31 -07:00

22 lines
560 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "di-${version}";
version = "4.47";
src = fetchurl {
url = "http://gentoo.com/di/${name}.tar.gz";
sha256 = "0zlapxlzjizwzwa8xwrwibhcbkh0wx7n74gvjpp6wlwq7cgiq0xm";
};
makeFlags = [ "INSTALL_DIR=$(out)" ];
meta = with stdenv.lib; {
description = "Disk information utility; displays everything 'df' does and more";
homepage = http://www.gentoo.com/di/;
license = licenses.zlib;
maintainers = with maintainers; [ manveru ndowens ];
platforms = platforms.all;
};
}