2014-01-10 16:15:21 +01:00
|
|
|
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection }:
|
2014-02-22 17:13:40 +01:00
|
|
|
let
|
|
|
|
ver_maj = "0.12";
|
|
|
|
ver_min = "0";
|
|
|
|
in
|
2014-01-10 16:15:21 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-22 17:13:40 +01:00
|
|
|
name = "libgee-${ver_maj}.${ver_min}";
|
2014-01-10 16:15:21 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-02-22 17:13:40 +01:00
|
|
|
url = "https://download.gnome.org/sources/libgee/${ver_maj}/${name}.tar.xz";
|
|
|
|
sha256 = "19bf94ia1h5z8h0hdhwcd2b2p6ngffirg0dai7pdb98dzriys1ni";
|
2014-01-10 16:15:21 +01:00
|
|
|
};
|
|
|
|
|
2014-02-18 00:33:29 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-01-10 16:15:21 +01:00
|
|
|
patches = [ ./fix_introspection_paths.patch ];
|
|
|
|
|
|
|
|
buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-02-22 17:13:40 +01:00
|
|
|
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
|
|
|
|
license = licenses.lgpl21Plus;
|
2014-01-10 16:15:21 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|