mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
22 lines
636 B
Nix
22 lines
636 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;
|
|
};
|
|
}
|