mirage: use pillow instead of pil

This commit is contained in:
Frederik Rietdijk 2015-12-08 15:11:00 +01:00
parent a044b590fc
commit 60e2dced1a
2 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, buildPythonPackage, python, pygtk, pil, libX11, gettext }:
{ stdenv, fetchurl, buildPythonPackage, python, pygtk, pillow, libX11, gettext }:
buildPythonPackage rec {
namePrefix = "";
@ -17,7 +17,7 @@ buildPythonPackage rec {
sed -i "s@/usr/local/share/locale@$out/share/locale@" mirage.py
'';
pythonPath = [ pygtk pil ];
propagatedBuildInputs = [ pygtk pillow ];
meta = {
description = "Simple image viewer written in PyGTK";

View File

@ -12371,7 +12371,10 @@ let
mimms = callPackage ../applications/audio/mimms {};
mirage = callPackage ../applications/graphics/mirage {};
mirage = callPackage ../applications/graphics/mirage {
inherit (pythonPackages) pygtk;
inherit (pythonPackages) pillow;
};
mixxx = callPackage ../applications/audio/mixxx {
inherit (vamp) vampSDK;