summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-02-22 17:13:40 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-02-22 17:13:40 +0100
commit0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b (patch)
treed9bedff4f29286efbc7d17dbd277d1618303f675 /pkgs/desktops/gnome-3
parentfb1028813c948bd017e9bcaba06654b30924fc70 (diff)
downloadnixlib-0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b.tar
nixlib-0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b.tar.gz
nixlib-0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b.tar.bz2
nixlib-0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b.tar.lz
nixlib-0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b.tar.xz
nixlib-0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b.tar.zst
nixlib-0f4942ecbc7d7dcd4fbfaed31dc67936e4ccce2b.zip
gnome3.libgee: downgrade to latest stable, add meta
Tests started to fail, and stable is preferred anyway.
Cf. #1770 discussion.
Diffstat (limited to 'pkgs/desktops/gnome-3')
-rw-r--r--pkgs/desktops/gnome-3/core/libgee/default.nix13
1 files changed, 9 insertions, 4 deletions
diff --git a/pkgs/desktops/gnome-3/core/libgee/default.nix b/pkgs/desktops/gnome-3/core/libgee/default.nix
index 039227786522..c7ed541082d5 100644
--- a/pkgs/desktops/gnome-3/core/libgee/default.nix
+++ b/pkgs/desktops/gnome-3/core/libgee/default.nix
@@ -1,11 +1,14 @@
 { stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection }:
-
+let
+  ver_maj = "0.12";
+  ver_min = "0";
+in
 stdenv.mkDerivation rec {
-  name = "libgee-0.13.90";
+  name = "libgee-${ver_maj}.${ver_min}";
 
   src = fetchurl {
-    url = "https://download.gnome.org/sources/libgee/0.13/${name}.tar.xz";
-    sha256 = "9496f8fb249f7850db32b50e8675998db8b5276d4568cbf043faa7e745d7b7d6";
+    url = "https://download.gnome.org/sources/libgee/${ver_maj}/${name}.tar.xz";
+    sha256 = "19bf94ia1h5z8h0hdhwcd2b2p6ngffirg0dai7pdb98dzriys1ni";
   };
 
   doCheck = true;
@@ -15,6 +18,8 @@ stdenv.mkDerivation rec {
   buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ];
 
   meta = with stdenv.lib; {
+    description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
+    license = licenses.lgpl21Plus;
     platforms = platforms.linux;
   };
 }