Merge pull request #1770 from lethalman/libgee

libgee: Update to 0.13.90 and enable checks
This commit is contained in:
Domen Kožar 2014-02-18 09:10:06 +01:00
commit 0d56579b81
1 changed files with 4 additions and 2 deletions

View File

@ -1,13 +1,15 @@
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection }:
stdenv.mkDerivation rec {
name = "libgee-0.13.4";
name = "libgee-0.13.90";
src = fetchurl {
url = "https://download.gnome.org/sources/libgee/0.13/${name}.tar.xz";
sha256 = "1gzyx8gy5m6r8km3xbb1kszz0v3p9vsbzwb78pf3fw122gwbjj4k";
sha256 = "9496f8fb249f7850db32b50e8675998db8b5276d4568cbf043faa7e745d7b7d6";
};
doCheck = true;
patches = [ ./fix_introspection_paths.patch ];
buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ];