Merge pull request #4150 from qknight/dfc

dfc-3.0.4: a colored df -h replacement
This commit is contained in:
Joachim Schiele 2014-09-18 18:08:38 +02:00
commit 03b411d968
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{stdenv, fetchurl, cmake, gettext}:
stdenv.mkDerivation rec {
name = "dfc-3.0.4";
src = fetchurl {
url = "http://projects.gw-computing.net/attachments/download/79/dfc-3.0.4.tar.gz";
sha256 = "0bdc2edb92c7f740a0b7d3fa75eb134adf197ba711bfa589ab51c691fabd617e";
};
buildInputs = [ cmake gettext ];
meta = {
homepage = "http://projects.gw-computing.net/projects/dfc";
description = "displays file system space usage using graphs and colors";
license="free";
maintainers = with stdenv.lib.maintainers; [qknight];
platforms = with stdenv.lib.platforms; all;
};
}

View File

@ -914,6 +914,8 @@ let
despotify = callPackage ../development/libraries/despotify { };
dfc = callPackage ../tools/system/dfc { };
dev86 = callPackage ../development/compilers/dev86 { };
dnsmasq = callPackage ../tools/networking/dnsmasq { };