2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoconf, vala, pkg-config, 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";
|
2020-02-12 16:34:11 +00:00
|
|
|
version = "0.20.3";
|
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 {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-02-12 16:34:11 +00:00
|
|
|
sha256 = "1pm525wm11dhwz24m8bpcln9547lmrigl6cxf3qsbg4cr3pyvdfh";
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config 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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2016-09-18 20:35:23 +01:00
|
|
|
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
|
2020-04-01 02:11:51 +01: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;
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
}
|