depot/third_party/nixpkgs/pkgs/tools/system/dfc/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
638 B
Nix

{stdenv, fetchurl, cmake, gettext}:
stdenv.mkDerivation rec {
pname = "dfc";
version = "3.1.1";
src = fetchurl {
url = "https://projects.gw-computing.net/attachments/download/615/${pname}-${version}.tar.gz";
sha256 = "0m1fd7l85ckb7bq4c5c3g257bkjglm8gq7x42pkmpp87fkknc94n";
};
nativeBuildInputs = [ cmake gettext ];
meta = {
homepage = "https://projects.gw-computing.net/projects/dfc";
description = "Displays file system space usage using graphs and colors";
license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [qknight];
platforms = stdenv.lib.platforms.all;
};
}