diff options
Diffstat (limited to 'gnu/packages/education.scm')
-rw-r--r-- | gnu/packages/education.scm | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index f291a5ca39..3046cfb68b 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -230,18 +230,18 @@ of categories with some of the activities available in that category. (base32 "1my67r7x6j7snidnj47v3ndhf3i5sxn0zqj4d8apaw6mbqms96vj")))) (build-system qt-build-system) (arguments - `(#:qtbase ,qtbase - #:phases - (modify-phases %standard-phases - (add-before 'check 'start-xorg-server - (lambda* (#:key inputs #:allow-other-keys) - ;; The test suite requires a running X server. - (system "Xvfb :1 &") - (setenv "DISPLAY" ":1") - ;; The test suite wants to write to /homeless-shelter - (setenv "HOME" (getcwd))))) - #:configure-flags (list "-DQML_BOX2D_MODULE=disabled" - "-DBUILD_TESTING=TRUE"))) + (list #:qtbase qtbase + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'start-xorg-server + (lambda* (#:key inputs #:allow-other-keys) + ;; The test suite requires a running X server. + (system "Xvfb :1 &") + (setenv "DISPLAY" ":1") + ;; The test suite wants to write to /homeless-shelter + (setenv "HOME" (getcwd))))) + #:configure-flags #~(list "-DQML_BOX2D_MODULE=disabled" + "-DBUILD_TESTING=TRUE"))) (native-inputs (list extra-cmake-modules gettext-minimal |