From 6ec7d6b4b17f552263bc98a876bee3eefed49da7 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 4 Jan 2022 23:42:10 +0530 Subject: guix.scm: Switch to gnu-build-system. * guix.scm: Do not import (guix build-system guile). Import (guix build-system gnu). (kolam)[build-system]: Switch to gnu-build-system. [arguments]: Delete custom check phase. Add GUILE_AUTO_COMPILE=0 to #:make-flags. --- guix.scm | 13 +++---------- 1 file 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 @@ ;;; . (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 -- cgit v1.2.3