diff options
author | Ludovic Courtès <ludo@gnu.org> | 2017-10-22 15:16:56 -0700 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2017-10-22 15:32:19 -0700 |
commit | ed9b09e4f0795079f7c186c22f3a9501ae27291a (patch) | |
tree | a4589c926a8479a63356aa9ff072f94b1a0c8572 /gnu/packages/pdf.scm | |
parent | 3a784700cd554c169d81b3013abb2a451f1e64b1 (diff) | |
download | guix-ed9b09e4f0795079f7c186c22f3a9501ae27291a.tar guix-ed9b09e4f0795079f7c186c22f3a9501ae27291a.tar.gz |
gnu: impressive: Fix Python 2/3 dependency mismatch.
* gnu/packages/pdf.scm (impressive)[inputs]: Depend on PYTHON2-PYGAME.
Diffstat (limited to 'gnu/packages/pdf.scm')
-rw-r--r-- | gnu/packages/pdf.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 6dbba2c7ec..ceaccddfc7 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -7,7 +7,7 @@ ;;; Coypright © 2016 ng0 <ng0@we.make.ritual.n0.is> ;;; Coypright © 2016 Efraim Flashner <efraim@flashner.co.il> ;;; Coypright © 2016, 2017 Marius Bakke <mbakke@fastmail.com> -;;; Coypright © 2016 Ludovic Courtès <ludo@gnu.org> +;;; Coypright © 2016, 2017 Ludovic Courtès <ludo@gnu.org> ;;; Coypright © 2016 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2016 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2017 Leo Famulari <leo@famulari.name> @@ -747,7 +747,7 @@ vector formats.") (build-system python-build-system) ;; TODO: Add dependency on pdftk. - (inputs `(("python-pygame" ,python-pygame) + (inputs `(("python2-pygame" ,python2-pygame) ("python2-pillow" ,python2-pillow) ("sdl" ,sdl) ("xpdf" ,xpdf))) |