2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2014-08-28 05:16:11 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "di";
|
2020-06-15 12:50:38 -07:00
|
|
|
version = "4.48";
|
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-06-15 12:50:38 -07:00
|
|
|
sha256 = "0crvvfsxh8ryc0j19a2x52i9zacvggm8zi6j3kzygkcwnpz4km8r";
|
2014-08-28 05:16:11 -07:00
|
|
|
};
|
|
|
|
|
2016-07-04 13:39:58 -07:00
|
|
|
makeFlags = [ "INSTALL_DIR=$(out)" ];
|
2014-08-28 05:16:11 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2016-07-04 13:39:58 -07:00
|
|
|
description = "Disk information utility; displays everything 'df' does and more";
|
2020-03-31 18:11:51 -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;
|
|
|
|
};
|
|
|
|
}
|