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

22 lines
588 B
Nix
Raw Normal View History

2014-09-18 16:06:49 +00:00
{stdenv, fetchurl, cmake, gettext}:
stdenv.mkDerivation rec {
2015-06-10 11:18:55 +00:00
name = "dfc-3.0.5";
2014-09-18 16:06:49 +00:00
src = fetchurl {
2015-06-10 11:18:55 +00:00
url = "http://projects.gw-computing.net/attachments/download/467/${name}.tar.gz";
sha256 = "0yl5dl1nydinji71zz37c7myg3vg9jzxq89rcjqlfcy5dcfpm51w";
2014-09-18 16:06:49 +00:00
};
buildInputs = [ cmake gettext ];
meta = {
homepage = https://projects.gw-computing.net/projects/dfc;
description = "Displays file system space usage using graphs and colors";
2014-09-18 16:06:49 +00:00
license="free";
maintainers = with stdenv.lib.maintainers; [qknight];
platforms = with stdenv.lib.platforms; all;
};
}