mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
parent
2b2b8af9f4
commit
0c1197a7fb
@ -1,21 +1,21 @@
|
||||
{stdenv, fetchurl, cmake, gettext}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "dfc-3.0.5";
|
||||
name = "dfc-${version}";
|
||||
version = "3.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://projects.gw-computing.net/attachments/download/467/${name}.tar.gz";
|
||||
sha256 = "0yl5dl1nydinji71zz37c7myg3vg9jzxq89rcjqlfcy5dcfpm51w";
|
||||
url = "https://projects.gw-computing.net/attachments/download/615/${name}.tar.gz";
|
||||
sha256 = "0m1fd7l85ckb7bq4c5c3g257bkjglm8gq7x42pkmpp87fkknc94n";
|
||||
};
|
||||
|
||||
buildInputs = [ cmake gettext ];
|
||||
nativeBuildInputs = [ cmake gettext ];
|
||||
|
||||
meta = {
|
||||
homepage = https://projects.gw-computing.net/projects/dfc;
|
||||
description = "Displays file system space usage using graphs and colors";
|
||||
license="free";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
maintainers = with stdenv.lib.maintainers; [qknight];
|
||||
platforms = with stdenv.lib.platforms; all;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user