2018-12-02 11:41:15 +00:00
|
|
|
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobject-introspection, gnome3 }:
|
2018-12-25 03:34:57 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
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
|
|
|
|
2018-04-26 21:59:34 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2016-09-18 20:35:23 +01:00
|
|
|
src = fetchurl {
|
2018-12-25 03:34:57 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2018-03-03 00:57:27 +00:00
|
|
|
sha256 = "0c26x8gi3ivmhlbqcmiag4jwrkvcy28ld24j55nqr3jikb904a5v";
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig autoconf vala gobject-introspection ];
|
2017-09-18 22:51:11 +01:00
|
|
|
buildInputs = [ glib ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-04-26 21:59:34 +01:00
|
|
|
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR = "${placeholder "dev"}/share/gir-1.0";
|
|
|
|
PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR = "${placeholder "out"}/lib/girepository-1.0";
|
|
|
|
|
2018-03-03 00:56:17 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = 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;
|
|
|
|
};
|
|
|
|
}
|