diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2019-12-04 10:44:24 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2019-12-04 10:55:29 +0200 |
commit | 5045821e2acb69eaf17ecb39402538499a92a9e1 (patch) | |
tree | 4aead2a2c6f216f7e4c327f36c1f3e9fbe61d2f7 /gnu/packages/ocaml.scm | |
parent | 0f4f5715a433f94ff406a702e70dbff62ecd8c07 (diff) | |
download | patches-5045821e2acb69eaf17ecb39402538499a92a9e1.tar patches-5045821e2acb69eaf17ecb39402538499a92a9e1.tar.gz |
gnu: ocaml-gen: Don't use unstable tarball.
* gnu/packages/ocaml.scm (ocaml-gen)[source]: Download using git-fetch.
Diffstat (limited to 'gnu/packages/ocaml.scm')
-rw-r--r-- | gnu/packages/ocaml.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index c5f1eff540..2988810fc7 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -1915,11 +1915,14 @@ representation of the data.") (name "ocaml-gen") (version "0.5.2") (source (origin - (method url-fetch) - (uri "https://github.com/c-cube/gen/archive/0.5.2.tar.gz") + (method git-fetch) + (uri (git-reference + (url "https://github.com/c-cube/gen") + (commit version))) + (file-name (git-file-name name version)) (sha256 (base32 - "01hvvynh580zxsaqg12md8m17rda0l33avjv00pij44ql6676il2")))) + "1h9g508rnj2j8va5nvhamzscp954vrkh0hdf4pn3d10pcfyslfg2")))) (build-system dune-build-system) (arguments `(#:tests? #f; no tests |