me
/
guix
Archived
1
0
Fork 0

gnu: ocaml-uuidm: Update to 0.9.8.

* gnu/packages/ocaml.scm (ocaml-uuidm): Update to 0.9.8.
(ocaml4.07-uuidm): New variable.
master
Julien Lepiller 2022-05-01 16:54:36 +02:00
parent c34ac580dc
commit 674124b1ed
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 17 additions and 2 deletions

View File

@ -3893,14 +3893,14 @@ tool and piqi-ocaml.")
(define-public ocaml-uuidm (define-public ocaml-uuidm
(package (package
(name "ocaml-uuidm") (name "ocaml-uuidm")
(version "0.9.7") (version "0.9.8")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "http://erratique.ch/software/uuidm/" (uri (string-append "http://erratique.ch/software/uuidm/"
"releases/uuidm-" version ".tbz")) "releases/uuidm-" version ".tbz"))
(sha256 (sha256
(base32 (base32
"1ivxb3hxn9bk62rmixx6px4fvn52s4yr1bpla7rgkcn8981v45r8")))) "1cr6xlzla9fmd587lfhzac0icifspjnqi9f4cdafshj3jn85nrpw"))))
(build-system ocaml-build-system) (build-system ocaml-build-system)
(arguments (arguments
`(#:build-flags `(#:build-flags
@ -3913,6 +3913,7 @@ tool and piqi-ocaml.")
(propagated-inputs (propagated-inputs
`(("cmdliner" ,ocaml-cmdliner) `(("cmdliner" ,ocaml-cmdliner)
("topkg" ,ocaml-topkg))) ("topkg" ,ocaml-topkg)))
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-uuidm))))
(home-page "https://erratique.ch/software/uuidm") (home-page "https://erratique.ch/software/uuidm")
(synopsis "Universally unique identifiers for OCaml") (synopsis "Universally unique identifiers for OCaml")
(description "Uuidm is an OCaml module implementing 128 bits universally (description "Uuidm is an OCaml module implementing 128 bits universally
@ -3920,6 +3921,20 @@ unique identifiers (UUIDs) version 3, 5 (named based with MD5, SHA-1 hashing)
and 4 (random based) according to RFC 4122.") and 4 (random based) according to RFC 4122.")
(license license:isc))) (license license:isc)))
(define-public ocaml4.07-uuidm
(package-with-ocaml4.07
(package
(inherit ocaml-uuidm)
(version "0.9.7")
(source (origin
(method url-fetch)
(uri (string-append "http://erratique.ch/software/uuidm/"
"releases/uuidm-" version ".tbz"))
(sha256
(base32
"1ivxb3hxn9bk62rmixx6px4fvn52s4yr1bpla7rgkcn8981v45r8"))))
(properties '()))))
(define-public ocaml-graph (define-public ocaml-graph
(package (package
(name "ocaml-graph") (name "ocaml-graph")