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

22 lines
634 B
Nix
Raw Normal View History

2014-09-18 16:06:49 +00:00
{stdenv, fetchurl, cmake, gettext}:
stdenv.mkDerivation rec {
2018-11-24 19:40:37 +00:00
name = "dfc-${version}";
version = "3.1.1";
2014-09-18 16:06:49 +00:00
src = fetchurl {
2018-11-24 19:40:37 +00:00
url = "https://projects.gw-computing.net/attachments/download/615/${name}.tar.gz";
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 = {
homepage = https://projects.gw-computing.net/projects/dfc;
description = "Displays file system space usage using graphs and colors";
2018-11-24 19:40:37 +00:00
license = stdenv.lib.licenses.bsd3;
2014-09-18 16:06:49 +00:00
maintainers = with stdenv.lib.maintainers; [qknight];
2018-11-24 19:40:37 +00:00
platforms = stdenv.lib.platforms.all;
2014-09-18 16:06:49 +00:00
};
}