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

30 lines
731 B
Nix
Raw Normal View History

2014-03-09 18:45:43 +01:00
{ stdenv, fetchurl, pkgconfig, intltool
, glib, gtk3, gobjectIntrospection, python, pygobject3
}:
2014-01-09 13:52:36 +01:00
stdenv.mkDerivation rec {
name = "libpeas-${version}";
version = "1.9.0";
2014-03-09 18:45:43 +01:00
buildInputs = [
intltool pkgconfig
glib gtk3 gobjectIntrospection python pygobject3
];
2014-01-09 13:52:36 +01:00
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
'';
2014-03-09 18:45:43 +01:00
meta = {
description = "A GObject-based plugins engine";
homepage = "http://ftp.acc.umu.se/pub/GNOME/sources/libpeas/";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.linux;
2014-01-09 13:52:36 +01:00
};
}