From 3434546def3c7fcb5d7bd5d8512751be9aac6f80 Mon Sep 17 00:00:00 2001 From: Ekaitz Zarraga Date: Sat, 25 Nov 2023 19:08:46 +0100 Subject: hare: fix package --- hare.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hare.scm b/hare.scm index 4616b26..77c5f60 100644 --- a/hare.scm +++ b/hare.scm @@ -125,7 +125,7 @@ (synopsis "Bootstrapping compiler for Hare") (description "This package provides @code{harec}, the Hare language's bootstrap written in C. Currently, the self-hosting @code{harec} rewrite is -incomplete, so this is used as the default compiler in the build driver." +incomplete, so this is used as the default compiler in the build driver.") (home-page "https://git.sr.ht/~sircmpwn/harec") (license license:gpl3)))) @@ -152,7 +152,6 @@ incomplete, so this is used as the default compiler in the build driver." #:make-flags #~(list "HARECACHE=./cache" (string-append "PREFIX=" #$output)) #:phases #~(modify-phases %standard-phases - (delete 'configure) (add-before 'configure 'configure-make (lambda _ (substitute* @@ -181,7 +180,9 @@ incomplete, so this is used as the default compiler in the build driver." (("\"qbe\"") (string-append "\"" #$qbe-master "/bin/qbe" "\"")) (("\"harec\"") - (string-append "\"" #$harec "/bin/harec" "\"")))))))) + (string-append "\"" #$harec "/bin/harec" "\""))) + )) + (delete 'configure)))) (synopsis "Hare build driver") (description "Hare is a systems programming language designed to be simple, stable, and robust. Hare uses a static type system, manual memory -- cgit v1.2.3