mirage: use pillow instead of pil
This commit is contained in:
parent
a044b590fc
commit
60e2dced1a
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, buildPythonPackage, python, pygtk, pil, libX11, gettext }:
|
{ stdenv, fetchurl, buildPythonPackage, python, pygtk, pillow, libX11, gettext }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
@ -17,7 +17,7 @@ buildPythonPackage rec {
|
|||||||
sed -i "s@/usr/local/share/locale@$out/share/locale@" mirage.py
|
sed -i "s@/usr/local/share/locale@$out/share/locale@" mirage.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
pythonPath = [ pygtk pil ];
|
propagatedBuildInputs = [ pygtk pillow ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Simple image viewer written in PyGTK";
|
description = "Simple image viewer written in PyGTK";
|
||||||
|
@ -12371,7 +12371,10 @@ let
|
|||||||
|
|
||||||
mimms = callPackage ../applications/audio/mimms {};
|
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 {
|
mixxx = callPackage ../applications/audio/mixxx {
|
||||||
inherit (vamp) vampSDK;
|
inherit (vamp) vampSDK;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user