gnu: ocaml-bisect: Don't use unstable tarball.
* gnu/packages/ocaml.scm (ocaml-bisect)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
b01339816a
commit
e3c7ac732f
|
@ -1362,14 +1362,15 @@ full_split, cut, rcut, etc..")
|
|||
(package
|
||||
(name "ocaml-bisect")
|
||||
(version "1.3.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/gasche/bisect/archive/"
|
||||
version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/gasche/bisect.git")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0p67fppk5ifb63b00kxwrb1xg75hrqhknng3bsdyw3gxxqyjlpmx"))
|
||||
(base32 "0hm5za61qydda6ri3887b4zqqbqilh42x712xnclm1rr7ggga2nh"))
|
||||
(patches
|
||||
(search-patches
|
||||
"ocaml-bisect-fix-camlp4-in-another-directory.patch"))))
|
||||
|
|
Loading…
Reference in New Issue