mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 06:31:20 +00:00
Added python2 support to libpeas
This commit is contained in:
parent
f0b34fe8ff
commit
bb3a3a7c0d
@ -1,10 +1,15 @@
|
||||
{ stdenv, fetchurl, pkgconfig, gnome3, intltool, gobjectIntrospection }:
|
||||
{ stdenv, fetchurl, pkgconfig, intltool
|
||||
, glib, gtk3, gobjectIntrospection, python, pygobject3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libpeas-${version}";
|
||||
version = "1.9.0";
|
||||
|
||||
buildInputs = with gnome3; [ intltool pkgconfig glib gobjectIntrospection gtk3 ];
|
||||
buildInputs = [
|
||||
intltool pkgconfig
|
||||
glib gtk3 gobjectIntrospection python pygobject3
|
||||
];
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/libpeas/1.9/${name}.tar.xz";
|
||||
@ -15,8 +20,10 @@ stdenv.mkDerivation rec {
|
||||
rm $out/share/icons/hicolor/icon-theme.cache
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
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;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user