summary refs log tree commit diff
path: root/pkgs/development/libraries/gcab/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/gcab/default.nix')
-rw-r--r--pkgs/development/libraries/gcab/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gcab/default.nix b/pkgs/development/libraries/gcab/default.nix
index 5a8b1f2fcbc..11308a93337 100644
--- a/pkgs/development/libraries/gcab/default.nix
+++ b/pkgs/development/libraries/gcab/default.nix
@@ -1,11 +1,12 @@
 { stdenv, fetchurl, intltool, gobjectIntrospection, pkgconfig }:
 
 stdenv.mkDerivation rec {
-  name = "gcab-0.6";
+  name = "gcab-${version}";
+  version = "0.7";
 
   src = fetchurl {
-    url = "mirror://gnome/sources/gcab/0.6/${name}.tar.xz";
-    sha256 = "a0443b904bfa7227b5155bfcdf9ea9256b6e26930b8febe1c41f972f6f1334bb";
+    url = "mirror://gnome/sources/gcab/${version}/${name}.tar.xz";
+    sha256 = "1vxdsiky3492zlyrym02sdwf09y19rl2z5h5iin7qm0wizw5wvm1";
   };
 
   buildInputs = [ intltool gobjectIntrospection pkgconfig ];