libgee: add missing libgee-1.nix file

+26
+26
pkgs/desktops/gnome-3/3.18/core/libgee/libgee-1.nix
···
··· 1 + { stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }: 2 + let 3 + ver_maj = "0.6"; 4 + ver_min = "8"; 5 + in 6 + stdenv.mkDerivation rec { 7 + name = "libgee-${ver_maj}.${ver_min}"; 8 + 9 + src = fetchurl { 10 + url = "mirror://gnome/sources/libgee/${ver_maj}/${name}.tar.xz"; 11 + sha256 = "1lzmxgz1bcs14ghfp8qqzarhn7s64ayx8c508ihizm3kc5wqs7x6"; 12 + }; 13 + 14 + doCheck = true; 15 + 16 + patches = [ ./fix_introspection_paths.patch ]; 17 + 18 + buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ]; 19 + 20 + meta = with stdenv.lib; { 21 + description = "Utility library providing GObject-based interfaces and classes for commonly used data structures"; 22 + license = licenses.lgpl21Plus; 23 + platforms = platforms.linux; 24 + maintainers = [ maintainers.spacefrogg ] ++ gnome3.maintainers; 25 + }; 26 + }