nixpkgs/pkgs/desktops/gnome-3/core/libgee/default.nix

26 lines
726 B
Nix
Raw Normal View History

2014-01-10 16:15:21 +01:00
{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection }:
let
ver_maj = "0.12";
ver_min = "0";
in
2014-01-10 16:15:21 +01:00
stdenv.mkDerivation rec {
name = "libgee-${ver_maj}.${ver_min}";
2014-01-10 16:15:21 +01:00
src = fetchurl {
url = "https://download.gnome.org/sources/libgee/${ver_maj}/${name}.tar.xz";
sha256 = "19bf94ia1h5z8h0hdhwcd2b2p6ngffirg0dai7pdb98dzriys1ni";
2014-01-10 16:15:21 +01:00
};
doCheck = true;
2014-01-10 16:15:21 +01:00
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;
2014-01-10 16:15:21 +01:00
platforms = platforms.linux;
};
}