base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12
[NixPkgs.git] / pkgs / by-name / df / dfc / package.nix
blob0ad1d745b066cdccbdb41920e67c8692273e828b
1 {lib, stdenv, fetchurl, cmake, gettext}:
3 stdenv.mkDerivation rec {
4   pname = "dfc";
5   version = "3.1.1";
7   src = fetchurl {
8     url = "https://projects.gw-computing.net/attachments/download/615/${pname}-${version}.tar.gz";
9     sha256 = "0m1fd7l85ckb7bq4c5c3g257bkjglm8gq7x42pkmpp87fkknc94n";
10   };
12   nativeBuildInputs = [ cmake gettext ];
14   meta = {
15     homepage = "https://projects.gw-computing.net/projects/dfc";
16     description = "Displays file system space usage using graphs and colors";
17     license = lib.licenses.bsd3;
18     maintainers = with lib.maintainers; [qknight];
19     platforms = lib.platforms.all;
20     mainProgram = "dfc";
21   };