mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: ocaml-bitsring: Update to 4.1.0.
* gnu/packages/ocaml.scm (ocaml-bitstring): Update to 4.1.0. (ocaml4.07-bitstring): New variable.
This commit is contained in:
parent
27c701a17b
commit
718700cc95
1 changed files with 26 additions and 7 deletions
|
@ -1845,22 +1845,23 @@ (define-public ocaml-ppx-tools-versioned
|
|||
(define-public ocaml-bitstring
|
||||
(package
|
||||
(name "ocaml-bitstring")
|
||||
(version "3.1.0")
|
||||
(version "4.1.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://bitbucket.org/thanatonauts/bitstring/"
|
||||
"get/v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/xguerin/bitstring")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"15jjk2pq1vx311gl49s5ag6x5y0654x35w75z07g7kr2q334hqps"))))
|
||||
"0mghsl8b2zd2676mh1r9142hymhvzy9cw8kgkjmirxkn56wbf56b"))))
|
||||
(build-system dune-build-system)
|
||||
(native-inputs
|
||||
`(("time" ,time)
|
||||
("autoconf" ,autoconf)
|
||||
("automake" ,automake)))
|
||||
(propagated-inputs
|
||||
`(("ocaml-ppx-tools-versioned" ,ocaml-ppx-tools-versioned)))
|
||||
`(("ocaml-stdlib-shims" ,ocaml-stdlib-shims)))
|
||||
(arguments
|
||||
`(#:package "bitstring"
|
||||
#:tests? #f; Tests fail to build
|
||||
|
@ -1870,6 +1871,7 @@ (define-public ocaml-bitstring
|
|||
(lambda _
|
||||
(invoke "dune" "upgrade")
|
||||
#t)))))
|
||||
(properties `((ocaml4.07-variant . ,(delay ocaml4.07-bitstring))))
|
||||
(home-page "https://github.com/xguerin/bitstring")
|
||||
(synopsis "Bitstrings and bitstring matching for OCaml")
|
||||
(description "Adds Erlang-style bitstrings and matching over bitstrings as
|
||||
|
@ -1878,6 +1880,23 @@ (define-public ocaml-bitstring
|
|||
as primitives to the language, making it exceptionally simple to use and very
|
||||
powerful.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public ocaml4.07-bitstring
|
||||
(package-with-ocaml4.07
|
||||
(package
|
||||
(inherit ocaml-bitstring)
|
||||
(version "3.1.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://bitbucket.org/thanatonauts/bitstring/"
|
||||
"get/v" version ".tar.gz"))
|
||||
(file-name (string-append "ocaml-bitsring-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"15jjk2pq1vx311gl49s5ag6x5y0654x35w75z07g7kr2q334hqps"))))
|
||||
(propagated-inputs
|
||||
`(("ocaml-ppx-tools-versioned" ,ocaml-ppx-tools-versioned)))
|
||||
(properties '()))))
|
||||
|
||||
(define-public ocaml-result
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue