mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Merge pull request #4150 from qknight/dfc
dfc-3.0.4: a colored df -h replacement
This commit is contained in:
commit
03b411d968
21
pkgs/tools/system/dfc/default.nix
Normal file
21
pkgs/tools/system/dfc/default.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user