mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-22 10:16:45 +01:00
gnu: Add ocaml-fieldslib.
* gnu/packages/ocaml.scm (ocaml-fieldslib): New variable. (ocaml4.07-fieldslib): Inherit from ocaml-fieldslib. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
b9eca10ffc
commit
8a6c39c272
1 changed files with 24 additions and 24 deletions
|
@ -4999,31 +4999,21 @@ (define-public ocaml4.07-ppx-compare
|
|||
"06bq4m1bsm4jlx4g7wh5m99qky7xm4c2g52kaz6pv25hdn5agi2m"))))
|
||||
(properties `((upstream-name . "ppx_compare"))))))
|
||||
|
||||
(define-public ocaml4.07-fieldslib
|
||||
(define-public ocaml-fieldslib
|
||||
(package
|
||||
(name "ocaml4.07-fieldslib")
|
||||
(version "0.11.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://ocaml.janestreet.com/ocaml-core/v"
|
||||
(version-major+minor version) "/files/"
|
||||
"fieldslib-v" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"12948pzxrl360lybm9fzyvplgcl87zjbn4m3sk1aw75zk85p1388"))))
|
||||
(name "ocaml-fieldslib")
|
||||
(version "0.14.0")
|
||||
(source (janestreet-origin
|
||||
"fieldslib" version
|
||||
"10n5y376fb5jgqk9h8vq158rm1b36h9lzh6p11q33h6xgvb1v6n3"))
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
;; No tests
|
||||
`(#:tests? #f
|
||||
#:ocaml ,ocaml-4.07
|
||||
#:findlib ,ocaml4.07-findlib
|
||||
#:dune ,ocaml4.07-dune))
|
||||
(arguments `(#:tests? #f)) ; No tests
|
||||
(propagated-inputs
|
||||
`(("ocaml-base" ,(package-with-ocaml4.07 ocaml-base))
|
||||
("ocaml-migrate-parsetree"
|
||||
,(package-with-ocaml4.07 ocaml-migrate-parsetree))
|
||||
("ocaml-ppxlib" ,(package-with-ocaml4.07 ocaml-ppxlib))))
|
||||
(properties `((upstream-name . "fieldslib")))
|
||||
`(("ocaml-base" ,ocaml-base)
|
||||
("ocaml-migrate-parsetree" ,ocaml-migrate-parsetree)
|
||||
("ocaml-ppxlib" ,ocaml-ppxlib)))
|
||||
(properties `((upstream-name . "fieldslib")
|
||||
(ocaml4.07-variant . ,(delay ocaml4.07-fieldslib))))
|
||||
(home-page "https://github.com/janestreet/fieldslib")
|
||||
(synopsis "Syntax extension to record fields")
|
||||
(description "Syntax extension to define first class values representing
|
||||
|
@ -5031,6 +5021,16 @@ (define-public ocaml4.07-fieldslib
|
|||
of a record and create new record values.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public ocaml4.07-fieldslib
|
||||
(package-with-ocaml4.07
|
||||
(package
|
||||
(inherit ocaml-fieldslib)
|
||||
(version "0.11.0")
|
||||
(source (janestreet-origin
|
||||
"fieldslib" version
|
||||
"12948pzxrl360lybm9fzyvplgcl87zjbn4m3sk1aw75zk85p1388"))
|
||||
(properties `((upstream-name . "fieldslib"))))))
|
||||
|
||||
(define-public ocaml4.07-variantslib
|
||||
(package
|
||||
(name "ocaml4.07-variantslib")
|
||||
|
@ -5077,7 +5077,7 @@ (define-public ocaml4.07-ppx-fields-conv
|
|||
(build-system dune-build-system)
|
||||
(propagated-inputs
|
||||
`(("ocaml-base" ,(package-with-ocaml4.07 ocaml-base))
|
||||
("ocaml-fieldslib" ,ocaml4.07-fieldslib)
|
||||
("ocaml-fieldslib" ,(package-with-ocaml4.07 ocaml-fieldslib))
|
||||
("ocaml-migrate-parsetree"
|
||||
,(package-with-ocaml4.07 ocaml-migrate-parsetree))
|
||||
("ocaml-ppxlib" ,(package-with-ocaml4.07 ocaml-ppxlib))))
|
||||
|
@ -6173,7 +6173,7 @@ (define-public ocaml4.07-core-kernel
|
|||
`(("ocaml-base" ,(package-with-ocaml4.07 ocaml-base))
|
||||
("ocaml-bin-prot" ,ocaml4.07-bin-prot)
|
||||
("ocaml-configurator" ,ocaml4.07-configurator)
|
||||
("ocaml-fieldslib" ,ocaml4.07-fieldslib)
|
||||
("ocaml-fieldslib" ,(package-with-ocaml4.07 ocaml-fieldslib))
|
||||
("ocaml-jane-street-headers" ,ocaml4.07-jane-street-headers)
|
||||
("ocaml-ppx-assert" ,(package-with-ocaml4.07 ocaml-ppx-assert))
|
||||
("ocaml-ppx-base" ,(package-with-ocaml4.07 ocaml-ppx-base))
|
||||
|
|
Loading…
Reference in a new issue