gnu: camlp5: Update to 8.00.02.
* gnu/packages/ocaml.scm (camlp5): Update to 8.00.02.
This commit is contained in:
parent
2317a5e17f
commit
0770201a20
1 changed files with 7 additions and 5 deletions
|
@ -882,19 +882,17 @@ Git-friendly development workflow.")
|
||||||
(define-public camlp5
|
(define-public camlp5
|
||||||
(package
|
(package
|
||||||
(name "camlp5")
|
(name "camlp5")
|
||||||
(version "7.13")
|
(version "8.00.02")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/camlp5/camlp5")
|
(url "https://github.com/camlp5/camlp5")
|
||||||
(commit (string-append "rel" (string-delete #\. version)))))
|
(commit (string-append "rel" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1d9spy3f5ahixm8nxxk086kpslzva669a5scn49am0s7vx4i71kp"))))
|
(base32 "03qm99h2380x0y69sppg10yz1mwx7smkscia7pa175wmilifx8vy"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
|
||||||
(list ocaml))
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; XXX TODO figure out how to run the tests
|
`(#:tests? #f ; XXX TODO figure out how to run the tests
|
||||||
#:phases
|
#:phases
|
||||||
|
@ -924,6 +922,10 @@ Git-friendly development workflow.")
|
||||||
(install-file "etc/META" (string-append (assoc-ref outputs "out")
|
(install-file "etc/META" (string-append (assoc-ref outputs "out")
|
||||||
"/lib/ocaml/camlp5/"))
|
"/lib/ocaml/camlp5/"))
|
||||||
#t)))))
|
#t)))))
|
||||||
|
(inputs
|
||||||
|
(list ocaml))
|
||||||
|
(native-inputs
|
||||||
|
(list perl))
|
||||||
(home-page "https://camlp5.github.io/")
|
(home-page "https://camlp5.github.io/")
|
||||||
(synopsis "Pre-processor Pretty Printer for OCaml")
|
(synopsis "Pre-processor Pretty Printer for OCaml")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue