diff options
author | Julien Lepiller <julien@lepiller.eu> | 2019-09-03 21:24:05 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2019-09-03 23:31:58 +0200 |
commit | 283ed30e1a060df65c386a2ae928a1fe5dffd66f (patch) | |
tree | 43b241a06d30160f1fb82219514c5c94864f4b65 /gnu/packages/ocaml.scm | |
parent | ab68604e5fdbf6e8731cba3049109bd53ba2c440 (diff) | |
download | patches-283ed30e1a060df65c386a2ae928a1fe5dffd66f.tar patches-283ed30e1a060df65c386a2ae928a1fe5dffd66f.tar.gz |
gnu: dune: Update to 1.11.3.
* gnu/packages/ocaml.scm (dune): Update to 1.11.3.
[source]: Use git-fetch.
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 6176a3bfed..f6391ada1b 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1317,14 +1317,16 @@ coverage information.") (define-public dune (package (name "dune") - (version "1.9.3") + (version "1.11.3") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/ocaml/dune/releases/" - "download/" version "/dune-" version ".tbz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/ocaml/dune") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "1jlhnx580v6i1d451z5cl8ibfd0m9qln963y2pp5v6s2winyqyri")))) + "0l4x0x2fz135pljv88zj8y6w1ninsqw0gn1mdxzprd6wbxbyn8wr")))) (build-system ocaml-build-system) (arguments `(#:tests? #f; require odoc |