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

23 lines
586 B
Nix
Raw Normal View History

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