Add gnome3.libpeas

This commit is contained in:
Domen Kožar 2014-01-09 13:52:36 +01:00
parent 094947ba73
commit 9e486d9f3f
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, gobjectIntrospection }:
stdenv.mkDerivation rec {
name = "libpeas-${version}";
version = "1.9.0";
buildInputs = with gnome3; [ intltool pkgconfig glib gobjectIntrospection gtk3 ];
src = fetchurl {
url = "mirror://gnome/sources/eog/1.9/${name}.tar.xz";
sha256 = "13fzyzv6c0cfdj83z1s16lv8k997wpnzyzr0wfwcfkcmvz64g1q0";
};
preFixup = ''
rm $out/share/icons/hicolor/icon-theme.cache
'';
meta = with stdenv.lib; {
platforms = platforms.linux;
};
}

View file

@ -41,6 +41,8 @@ rec {
libcroco = callPackage ./core/libcroco {};
libpeas = callPackage ./core/libpeas {};
libgweather = callPackage ./core/libgweather { };
vte = callPackage ./core/vte { };