aboutsummaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm13
1 files changed, 3 insertions, 10 deletions
diff --git a/guix.scm b/guix.scm
index 0bda224..450cb3c 100644
--- a/guix.scm
+++ b/guix.scm
@@ -18,7 +18,7 @@
;;; <http://www.gnu.org/licenses/>.
(use-modules (gnu packages guile)
- (guix build-system guile)
+ (guix build-system gnu)
(guix gexp)
(guix git-download)
((guix licenses) #:prefix license:)
@@ -33,16 +33,9 @@
(source (local-file %source-dir
#:recursive? #t
#:select? (git-predicate %source-dir)))
- (build-system guile-build-system)
+ (build-system gnu-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
- (add-after 'build 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "make" "-j" (number->string
- (parallel-job-count))
- "check")))))))
+ '(#:make-flags '("GUILE_AUTO_COMPILE=0"))) ; to prevent guild warnings
(native-inputs
(list guile-3.0))
(propagated-inputs