82f6267023
see 2abac54c03
36 lines
992 B
Nix
36 lines
992 B
Nix
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }:
|
|
let
|
|
pname = "libgee";
|
|
version = "0.20.1";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${gnome3.versionBranch version}/${name}.tar.xz";
|
|
sha256 = "0c26x8gi3ivmhlbqcmiag4jwrkvcy28ld24j55nqr3jikb904a5v";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
patches = [ ./fix_introspection_paths.patch ];
|
|
|
|
nativeBuildInputs = [ pkgconfig autoconf vala gobjectIntrospection ];
|
|
buildInputs = [ glib ];
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "gnome3.${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 = gnome3.maintainers;
|
|
};
|
|
}
|