36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
|
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobject-introspection, gnome3 }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "libgee";
|
||
|
version = "0.20.3";
|
||
|
|
||
|
outputs = [ "out" "dev" ];
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||
|
sha256 = "1pm525wm11dhwz24m8bpcln9547lmrigl6cxf3qsbg4cr3pyvdfh";
|
||
|
};
|
||
|
|
||
|
doCheck = true;
|
||
|
|
||
|
nativeBuildInputs = [ pkgconfig autoconf vala gobject-introspection ];
|
||
|
buildInputs = [ glib ];
|
||
|
|
||
|
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";
|
||
|
|
||
|
passthru = {
|
||
|
updateScript = gnome3.updateScript {
|
||
|
packageName = pname;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
|
||
|
homepage = "https://wiki.gnome.org/Projects/Libgee";
|
||
|
license = licenses.lgpl21Plus;
|
||
|
platforms = platforms.unix;
|
||
|
maintainers = teams.gnome.members;
|
||
|
};
|
||
|
}
|