gnu: emacs-tuareg: Don't use unstable tarball.

* gnu/packages/ocaml.scm (emacs-tuareg)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
[arguments]: Add ‘make-git-checkout-writable’ phase.
This commit is contained in:
Tobias Geerinckx-Rice 2019-04-09 00:10:06 +02:00
parent 6aade73967
commit f541d86de6
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -779,20 +779,25 @@ (define-public emacs-tuareg
(package
(name "emacs-tuareg")
(version "2.2.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/ocaml/tuareg/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1ynpfc170f9jqx49biji9npfkvfpflbm29xf24wc7fnxxayr49ig"))))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ocaml/tuareg.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "06zxnn85fk5087iq0zxc5l5n9fz8r0367wylmynbfhc9711vccy6"))))
(build-system gnu-build-system)
(native-inputs `(("emacs" ,emacs-minimal)
("opam" ,opam)))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'make-git-checkout-writable
(lambda _
(for-each make-file-writable (find-files "."))
#t))
(delete 'configure)
(add-before 'install 'fix-install-path
(lambda* (#:key outputs #:allow-other-keys)