nixpkgs/pkgs/tools/system/di/default.nix
R. RyanTM 467ce7b534 di: 4.47 -> 4.47.1
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
2019-07-03 09:14:17 +02:00

22 lines
562 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "di-${version}";
version = "4.47.1";
src = fetchurl {
url = "http://gentoo.com/di/${name}.tar.gz";
sha256 = "1bdbl9k3gqf4h6g21difqc0w17pjid6r587y19wi37vx36aava7f";
};
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;
};
}