mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: owl: Correct package.
This is a follow-up to commit 3566cabecc
which contains a preliminary version of the commit.
* gnu/packages/scheme.scm (owl): Improve some fields.
[native-inputs]: Drop pandoc.
Change-Id: Iba99892b58ffa1c5267e3f7d80912fb1a964e2ed
This commit is contained in:
parent
351fdf69f7
commit
4009d1de95
1 changed files with 10 additions and 13 deletions
|
@ -1289,24 +1289,21 @@ Gerbil code within Emacs.")))
|
|||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:make-flags #~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output))
|
||||
#:make-flags #~`(,(string-append "PREFIX=" #$output))
|
||||
#:phases #~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(delete 'configure) ; no configure script
|
||||
(add-after 'patch-source-shebangs 'patch-ol-shebangs
|
||||
(lambda _
|
||||
(map (lambda (f)
|
||||
(substitute* f
|
||||
(("/usr") #$output)))
|
||||
(list "bin/feather"
|
||||
"tests/hashbang.scm"
|
||||
"tests/theorem-rand.scm")))))
|
||||
(lambda _
|
||||
(substitute* (list "bin/feather"
|
||||
"tests/hashbang.scm"
|
||||
"tests/theorem-rand.scm")
|
||||
(("/usr") #$output))))))
|
||||
#:test-target "test"))
|
||||
(native-inputs
|
||||
(append (if (supported-package? pandoc)
|
||||
(list pandoc)
|
||||
'())
|
||||
(list which)))
|
||||
(home-page "https://haltp.org/owl")
|
||||
(native-inputs (list which))
|
||||
(home-page "https://haltp.org/posts/owl.html")
|
||||
(synopsis "Functional Scheme dialect")
|
||||
(description
|
||||
"Owl Lisp is a simple programming language. It is intended to provide a
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue