diff options
author | Marius Bakke <mbakke@fastmail.com> | 2017-11-02 22:24:24 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2017-11-02 22:24:24 +0100 |
commit | b4c22f25468cbb0b1644194381b25c795502bc16 (patch) | |
tree | 1f33dfd08b808a8e5c9518c78012b8b80e8d9016 /gnu/packages/image-viewers.scm | |
parent | 5146f22b3b1615ed9d10796a0b1fffdf617138ef (diff) | |
parent | 77576be41f3b94c0f47457d338ddbbc8bf870ba9 (diff) | |
download | patches-b4c22f25468cbb0b1644194381b25c795502bc16.tar patches-b4c22f25468cbb0b1644194381b25c795502bc16.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/image-viewers.scm')
-rw-r--r-- | gnu/packages/image-viewers.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/image-viewers.scm b/gnu/packages/image-viewers.scm index 95fb90fdab..9e93a97a9b 100644 --- a/gnu/packages/image-viewers.scm +++ b/gnu/packages/image-viewers.scm @@ -44,6 +44,7 @@ #:use-module (gnu packages image) #:use-module (gnu packages imagemagick) #:use-module (gnu packages maths) + #:use-module (gnu packages perl) #:use-module (gnu packages photo) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) @@ -66,9 +67,12 @@ (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases (delete 'configure)) - #:tests? #f ;FIXME: Requires 'perl-test-command'. + #:test-target "test" #:make-flags (list "CC=gcc" (string-append "PREFIX=" (assoc-ref %outputs "out"))))) + (native-inputs + `(("perl" ,perl) + ("perl-test-command" ,perl-test-command))) (inputs `(("imlib2" ,imlib2) ("curl" ,curl) ("libpng" ,libpng) |