Add gnome3.libpeas
This commit is contained in:
parent
094947ba73
commit
9e486d9f3f
2 changed files with 24 additions and 0 deletions
22
pkgs/desktops/gnome-3/core/libpeas/default.nix
Normal file
22
pkgs/desktops/gnome-3/core/libpeas/default.nix
Normal 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;
|
||||
};
|
||||
|
||||
}
|
|
@ -41,6 +41,8 @@ rec {
|
|||
|
||||
libcroco = callPackage ./core/libcroco {};
|
||||
|
||||
libpeas = callPackage ./core/libpeas {};
|
||||
|
||||
libgweather = callPackage ./core/libgweather { };
|
||||
|
||||
vte = callPackage ./core/vte { };
|
||||
|
|
Loading…
Reference in a new issue