gnu: ocaml-sqlite3: Update to 4.4.1.
* gnu/packages/ocaml.scm (ocaml-sqlite3): Update to 4.4.1. [origin]: Use git-fetch.master
parent
3cf62cd6cb
commit
fbf786bd1d
|
@ -1519,19 +1519,21 @@ library.")
|
||||||
(define-public ocaml-sqlite3
|
(define-public ocaml-sqlite3
|
||||||
(package
|
(package
|
||||||
(name "ocaml-sqlite3")
|
(name "ocaml-sqlite3")
|
||||||
(version "4.1.2")
|
(version "4.4.1")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/mmottl/sqlite3-ocaml/releases/download/v"
|
(url "https://github.com/mmottl/sqlite3-ocaml")
|
||||||
version "/sqlite3-ocaml-" version ".tar.gz"))
|
(commit version)))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"14c1nir7c6bivajg0vyx853y7la7r5d25g1v5hjb2wfi73r15p1m"))))
|
"1536agm5fgcqysszhpd3kmw7lkc5n5ni7gmlyglrbvmnmrwf3av2"))))
|
||||||
(build-system ocaml-build-system)
|
(build-system dune-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("ocamlbuild" ,ocamlbuild)
|
`(("ocaml-base" ,ocaml-base)
|
||||||
|
("ocaml-stdio" ,ocaml-stdio)
|
||||||
("pkg-config" ,pkg-config)))
|
("pkg-config" ,pkg-config)))
|
||||||
(inputs
|
(inputs
|
||||||
`(("sqlite" ,sqlite)))
|
`(("sqlite" ,sqlite)))
|
||||||
|
|
Reference in New Issue