diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-11-25 19:08:46 +0100 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2023-11-25 19:08:46 +0100 |
commit | 3434546def3c7fcb5d7bd5d8512751be9aac6f80 (patch) | |
tree | a0ffc4de8fd6055318716b33f043dbc913a52d63 | |
parent | 43e5d9c7ba0cbbbddf1b2e89117c3d0b4d5ac525 (diff) |
hare: fix package
-rw-r--r-- | hare.scm | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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 |