diff options
Diffstat (limited to 'gnu/packages/xnee.scm')
-rw-r--r-- | gnu/packages/xnee.scm | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/gnu/packages/xnee.scm b/gnu/packages/xnee.scm index 5cd20cbef1..26c33c754f 100644 --- a/gnu/packages/xnee.scm +++ b/gnu/packages/xnee.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2021 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> ;;; ;;; This file is part of GNU Guix. @@ -38,15 +38,17 @@ (base32 "04n2lac0vgpv8zsn7nmb50hf3qb56pmj90dmwnivg09gyrf1x92j")))) (build-system gnu-build-system) + (arguments + '(#:configure-flags '("CFLAGS=-O2 -g -fcommon"))) (inputs - `(("gtk+" ,gtk+-2) - ("libx11" ,libx11) - ("libxext" ,libxext) - ("libxi" ,libxi) - ("libxtst" ,libxtst) - ("xorgproto" ,xorgproto))) + (list gtk+-2 + libx11 + libxext + libxi + libxtst + xorgproto)) (native-inputs - `(("pkg-config" ,pkg-config))) + (list pkg-config)) (home-page "https://www.gnu.org/software/xnee/") (synopsis "Record, replay and distribute user actions under X11") (description |