2017-09-18 22:51:11 +01:00
|
|
|
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }:
|
2016-09-18 20:35:23 +01:00
|
|
|
let
|
2018-03-03 00:56:17 +00:00
|
|
|
pname = "libgee";
|
2018-03-03 00:57:27 +00:00
|
|
|
version = "0.20.1";
|
2016-09-18 20:35:23 +01:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 00:56:17 +00:00
|
|
|
name = "${pname}-${version}";
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-03 00:56:17 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
2018-03-03 00:57:27 +00:00
|
|
|
sha256 = "0c26x8gi3ivmhlbqcmiag4jwrkvcy28ld24j55nqr3jikb904a5v";
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2018-03-26 13:03:18 +01:00
|
|
|
patches = [ ./fix_introspection_paths.patch ];
|
|
|
|
|
2017-09-18 22:51:11 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig autoconf vala gobjectIntrospection ];
|
2017-09-18 22:51:11 +01:00
|
|
|
buildInputs = [ glib ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-03-03 00:56:17 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "gnome3.${pname}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
|
2018-03-03 00:57:27 +00:00
|
|
|
homepage = https://wiki.gnome.org/Projects/Libgee;
|
2016-09-18 20:35:23 +01:00
|
|
|
license = licenses.lgpl21Plus;
|
2017-03-16 22:13:42 +00:00
|
|
|
platforms = platforms.unix;
|
2016-09-18 20:35:23 +01:00
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
};
|
|
|
|
}
|