diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-09 00:14:27 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-04-11 05:42:37 +0200 |
commit | fd2582bd7f2b92157f8639c36c88c2f3df0c7570 (patch) | |
tree | 8498c9f3d09d742ce81508a3fa1555c25c796450 /gnu | |
parent | f4f3e8ce4d2a63855e081faae2b7d25730d8bd88 (diff) | |
download | patches-fd2582bd7f2b92157f8639c36c88c2f3df0c7570.tar patches-fd2582bd7f2b92157f8639c36c88c2f3df0c7570.tar.gz |
gnu: ocaml-lambda-term: Don't use unstable tarball.
* gnu/packages/ocaml.scm (ocaml-lambda-term)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/ocaml.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm index 42e543fbb0..a409b70049 100644 --- a/gnu/packages/ocaml.scm +++ b/gnu/packages/ocaml.scm @@ -4411,12 +4411,13 @@ connect an engine to your inputs and rendering functions to get an editor.") (version "1.13") (source (origin - (method url-fetch) - (uri (string-append "https://github.com/diml/lambda-term/archive/" - version ".tar.gz")) - (file-name (string-append name "-" version ".tar.gz")) + (method git-fetch) + (uri (git-reference + (url "https://github.com/diml/lambda-term.git") + (commit version))) + (file-name (git-file-name name version)) (sha256 - (base32 "1hy5ryagqclgdm9lzh1qil5mrynlypv7mn6qm858hdcnmz9zzn0l")))) + (base32 "0wwib20b2ir3h2g9zwhzn04cv160psb805skp8v23wqgyn5cnbh8")))) (build-system dune-build-system) (arguments `(#:build-flags (list "--profile" "release") |