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

23 lines
536 B
Nix
Raw Normal View History

2014-01-09 13:52:36 +01:00
{ 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 {
2014-01-09 18:31:48 +01:00
url = "mirror://gnome/sources/libpeas/1.9/${name}.tar.xz";
2014-01-09 13:52:36 +01:00
sha256 = "13fzyzv6c0cfdj83z1s16lv8k997wpnzyzr0wfwcfkcmvz64g1q0";
};
preFixup = ''
rm $out/share/icons/hicolor/icon-theme.cache
'';
meta = with stdenv.lib; {
platforms = platforms.linux;
};
}