2021-01-15 09:19:50 +00:00
|
|
|
{lib, stdenv, fetchurl, cmake, gettext}:
|
2014-09-18 16:06:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "dfc";
|
2018-11-24 19:40:37 +00:00
|
|
|
version = "3.1.1";
|
2014-09-18 16:06:49 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://projects.gw-computing.net/attachments/download/615/${pname}-${version}.tar.gz";
|
2018-11-24 19:40:37 +00:00
|
|
|
sha256 = "0m1fd7l85ckb7bq4c5c3g257bkjglm8gq7x42pkmpp87fkknc94n";
|
2014-09-18 16:06:49 +00:00
|
|
|
};
|
|
|
|
|
2018-11-24 19:40:37 +00:00
|
|
|
nativeBuildInputs = [ cmake gettext ];
|
2014-09-18 16:06:49 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://projects.gw-computing.net/projects/dfc";
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "Displays file system space usage using graphs and colors";
|
2021-01-15 09:19:50 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
maintainers = with lib.maintainers; [qknight];
|
|
|
|
platforms = lib.platforms.all;
|
2014-09-18 16:06:49 +00:00
|
|
|
};
|
|
|
|
}
|