depot/third_party/nixpkgs/pkgs/tools/system/di/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

22 lines
586 B
Nix

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "di";
version = "4.48.0.1";
src = fetchurl {
url = "https://gentoo.com/${pname}/${pname}-${version}.tar.gz";
sha256 = "sha256-YFCFRDGeq2h/UXKme/NnnCuFdtw2Vim6Y3SbytaItGc=";
};
makeFlags = [ "INSTALL_DIR=$(out)" ];
meta = with lib; {
description = "Disk information utility; displays everything 'df' does and more";
homepage = "https://gentoo.com/di/";
license = licenses.zlib;
updateWalker = true;
maintainers = with maintainers; [ manveru ];
platforms = platforms.all;
};
}