2013-01-23 21:16:22 +01:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2013 Cyril Roelandt <tipecaml@gmail.com>
|
2015-06-03 04:49:10 +02:00
|
|
|
;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
|
2015-08-23 18:11:16 +02:00
|
|
|
;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
|
2015-11-08 20:51:46 +01:00
|
|
|
;;; Copyright © 2015 David Hashe <david.hashe@dhashe.com>
|
2015-12-19 02:29:22 +01:00
|
|
|
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
|
2016-02-11 18:53:07 +01:00
|
|
|
;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
|
2013-01-23 21:16:22 +01:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages ocaml)
|
2015-06-03 04:49:10 +02:00
|
|
|
#:use-module ((guix licenses) #:hide (zlib))
|
2013-01-23 21:16:22 +01:00
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix download)
|
2015-12-19 02:29:22 +01:00
|
|
|
#:use-module (guix svn-download)
|
2015-06-03 04:49:10 +02:00
|
|
|
#:use-module (guix utils)
|
2013-01-23 21:16:22 +01:00
|
|
|
#:use-module (guix build-system gnu)
|
|
|
|
#:use-module (gnu packages)
|
2015-06-17 09:13:04 +02:00
|
|
|
#:use-module (gnu packages gcc)
|
2015-08-23 19:56:22 +02:00
|
|
|
#:use-module (gnu packages gnome)
|
|
|
|
#:use-module (gnu packages gtk)
|
2015-06-08 11:05:23 +02:00
|
|
|
#:use-module (gnu packages base)
|
|
|
|
#:use-module (gnu packages emacs)
|
|
|
|
#:use-module (gnu packages texinfo)
|
2015-06-03 04:49:10 +02:00
|
|
|
#:use-module (gnu packages pkg-config)
|
|
|
|
#:use-module (gnu packages compression)
|
|
|
|
#:use-module (gnu packages xorg)
|
2016-05-24 21:18:53 +02:00
|
|
|
#:use-module (gnu packages tex)
|
2015-12-19 02:29:22 +01:00
|
|
|
#:use-module (gnu packages ghostscript)
|
|
|
|
#:use-module (gnu packages lynx)
|
2014-09-15 15:05:52 +02:00
|
|
|
#:use-module (gnu packages perl)
|
|
|
|
#:use-module (gnu packages python)
|
2016-02-11 18:53:07 +01:00
|
|
|
#:use-module (gnu packages m4)
|
2014-09-15 15:05:52 +02:00
|
|
|
#:use-module (gnu packages ncurses)
|
|
|
|
#:use-module (gnu packages version-control)
|
|
|
|
#:use-module (gnu packages curl))
|
2013-01-23 21:16:22 +01:00
|
|
|
|
|
|
|
(define-public ocaml
|
|
|
|
(package
|
|
|
|
(name "ocaml")
|
2015-08-23 16:30:52 +02:00
|
|
|
(version "4.02.3")
|
2013-01-23 21:16:22 +01:00
|
|
|
(source (origin
|
2015-06-03 04:49:10 +02:00
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://caml.inria.fr/pub/distrib/ocaml-"
|
|
|
|
(version-major+minor version)
|
|
|
|
"/ocaml-" version ".tar.xz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-04-30 02:55:19 +02:00
|
|
|
"1qwwvy8nzd87hk8rd9sm667nppakiapnx4ypdwcrlnav2dz6kil3"))
|
|
|
|
(patches (search-patches "ocaml-CVE-2015-8869.patch"))))
|
2013-01-23 21:16:22 +01:00
|
|
|
(build-system gnu-build-system)
|
2016-02-13 08:42:34 +01:00
|
|
|
(native-search-paths
|
|
|
|
(list (search-path-specification
|
|
|
|
(variable "OCAMLPATH")
|
|
|
|
(files (list (string-append "lib/ocaml"))))))
|
2015-06-03 04:49:10 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("perl" ,perl)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
(inputs
|
|
|
|
`(("libx11" ,libx11)
|
2015-06-17 09:13:04 +02:00
|
|
|
;; For libiberty, needed for objdump support.
|
2015-06-18 07:33:57 +02:00
|
|
|
("gcc:lib" ,(canonical-package gcc-4.9) "lib")
|
2015-06-17 09:13:04 +02:00
|
|
|
("zlib" ,zlib))) ;also needed for objdump support
|
2013-01-23 21:16:22 +01:00
|
|
|
(arguments
|
2015-06-03 04:49:10 +02:00
|
|
|
`(#:modules ((guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(web server))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'patch-/bin/sh-references
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
(let* ((sh (string-append (assoc-ref inputs "bash")
|
|
|
|
"/bin/sh"))
|
|
|
|
(quoted-sh (string-append "\"" sh "\"")))
|
|
|
|
(with-fluids ((%default-port-encoding #f))
|
|
|
|
(for-each (lambda (file)
|
|
|
|
(substitute* file
|
|
|
|
(("\"/bin/sh\"")
|
|
|
|
(begin
|
|
|
|
(format (current-error-port) "\
|
|
|
|
patch-/bin/sh-references: ~a: changing `\"/bin/sh\"' to `~a'~%"
|
|
|
|
file quoted-sh)
|
|
|
|
quoted-sh))))
|
|
|
|
(find-files "." "\\.ml$"))
|
|
|
|
#t))))
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(mandir (string-append out "/share/man")))
|
|
|
|
;; Custom configure script doesn't recognize
|
|
|
|
;; --prefix=<PREFIX> syntax (with equals sign).
|
|
|
|
(zero? (system* "./configure"
|
|
|
|
"--prefix" out
|
|
|
|
"--mandir" mandir)))))
|
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
|
|
|
(zero? (system* "make" "-j" (number->string
|
|
|
|
(parallel-job-count))
|
|
|
|
"world.opt"))))
|
|
|
|
(delete 'check)
|
|
|
|
(add-after 'install 'check
|
|
|
|
(lambda _
|
|
|
|
(with-directory-excursion "testsuite"
|
|
|
|
(zero? (system* "make" "all")))))
|
|
|
|
(add-before 'check 'prepare-socket-test
|
|
|
|
(lambda _
|
|
|
|
(format (current-error-port)
|
|
|
|
"Spawning local test web server on port 8080~%")
|
|
|
|
(when (zero? (primitive-fork))
|
|
|
|
(run-server (lambda (request request-body)
|
|
|
|
(values '((content-type . (text/plain)))
|
|
|
|
"Hello!"))
|
|
|
|
'http '(#:port 8080)))
|
|
|
|
(let ((file "testsuite/tests/lib-threads/testsocket.ml"))
|
|
|
|
(format (current-error-port)
|
|
|
|
"Patching ~a to use localhost port 8080~%"
|
|
|
|
file)
|
|
|
|
(substitute* file
|
|
|
|
(("caml.inria.fr") "localhost")
|
|
|
|
(("80") "8080")
|
|
|
|
(("HTTP1.0") "HTTP/1.0"))
|
|
|
|
#t))))))
|
|
|
|
(home-page "https://ocaml.org/")
|
2013-01-23 21:16:22 +01:00
|
|
|
(synopsis "The OCaml programming language")
|
|
|
|
(description
|
|
|
|
"OCaml is a general purpose industrial-strength programming language with
|
gnu: Some cleanup based on lint checkers.
* gnu/packages/admin.scm, gnu/packages/aidc.scm, gnu/packages/algebra.scm,
gnu/packages/apr.scm, gnu/packages/avahi.scm, gnu/packages/backup.scm,
gnu/packages/base.scm, gnu/packages/calcurse.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/compression.scm, gnu/packages/cook.scm,
gnu/packages/crypto.scm, gnu/packages/cryptsetup.scm, gnu/packages/curl.scm,
gnu/packages/cyrus-sasl.scm, gnu/packages/databases.scm,
gnu/packages/doxygen.scm, gnu/packages/dwm.scm, gnu/packages/elf.scm,
gnu/packages/emacs.scm, gnu/packages/feh.scm, gnu/packages/file.scm,
gnu/packages/fish.scm, gnu/packages/flex.scm, gnu/packages/fltk.scm,
gnu/packages/fontutils.scm, gnu/packages/games.scm, gnu/packages/gcal.scm,
gnu/packages/gcc.scm, gnu/packages/geeqie.scm, gnu/packages/ghostscript.scm,
gnu/packages/gimp.scm, gnu/packages/gl.scm, gnu/packages/glib.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gperf.scm, gnu/packages/grub.scm, gnu/packages/gsasl.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile.scm,
gnu/packages/hurd.scm, gnu/packages/icu4c.scm, gnu/packages/image.scm,
gnu/packages/imagemagick.scm, gnu/packages/irssi.scm, gnu/packages/kde.scm,
gnu/packages/libdaemon.scm, gnu/packages/libevent.scm,
gnu/packages/libidn.scm, gnu/packages/libusb.scm, gnu/packages/linux.scm,
gnu/packages/lout.scm, gnu/packages/lsh.scm, gnu/packages/lsof.scm,
gnu/packages/lua.scm, gnu/packages/maths.scm, gnu/packages/mcrypt.scm,
gnu/packages/mp3.scm, gnu/packages/netpbm.scm, gnu/packages/noweb.scm,
gnu/packages/ocaml.scm, gnu/packages/openssl.scm, gnu/packages/pcre.scm,
gnu/packages/pdf.scm, gnu/packages/pkg-config.scm,
gnu/packages/pretty-print.scm, gnu/packages/python.scm, gnu/packages/qt.scm,
gnu/packages/rsync.scm, gnu/packages/scheme.scm, gnu/packages/scrot.scm,
gnu/packages/sdl.scm, gnu/packages/skribilo.scm, gnu/packages/ssh.scm,
gnu/packages/stalonetray.scm, gnu/packages/tcl.scm, gnu/packages/tcsh.scm,
gnu/packages/telephony.scm, gnu/packages/texlive.scm, gnu/packages/tor.scm,
gnu/packages/valgrind.scm, gnu/packages/version-control.scm,
gnu/packages/vim.scm, gnu/packages/vpn.scm, gnu/packages/w3m.scm,
gnu/packages/web.scm, gnu/packages/wordnet.scm, gnu/packages/xiph.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/packages/zile.scm,
gnu/packages/zip.scm, gnu/packages/zsh.scm [synopsis, description]: Adjust
according to lint checkers.
* gnu/packages/fltk.scm (fltk)[source]: Wrap long line in uri.
* /gnu/packages/xiph.scm (libogg, libtheora, vorbis-tools)[source]: Same.
2014-10-24 06:46:59 +02:00
|
|
|
an emphasis on expressiveness and safety. Developed for more than 20 years at
|
2013-01-23 21:16:22 +01:00
|
|
|
Inria it benefits from one of the most advanced type systems and supports
|
|
|
|
functional, imperative and object-oriented styles of programming.")
|
2015-06-03 04:49:10 +02:00
|
|
|
;; The compiler is distributed under qpl1.0 with a change to choice of
|
|
|
|
;; law: the license is governed by the laws of France. The library is
|
|
|
|
;; distributed under lgpl2.0.
|
|
|
|
(license (list qpl lgpl2.0))))
|
2014-09-15 15:05:52 +02:00
|
|
|
|
|
|
|
(define-public opam
|
|
|
|
(package
|
|
|
|
(name "opam")
|
2016-08-22 19:28:09 +02:00
|
|
|
(version "1.2.2")
|
2014-09-15 15:05:52 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
;; Use the '-full' version, which includes all the dependencies.
|
|
|
|
(uri (string-append
|
|
|
|
"https://github.com/ocaml/opam/releases/download/"
|
|
|
|
version "/opam-full-" version ".tar.gz")
|
|
|
|
;; (string-append "https://github.com/ocaml/opam/archive/"
|
|
|
|
;; version ".tar.gz")
|
|
|
|
)
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-08-22 19:28:09 +02:00
|
|
|
"004gwn6rbpcb53y3rpb3v23vk39rp2xmf0liyd5iy12ij8bigrhm"))))
|
2014-09-15 15:05:52 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
'(;; Sometimes, 'make -jX' would fail right after ./configure with
|
|
|
|
;; "Fatal error: exception End_of_file".
|
|
|
|
#:parallel-build? #f
|
|
|
|
|
|
|
|
;; For some reason, 'ocp-build' needs $TERM to be set.
|
2016-08-22 19:28:09 +02:00
|
|
|
#:make-flags `("TERM=screen"
|
|
|
|
,(string-append "SHELL="
|
|
|
|
(assoc-ref %build-inputs "bash")
|
|
|
|
"/bin/sh"))
|
2014-09-15 15:05:52 +02:00
|
|
|
#:test-target "tests"
|
|
|
|
|
|
|
|
;; FIXME: There's an obscure test failure:
|
|
|
|
;; …/_obuild/opam/opam.asm install P1' failed.
|
|
|
|
#:tests? #f
|
|
|
|
|
2016-08-22 19:27:06 +02:00
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(add-before 'build 'pre-build
|
|
|
|
(lambda* (#:key inputs make-flags #:allow-other-keys)
|
|
|
|
(let ((bash (assoc-ref inputs "bash")))
|
|
|
|
(substitute* "src/core/opamSystem.ml"
|
|
|
|
(("\"/bin/sh\"")
|
2016-08-22 19:28:09 +02:00
|
|
|
(string-append "\"" bash "/bin/sh\"")))
|
|
|
|
;; Build dependencies
|
|
|
|
(zero? (apply system* "make" "lib-ext" make-flags)))))
|
2016-08-22 19:27:06 +02:00
|
|
|
(add-before 'check 'pre-check
|
|
|
|
(lambda _
|
|
|
|
(setenv "HOME" (getcwd))
|
|
|
|
(and (system "git config --global user.email guix@gnu.org")
|
|
|
|
(system "git config --global user.name Guix")))))))
|
2014-09-15 15:05:52 +02:00
|
|
|
(native-inputs
|
|
|
|
`(("git" ,git) ;for the tests
|
2016-08-22 19:28:09 +02:00
|
|
|
("python" ,python) ;for the tests
|
|
|
|
("camlp4" ,camlp4)))
|
2014-09-15 15:05:52 +02:00
|
|
|
(inputs
|
|
|
|
`(("ocaml" ,ocaml)
|
|
|
|
("ncurses" ,ncurses)
|
|
|
|
("curl" ,curl)))
|
|
|
|
(home-page "http://opam.ocamlpro.com/")
|
|
|
|
(synopsis "Package manager for OCaml")
|
|
|
|
(description
|
|
|
|
"OPAM is a tool to manage OCaml packages. It supports multiple
|
|
|
|
simultaneous compiler installations, flexible package constraints, and a
|
|
|
|
Git-friendly development workflow.")
|
|
|
|
|
|
|
|
;; The 'LICENSE' file waives some requirements compared to LGPLv3.
|
|
|
|
(license lgpl3)))
|
2015-05-30 20:59:54 +02:00
|
|
|
|
2015-07-21 19:28:47 +02:00
|
|
|
(define-public camlp4
|
|
|
|
(package
|
|
|
|
(name "camlp4")
|
2015-08-23 18:49:45 +02:00
|
|
|
(version "4.02+6")
|
2015-07-21 19:28:47 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://github.com/ocaml/camlp4/archive/"
|
|
|
|
version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-08-23 18:49:45 +02:00
|
|
|
"0icdfzhsbgf89925gc8gl3fm8z2xzszzlib0v9dj5wyzkyv3a342"))
|
2015-07-21 19:28:47 +02:00
|
|
|
(file-name (string-append name "-" version ".tar.gz"))))
|
|
|
|
(build-system gnu-build-system)
|
2015-10-08 11:17:21 +02:00
|
|
|
(native-inputs `(("ocaml" ,ocaml)
|
2015-10-08 11:10:47 +02:00
|
|
|
("which" ,which)))
|
2015-07-21 19:28:47 +02:00
|
|
|
(inputs `(("ocaml" ,ocaml)))
|
|
|
|
(arguments
|
|
|
|
'(#:tests? #f ;no documented test target
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(replace
|
|
|
|
'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
;; This is a home-made 'configure' script.
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(zero? (system* "./configure"
|
|
|
|
(string-append "--libdir=" out "/lib")
|
|
|
|
(string-append "--bindir=" out "/bin")
|
|
|
|
(string-append "--pkgdir=" out)))))))))
|
|
|
|
(home-page "https://github.com/ocaml/camlp4")
|
|
|
|
(synopsis "Write parsers in OCaml")
|
|
|
|
(description
|
|
|
|
"Camlp4 is a software system for writing extensible parsers for
|
|
|
|
programming languages. It provides a set of OCaml libraries that are used to
|
|
|
|
define grammars as well as loadable syntax extensions of such grammars.
|
|
|
|
Camlp4 stands for Caml Preprocessor and Pretty-Printer and one of its most
|
|
|
|
important applications is the definition of domain-specific extensions of the
|
|
|
|
syntax of OCaml.")
|
|
|
|
|
|
|
|
;; This is LGPLv2 with an exception that allows packages statically-linked
|
|
|
|
;; against the library to be released under any terms.
|
|
|
|
(license lgpl2.0)))
|
|
|
|
|
2015-05-30 20:59:54 +02:00
|
|
|
(define-public camlp5
|
|
|
|
(package
|
|
|
|
(name "camlp5")
|
2015-08-23 18:30:27 +02:00
|
|
|
(version "6.14")
|
2015-05-30 20:59:54 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://camlp5.gforge.inria.fr/distrib/src/"
|
|
|
|
name "-" version ".tgz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2015-08-23 18:30:27 +02:00
|
|
|
"1ql04iyvclpyy9805kpddc4ndjb5d0qg4shhi2fc6bixi49fvy89"))))
|
2015-05-30 20:59:54 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("ocaml" ,ocaml)))
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; XXX TODO figure out how to run the tests
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(mandir (string-append out "/share/man")))
|
|
|
|
;; Custom configure script doesn't recognize
|
|
|
|
;; --prefix=<PREFIX> syntax (with equals sign).
|
|
|
|
(zero? (system* "./configure"
|
|
|
|
"--prefix" out
|
|
|
|
"--mandir" mandir)))))
|
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
|
|
|
(zero? (system* "make" "-j" (number->string
|
|
|
|
(parallel-job-count))
|
|
|
|
"world.opt")))))))
|
|
|
|
(home-page "http://camlp5.gforge.inria.fr/")
|
|
|
|
(synopsis "Pre-processor Pretty Printer for OCaml")
|
|
|
|
(description
|
|
|
|
"Camlp5 is a Pre-Processor-Pretty-Printer for Objective Caml. It offers
|
|
|
|
tools for syntax (Stream Parsers and Grammars) and the ability to modify the
|
|
|
|
concrete syntax of the language (Quotations, Syntax Extensions).")
|
|
|
|
;; Most files are distributed under bsd-3, but ocaml_stuff/* is under qpl.
|
|
|
|
(license (list bsd-3 qpl))))
|
2015-06-03 09:21:43 +02:00
|
|
|
|
|
|
|
(define-public hevea
|
|
|
|
(package
|
|
|
|
(name "hevea")
|
2016-01-17 07:41:20 +01:00
|
|
|
(version "2.28")
|
2015-06-03 09:21:43 +02:00
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
2015-12-24 18:13:05 +01:00
|
|
|
(uri (string-append "http://hevea.inria.fr/old/"
|
2015-06-03 09:21:43 +02:00
|
|
|
name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
2016-01-17 07:41:20 +01:00
|
|
|
"14fns13wlnpiv9i05841kvi3cq4b9v2sw5x3ff6ziws28q701qnd"))))
|
2015-06-03 09:21:43 +02:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(inputs
|
|
|
|
`(("ocaml" ,ocaml)))
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no test suite
|
|
|
|
#:make-flags (list (string-append "PREFIX=" %output))
|
|
|
|
#:phases (modify-phases %standard-phases
|
2016-01-17 07:41:20 +01:00
|
|
|
(delete 'configure)
|
|
|
|
(add-before 'build 'patch-/bin/sh
|
|
|
|
(lambda _
|
|
|
|
(substitute* "_tags"
|
|
|
|
(("/bin/sh") (which "sh")))
|
|
|
|
#t)))))
|
2015-06-03 09:21:43 +02:00
|
|
|
(home-page "http://hevea.inria.fr/")
|
|
|
|
(synopsis "LaTeX to HTML translator")
|
|
|
|
(description
|
|
|
|
"HeVeA is a LaTeX to HTML translator that generates modern HTML 5. It is
|
|
|
|
written in Objective Caml.")
|
|
|
|
(license qpl)))
|
2015-05-30 22:07:19 +02:00
|
|
|
|
|
|
|
(define-public coq
|
|
|
|
(package
|
|
|
|
(name "coq")
|
|
|
|
(version "8.4pl6")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://coq.inria.fr/distrib/V" version
|
|
|
|
"/files/" name "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1mpbj4yf36kpjg2v2sln12i8dzqn8rag6fd07hslj2lpm4qs4h55"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("texlive" ,texlive)
|
|
|
|
("hevea" ,hevea)))
|
|
|
|
(inputs
|
|
|
|
`(("ocaml" ,ocaml)
|
|
|
|
("camlp5" ,camlp5)))
|
|
|
|
(arguments
|
|
|
|
`(#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(mandir (string-append out "/share/man"))
|
|
|
|
(browser "icecat -remote \"OpenURL(%s,new-tab)\""))
|
|
|
|
(zero? (system* "./configure"
|
|
|
|
"--prefix" out
|
|
|
|
"--mandir" mandir
|
|
|
|
"--browser" browser)))))
|
|
|
|
(replace 'build
|
|
|
|
(lambda _
|
|
|
|
(zero? (system* "make" "-j" (number->string
|
|
|
|
(parallel-job-count))
|
|
|
|
"world"))))
|
|
|
|
(delete 'check)
|
|
|
|
(add-after 'install 'check
|
|
|
|
(lambda _
|
|
|
|
(with-directory-excursion "test-suite"
|
|
|
|
(zero? (system* "make"))))))))
|
|
|
|
(home-page "https://coq.inria.fr")
|
|
|
|
(synopsis "Proof assistant for higher-order logic")
|
|
|
|
(description
|
|
|
|
"Coq is a proof assistant for higher-order logic, which allows the
|
|
|
|
development of computer programs consistent with their formal specification.
|
|
|
|
It is developed using Objective Caml and Camlp5.")
|
|
|
|
;; The code is distributed under lgpl2.1.
|
|
|
|
;; Some of the documentation is distributed under opl1.0+.
|
|
|
|
(license (list lgpl2.1 opl1.0+))))
|
2015-06-08 11:05:23 +02:00
|
|
|
|
|
|
|
(define-public proof-general
|
|
|
|
(package
|
|
|
|
(name "proof-general")
|
|
|
|
(version "4.2")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append
|
|
|
|
"http://proofgeneral.inf.ed.ac.uk/releases/"
|
|
|
|
"ProofGeneral-" version ".tgz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"09qb0myq66fw17v4ziz401ilsb5xlxz1nl2wsp69d0vrfy0bcrrm"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("which" ,which)
|
2016-05-12 00:58:59 +02:00
|
|
|
("emacs" ,emacs-minimal)
|
2015-06-08 11:05:23 +02:00
|
|
|
("texinfo" ,texinfo)))
|
|
|
|
(inputs
|
|
|
|
`(("host-emacs" ,emacs)
|
|
|
|
("perl" ,perl)
|
|
|
|
("coq" ,coq)))
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no check target
|
|
|
|
#:make-flags (list (string-append "PREFIX=" %output)
|
|
|
|
(string-append "DEST_PREFIX=" %output))
|
|
|
|
#:modules ((guix build gnu-build-system)
|
|
|
|
(guix build utils)
|
|
|
|
(guix build emacs-utils))
|
|
|
|
#:imported-modules (,@%gnu-build-system-modules
|
|
|
|
(guix build emacs-utils))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(add-after 'unpack 'disable-byte-compile-error-on-warn
|
|
|
|
(lambda _
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("\\(setq byte-compile-error-on-warn t\\)")
|
|
|
|
"(setq byte-compile-error-on-warn nil)"))
|
|
|
|
#t))
|
|
|
|
(add-after 'unpack 'patch-hardcoded-paths
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(coq (assoc-ref inputs "coq"))
|
|
|
|
(emacs (assoc-ref inputs "host-emacs")))
|
|
|
|
(define (coq-prog name)
|
|
|
|
(string-append coq "/bin/" name))
|
|
|
|
(emacs-substitute-variables "coq/coq.el"
|
|
|
|
("coq-prog-name" (coq-prog "coqtop"))
|
|
|
|
("coq-compiler" (coq-prog "coqc"))
|
|
|
|
("coq-dependency-analyzer" (coq-prog "coqdep")))
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("/sbin/install-info") "install-info"))
|
|
|
|
(substitute* "bin/proofgeneral"
|
|
|
|
(("^PGHOMEDEFAULT=.*" all)
|
|
|
|
(string-append all
|
|
|
|
"PGHOME=$PGHOMEDEFAULT\n"
|
|
|
|
"EMACS=" emacs "/bin/emacs")))
|
|
|
|
#t)))
|
|
|
|
(add-after 'unpack 'clean
|
|
|
|
(lambda _
|
|
|
|
;; Delete the pre-compiled elc files for Emacs 23.
|
|
|
|
(zero? (system* "make" "clean"))))
|
|
|
|
(add-after 'install 'install-doc
|
|
|
|
(lambda* (#:key make-flags #:allow-other-keys)
|
|
|
|
;; XXX FIXME avoid building/installing pdf files,
|
|
|
|
;; due to unresolved errors building them.
|
|
|
|
(substitute* "Makefile"
|
|
|
|
((" [^ ]*\\.pdf") ""))
|
|
|
|
(zero? (apply system* "make" "install-doc"
|
|
|
|
make-flags)))))))
|
|
|
|
(home-page "http://proofgeneral.inf.ed.ac.uk/")
|
gnu packages: Clean up synopses and descriptions.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm, gnu/packages/bittorrent.scm,
gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/databases.scm, gnu/packages/enchant.scm,
gnu/packages/firmware.scm, gnu/packages/fonts.scm,
gnu/packages/freedesktop.scm, gnu/packages/games.scm, gnu/packages/gd.scm,
gnu/packages/gl.scm, gnu/packages/gnome.scm, gnu/packages/gsasl.scm,
gnu/packages/gstreamer.scm, gnu/packages/gtk.scm, gnu/packages/guile.scm,
gnu/packages/haskell.scm, gnu/packages/language.scm,
gnu/packages/lesstif.scm, gnu/packages/libreoffice.scm,
gnu/packages/linux.scm, gnu/packages/llvm.scm, gnu/packages/maths.scm,
gnu/packages/mcrypt.scm, gnu/packages/mit-krb5.scm, gnu/packages/mp3.scm,
gnu/packages/ncdu.scm, gnu/packages/networking.scm, gnu/packages/ntp.scm,
gnu/packages/ocaml.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/pretty-print.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python.scm,
gnu/packages/rdesktop.scm, gnu/packages/rdf.scm, gnu/packages/ruby.scm,
gnu/packages/slang.scm, gnu/packages/slim.scm, gnu/packages/telephony.scm,
gnu/packages/tls.scm, gnu/packages/tmux.scm, gnu/packages/tre.scm,
gnu/packages/unrtf.scm, gnu/packages/version-control.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wget.scm,
gnu/packages/xdisorg.scm, gnu/packages/xfce.scm, gnu/packages/xiph.scm:
Fix typos. Trim long lines. Add missing periods in the end of sentences.
Use double spaces between sentences. Remove trailing whitespaces.
2015-07-17 14:16:07 +02:00
|
|
|
(synopsis "Generic front-end for proof assistants based on Emacs")
|
|
|
|
(description
|
2015-06-08 11:05:23 +02:00
|
|
|
"Proof General is a major mode to turn Emacs into an interactive proof
|
|
|
|
assistant to write formal mathematical proofs using a variety of theorem
|
|
|
|
provers.")
|
|
|
|
(license gpl2+)))
|
2015-08-23 18:11:16 +02:00
|
|
|
|
2015-08-23 19:56:22 +02:00
|
|
|
(define-public lablgtk
|
|
|
|
(package
|
|
|
|
(name "lablgtk")
|
|
|
|
(version "2.18.3")
|
|
|
|
(source
|
|
|
|
(origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "https://forge.ocamlcore.org/frs/download.php/"
|
|
|
|
"1479/lablgtk-2.18.3.tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"1bybn3jafxf4cx25zvn8h2xj9agn1xjbn7j3ywxxqx6az7rfnnwp"))))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("camlp4" ,camlp4)
|
|
|
|
("ocaml" ,ocaml)
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
;; FIXME: Add inputs gtkgl-2.0, libpanelapplet-2.0, gtkspell-2.0,
|
|
|
|
;; and gtk+-quartz-2.0 once available.
|
|
|
|
(inputs
|
|
|
|
`(("gtk+" ,gtk+-2)
|
2015-11-08 20:51:46 +01:00
|
|
|
("gtksourceview" ,gtksourceview-2)
|
2015-08-23 19:56:22 +02:00
|
|
|
("libgnomecanvas" ,libgnomecanvas)
|
|
|
|
("libgnomeui" ,libgnomeui)
|
|
|
|
("libglade" ,libglade)
|
|
|
|
("librsvg" ,librsvg)))
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no check target
|
2015-10-31 12:26:43 +01:00
|
|
|
|
2016-02-11 18:52:15 +01:00
|
|
|
;; opt: also install cmxa files
|
|
|
|
#:make-flags (list "all" "opt")
|
2015-10-31 12:26:43 +01:00
|
|
|
;; Occasionally we would get "Error: Unbound module GtkThread" when
|
|
|
|
;; compiling 'gtkThInit.ml', with 'make -j'. So build sequentially.
|
|
|
|
#:parallel-build? #f
|
|
|
|
|
2015-08-23 19:56:22 +02:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
(ocaml (assoc-ref inputs "ocaml")))
|
|
|
|
;; Install into the output and not the ocaml directory.
|
|
|
|
(substitute* "config.make"
|
|
|
|
((ocaml) out))
|
|
|
|
(system* "make" "old-install")
|
|
|
|
#t))))))
|
|
|
|
(home-page "http://lablgtk.forge.ocamlcore.org/")
|
|
|
|
(synopsis "GTK+ bindings for OCaml")
|
|
|
|
(description
|
|
|
|
"LablGtk is an OCaml interface to GTK+ 1.2 and 2.x. It provides
|
|
|
|
a strongly-typed object-oriented interface that is compatible with the
|
|
|
|
dynamic typing of GTK+. Most widgets and methods are available. LablGtk
|
|
|
|
also provides bindings to
|
|
|
|
gdk-pixbuf, the GLArea widget (in combination with LablGL), gnomecanvas,
|
|
|
|
gnomeui, gtksourceview, gtkspell,
|
|
|
|
libglade (and it an generate OCaml code from .glade files),
|
|
|
|
libpanel, librsvg and quartz.")
|
|
|
|
(license lgpl2.1)))
|
|
|
|
|
2015-08-23 18:11:16 +02:00
|
|
|
(define-public unison
|
|
|
|
(package
|
|
|
|
(name "unison")
|
|
|
|
(version "2.48.3")
|
|
|
|
(source
|
|
|
|
(origin
|
2015-12-19 02:29:22 +01:00
|
|
|
(method svn-fetch)
|
|
|
|
(uri (svn-reference
|
|
|
|
(url (string-append "https://webdav.seas.upenn.edu/svn/"
|
|
|
|
"unison/branches/"
|
|
|
|
(version-major+minor version)))
|
|
|
|
(revision 535)))
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0486s53wyayicj9f2raj2dvwvk4xyzar219rccc1iczdwixm4x05"))
|
|
|
|
(modules '((guix build utils)
|
|
|
|
(ice-9 rdelim)
|
|
|
|
(ice-9 regex)
|
|
|
|
(srfi srfi-1)))
|
|
|
|
(snippet
|
|
|
|
`(begin
|
|
|
|
;; The svn revision in the release tarball appears to be
|
|
|
|
;; artificially manipulated in order to set the desired point
|
|
|
|
;; version number. Because the point version is calculated during
|
|
|
|
;; the build, we can offset pointVersionOrigin by the desired
|
|
|
|
;; point version and write that into "Rev: %d". We do this rather
|
|
|
|
;; than hardcoding the necessary revision number, for
|
|
|
|
;; maintainability.
|
|
|
|
(with-atomic-file-replacement "src/mkProjectInfo.ml"
|
|
|
|
(lambda (in out)
|
|
|
|
(let ((pt-ver (string->number (third (string-split ,version #\.))))
|
|
|
|
(pt-rx (make-regexp "^let pointVersionOrigin = ([0-9]+)"))
|
|
|
|
(rev-rx (make-regexp "Rev: [0-9]+")))
|
|
|
|
(let loop ((pt-origin #f))
|
|
|
|
(let ((line (read-line in 'concat)))
|
|
|
|
(cond
|
|
|
|
((regexp-exec pt-rx line)
|
|
|
|
=> (lambda (m)
|
|
|
|
(display line out)
|
|
|
|
(loop (string->number (match:substring m 1)))))
|
|
|
|
((regexp-exec rev-rx line)
|
|
|
|
=> (lambda (m)
|
|
|
|
(format out "~aRev: ~d~a"
|
|
|
|
(match:prefix m)
|
|
|
|
(+ pt-origin pt-ver)
|
|
|
|
(match:suffix m))
|
|
|
|
(dump-port in out))) ;done
|
|
|
|
(else
|
|
|
|
(display line out)
|
|
|
|
(loop pt-origin))))))))
|
|
|
|
;; Without the '-fix' argument, the html file produced does not
|
|
|
|
;; have functioning internal hyperlinks.
|
|
|
|
(substitute* "doc/Makefile"
|
|
|
|
(("hevea unison") "hevea -fix unison"))))))
|
2015-08-23 18:11:16 +02:00
|
|
|
(build-system gnu-build-system)
|
2015-12-19 02:29:22 +01:00
|
|
|
(outputs '("out"
|
|
|
|
"doc")) ; 1.9 MiB of documentation
|
2015-08-23 18:11:16 +02:00
|
|
|
(native-inputs
|
2015-12-19 02:29:22 +01:00
|
|
|
`(("ocaml" ,ocaml)
|
|
|
|
;; For documentation
|
2016-08-01 10:24:07 +02:00
|
|
|
("ghostscript-gs" ,ghostscript-gs)
|
|
|
|
("ghostscript" ,ghostscript)
|
2015-12-19 02:29:22 +01:00
|
|
|
("texlive" ,texlive)
|
|
|
|
("hevea" ,hevea)
|
|
|
|
("lynx" ,lynx)))
|
2015-08-23 18:11:16 +02:00
|
|
|
(arguments
|
|
|
|
`(#:parallel-build? #f
|
|
|
|
#:parallel-tests? #f
|
|
|
|
#:test-target "selftest"
|
|
|
|
#:tests? #f ; Tests require writing to $HOME.
|
|
|
|
; If some $HOME is provided, they fail with the message
|
|
|
|
; "Fatal error: Skipping some tests -- remove me!"
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(add-before 'install 'prepare-install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
(mkdir-p bin)
|
|
|
|
(setenv "HOME" out) ; forces correct INSTALLDIR in Makefile
|
2015-12-19 02:29:22 +01:00
|
|
|
#t)))
|
2016-06-11 06:24:21 +02:00
|
|
|
(add-after 'install 'install-fsmonitor
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
(bin (string-append out "/bin")))
|
|
|
|
;; 'unison-fsmonitor' is used in "unison -repeat watch" mode.
|
|
|
|
(install-file "src/unison-fsmonitor" bin))))
|
2015-12-19 02:29:22 +01:00
|
|
|
(add-after 'install 'install-doc
|
2016-06-11 06:24:21 +02:00
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2015-12-19 02:29:22 +01:00
|
|
|
(let ((doc (string-append (assoc-ref outputs "doc")
|
|
|
|
"/share/doc/unison")))
|
|
|
|
(mkdir-p doc)
|
|
|
|
;; This file needs write-permissions, because it's
|
|
|
|
;; overwritten by 'docs' during documentation generation.
|
|
|
|
(chmod "src/strings.ml" #o600)
|
|
|
|
(and (zero? (system* "make" "docs"
|
|
|
|
"TEXDIRECTIVES=\\\\draftfalse"))
|
|
|
|
(begin
|
|
|
|
(for-each (lambda (f)
|
|
|
|
(install-file f doc))
|
|
|
|
(map (lambda (ext)
|
|
|
|
(string-append
|
|
|
|
"doc/unison-manual." ext))
|
|
|
|
;; Install only html documentation,
|
|
|
|
;; since the build is currently
|
|
|
|
;; non-reproducible with the ps, pdf,
|
|
|
|
;; and dvi docs.
|
|
|
|
'(;;"ps" "pdf" "dvi"
|
|
|
|
"html")))
|
|
|
|
#t))))))))
|
2015-08-23 18:11:16 +02:00
|
|
|
(home-page "https://www.cis.upenn.edu/~bcpierce/unison/")
|
|
|
|
(synopsis "File synchronizer")
|
|
|
|
(description
|
|
|
|
"Unison is a file-synchronization tool. It allows two replicas of
|
|
|
|
a collection of files and directories to be stored on different hosts
|
|
|
|
(or different disks on the same host), modified separately, and then
|
|
|
|
brought up to date by propagating the changes in each replica
|
|
|
|
to the other.")
|
|
|
|
(license gpl3+)))
|
2016-02-11 18:53:07 +01:00
|
|
|
|
|
|
|
(define-public ocaml-findlib
|
|
|
|
(package
|
|
|
|
(name "ocaml-findlib")
|
|
|
|
(version "1.6.1")
|
|
|
|
(source (origin
|
|
|
|
(method url-fetch)
|
|
|
|
(uri (string-append "http://download.camlcity.org/download/"
|
|
|
|
"findlib" "-" version ".tar.gz"))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"02abg1lsnwvjg3igdyb8qjgr5kv1nbwl4gaf8mdinzfii5p82721"))
|
2016-04-08 14:18:13 +02:00
|
|
|
(patches (search-patches "ocaml-findlib-make-install.patch"))))
|
2016-02-11 18:53:07 +01:00
|
|
|
(build-system gnu-build-system)
|
|
|
|
(native-inputs
|
|
|
|
`(("camlp4" ,camlp4)
|
|
|
|
("m4" ,m4)
|
|
|
|
("ocaml" ,ocaml)))
|
|
|
|
(arguments
|
|
|
|
`(#:tests? #f ; no test suite
|
|
|
|
#:parallel-build? #f
|
|
|
|
#:make-flags (list "all" "opt")
|
|
|
|
#:phases (modify-phases %standard-phases
|
|
|
|
(replace
|
|
|
|
'configure
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
|
|
|
(system*
|
|
|
|
"./configure"
|
|
|
|
"-bindir" (string-append out "/bin")
|
|
|
|
"-config" (string-append out "/etc/ocamfind.conf")
|
|
|
|
"-mandir" (string-append out "/share/man")
|
|
|
|
"-sitelib" (string-append out "/lib/ocaml/site-lib")
|
|
|
|
"-with-toolbox")))))))
|
|
|
|
(home-page "http://projects.camlcity.org/projects/findlib.html")
|
|
|
|
(synopsis "Management tool for OCaml libraries")
|
|
|
|
(description
|
|
|
|
"The \"findlib\" library provides a scheme to manage reusable software
|
|
|
|
components (packages), and includes tools that support this scheme. Packages
|
|
|
|
are collections of OCaml modules for which metainformation can be stored. The
|
2016-09-16 08:08:48 +02:00
|
|
|
packages are kept in the file system hierarchy, but with strict directory
|
2016-02-11 18:53:07 +01:00
|
|
|
structure. The library contains functions to look the directory up that
|
|
|
|
stores a package, to query metainformation about a package, and to retrieve
|
|
|
|
dependency information about multiple packages. There is also a tool that
|
|
|
|
allows the user to enter queries on the command-line. In order to simplify
|
|
|
|
compilation and linkage, there are new frontends of the various OCaml
|
|
|
|
compilers that can directly deal with packages.")
|
|
|
|
(license x11)))
|