libpeas: build with python support

This commit is contained in:
Damien Cassou 2016-07-07 13:50:02 +02:00
parent b090d58742
commit 0b5f4b3d44

View File

@ -1,14 +1,13 @@
{ stdenv, fetchurl, pkgconfig, intltool, gnome3 { stdenv, fetchurl, pkgconfig, intltool, gnome3
, glib, gtk3, gobjectIntrospection, python, pygobject3 , glib, gtk3, gobjectIntrospection, python3Packages, ncurses
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
inherit (import ./src.nix fetchurl) name src; inherit (import ./src.nix fetchurl) name src;
buildInputs = [ configureFlags = [ "--enable-python3" ];
intltool pkgconfig glib gtk3 gobjectIntrospection python pygobject3
gnome3.defaultIconTheme buildInputs = [ intltool pkgconfig glib gtk3 gnome3.defaultIconTheme ncurses python3Packages.python python3Packages.pygobject3 gobjectIntrospection ];
];
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A GObject-based plugins engine"; description = "A GObject-based plugins engine";