dfc: 3.0.5 -> 3.1.1

(#50991)
This commit is contained in:
Renaud 2018-11-24 20:40:37 +01:00 committed by GitHub
parent 2b2b8af9f4
commit 0c1197a7fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}