mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: coq-equations: Update style.
* gnu/packages/coq.scm (coq-equations)[arguments]: Use G-expression. Change-Id: Ib34ec1d543775f96777dfe31990b6526f589bee6
This commit is contained in:
parent
1a814b79ae
commit
86690427b6
1 changed files with 12 additions and 12 deletions
|
@ -582,18 +582,18 @@ (define-public coq-equations
|
|||
(native-inputs
|
||||
(list ocaml coq camlp5))
|
||||
(arguments
|
||||
`(#:test-target "test-suite"
|
||||
#:make-flags (list (string-append "COQLIBINSTALL="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/coq/user-contrib")
|
||||
(string-append "COQPLUGININSTALL="
|
||||
(assoc-ref %outputs "out")
|
||||
"/lib/ocaml/site-lib/"))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(invoke "sh" "./configure.sh"))))))
|
||||
(list #:test-target "test-suite"
|
||||
#:make-flags #~(list (string-append "COQLIBINSTALL="
|
||||
#$output
|
||||
"/lib/coq/user-contrib")
|
||||
(string-append "COQPLUGININSTALL="
|
||||
#$output
|
||||
"/lib/ocaml/site-lib/"))
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'configure
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(invoke "sh" "./configure.sh"))))))
|
||||
(home-page "https://mattam82.github.io/Coq-Equations/")
|
||||
(synopsis "Function definition plugin for Coq")
|
||||
(description "Equations provides a notation for writing programs
|
||||
|
|
Loading…
Reference in a new issue