gnu: ocaml-stringext: Update to 1.5.0.

* gnu/packages/ocaml.scm (ocaml-stringext): Update to 1.5.0.
[source]: Use git-fetch.
[build-system]: Use dune-build-system.
This commit is contained in:
Julien Lepiller 2019-04-26 22:59:56 +02:00
parent 09cd92a983
commit acb98ad956
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 10 additions and 7 deletions

View File

@ -1246,16 +1246,19 @@ to use -- to sophisticated random generation of test cases.")
(define-public ocaml-stringext
(package
(name "ocaml-stringext")
(version "1.4.3")
(version "1.5.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/rgrinberg/stringext"
"/archive/v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(method git-fetch)
(uri (git-reference
(url "https://github.com/rgrinberg/stringext")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"19g6lfn03iki9f8h91hi0yiqn0b3wkxyq08b3y23wgv6jw6mssfh"))))
(build-system ocaml-build-system)
"0035pyakk0r7pfhkrayvqncpv9mk6lssr455j3prmdcirh6s50d7"))))
(build-system dune-build-system)
(arguments
`(#:test-target "."))
(native-inputs
`(("ocamlbuild" ,ocamlbuild)
("qtest" ,ocaml-qtest)))