about summary refs log tree commit diff
path: root/pkgs/tools/system/dfc
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2018-11-24 20:40:37 +0100
committerGitHub <noreply@github.com>2018-11-24 20:40:37 +0100
commit0c1197a7fb194dd91ac27f7c052a40df9248749d (patch)
treeaa8d115c755ae82baa424951d5f1e1b413765090 /pkgs/tools/system/dfc
parent2b2b8af9f4d6f179f7c82b978035885696762ed9 (diff)
downloadnixlib-0c1197a7fb194dd91ac27f7c052a40df9248749d.tar
nixlib-0c1197a7fb194dd91ac27f7c052a40df9248749d.tar.gz
nixlib-0c1197a7fb194dd91ac27f7c052a40df9248749d.tar.bz2
nixlib-0c1197a7fb194dd91ac27f7c052a40df9248749d.tar.lz
nixlib-0c1197a7fb194dd91ac27f7c052a40df9248749d.tar.xz
nixlib-0c1197a7fb194dd91ac27f7c052a40df9248749d.tar.zst
nixlib-0c1197a7fb194dd91ac27f7c052a40df9248749d.zip
dfc: 3.0.5 -> 3.1.1
 (#50991)
Diffstat (limited to 'pkgs/tools/system/dfc')
-rw-r--r--pkgs/tools/system/dfc/default.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/pkgs/tools/system/dfc/default.nix b/pkgs/tools/system/dfc/default.nix
index 4b6ead9667d0..9a255c1b0ea6 100644
--- a/pkgs/tools/system/dfc/default.nix
+++ b/pkgs/tools/system/dfc/default.nix
@@ -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;
   };
 }
-