diff options
Diffstat (limited to 'gnu/packages/rdesktop.scm')
-rw-r--r-- | gnu/packages/rdesktop.scm | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/packages/rdesktop.scm b/gnu/packages/rdesktop.scm index 23a950dad3..d5d49edc20 100644 --- a/gnu/packages/rdesktop.scm +++ b/gnu/packages/rdesktop.scm @@ -195,14 +195,18 @@ of parts of the Windows API.") pixman python python-libxml2)) - (native-inputs (list bison - cmocka - flex - gettext-minimal - intltool - nasm - pkg-config - pixman)) + (native-inputs + (append + (list bison + cmocka + flex + gettext-minimal + intltool) + (if (target-x86?) + (list nasm) + '()) + (list pkg-config + pixman))) (arguments (list #:configure-flags #~(list "--enable-strict-locations=yes" "--enable-fuse=yes" |