forked from mirrors/nixpkgs
libgee-1: init at 0.6.8
This commit is contained in:
parent
4f8e25d2d0
commit
e0c5ee37db
26
pkgs/desktops/gnome-3/3.16/core/libgee/libgee-1.nix
Normal file
26
pkgs/desktops/gnome-3/3.16/core/libgee/libgee-1.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }:
|
||||
let
|
||||
ver_maj = "0.6";
|
||||
ver_min = "8";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libgee-${ver_maj}.${ver_min}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/libgee/${ver_maj}/${name}.tar.xz";
|
||||
sha256 = "1lzmxgz1bcs14ghfp8qqzarhn7s64ayx8c508ihizm3kc5wqs7x6";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
patches = [ ./fix_introspection_paths.patch ];
|
||||
|
||||
buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Utility library providing GObject-based interfaces and classes for commonly used data structures";
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.spacefrogg ] ++ gnome3.maintainers;
|
||||
};
|
||||
}
|
|
@ -176,6 +176,7 @@ let
|
|||
libcroco = callPackage ./core/libcroco {};
|
||||
|
||||
libgee = callPackage ./core/libgee { };
|
||||
libgee_1 = callPackage ./core/libgee/libgee-1.nix { };
|
||||
|
||||
libgdata = callPackage ./core/libgdata { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue