mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: coq-bignums: Update style.
* gnu/packages/coq.scm (coq-bignums)[arguments]: Use G-expression. Change-Id: Ib34ec1d543775f96777dfe31990b6526f589bee6
This commit is contained in:
parent
cd9ad4efe8
commit
7bd8e290b5
1 changed files with 12 additions and 11 deletions
|
@ -10,6 +10,7 @@
|
||||||
;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
|
;;; Copyright © 2021 Simon Tournier <zimon.toutoune@gmail.com>
|
||||||
;;; Copyright © 2022 Garek Dyszel <garekdyszel@disroot.org>
|
;;; Copyright © 2022 Garek Dyszel <garekdyszel@disroot.org>
|
||||||
;;; Copyright © 2024 Foundation Devices, Inc. <hello@foundation.xyz>
|
;;; Copyright © 2024 Foundation Devices, Inc. <hello@foundation.xyz>
|
||||||
|
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -449,8 +450,8 @@ theorems between the two libraries.")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/coq/bignums")
|
(url "https://github.com/coq/bignums")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
@ -461,15 +462,15 @@ theorems between the two libraries.")
|
||||||
(inputs
|
(inputs
|
||||||
(list camlp5))
|
(list camlp5))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; No test target.
|
(list #:tests? #f ; No test target.
|
||||||
#:make-flags
|
#:make-flags
|
||||||
(list (string-append "COQLIBINSTALL=" (assoc-ref %outputs "out")
|
#~(list (string-append "COQLIBINSTALL=" #$output
|
||||||
"/lib/coq/user-contrib")
|
"/lib/coq/user-contrib")
|
||||||
(string-append "COQPLUGININSTALL=" (assoc-ref %outputs "out")
|
(string-append "COQPLUGININSTALL=" #$output
|
||||||
"/lib/ocaml/site-lib/"))
|
"/lib/ocaml/site-lib/"))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(home-page "https://github.com/coq/bignums")
|
(home-page "https://github.com/coq/bignums")
|
||||||
(synopsis "Coq library for arbitrary large numbers")
|
(synopsis "Coq library for arbitrary large numbers")
|
||||||
(description "Bignums is a coq library of arbitrary large numbers. It
|
(description "Bignums is a coq library of arbitrary large numbers. It
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue