From 0b5f4b3d443ebd3ff8d92f3728ae1f5c54c279d1 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Thu, 7 Jul 2016 13:50:02 +0200 Subject: [PATCH] libpeas: build with python support --- pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix index 8d40d977a80..1ba143539d4 100644 --- a/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix @@ -1,14 +1,13 @@ { stdenv, fetchurl, pkgconfig, intltool, gnome3 -, glib, gtk3, gobjectIntrospection, python, pygobject3 +, glib, gtk3, gobjectIntrospection, python3Packages, ncurses }: stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - buildInputs = [ - intltool pkgconfig glib gtk3 gobjectIntrospection python pygobject3 - gnome3.defaultIconTheme - ]; + configureFlags = [ "--enable-python3" ]; + + buildInputs = [ intltool pkgconfig glib gtk3 gnome3.defaultIconTheme ncurses python3Packages.python python3Packages.pygobject3 gobjectIntrospection ]; meta = with stdenv.lib; { description = "A GObject-based plugins engine";