GNU bug report logs -
#30096
Update ocaml-findlib; Add ocaml-tsdl and dependencies
Previous Next
Reported by: Peter Kreye <kreyepr <at> gmail.com>
Date: Sat, 13 Jan 2018 11:07:01 UTC
Severity: normal
Done: Julien Lepiller <julien <at> lepiller.eu>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Le Sat, 13 Jan 2018 05:14:55 -0600,
Peter Kreye <kreyepr <at> gmail.com> a écrit :
> User-agent: mu4e 0.9.18; emacs 25.3.1
>
> * gnu/packages/ocaml.scm (ocaml-integes): New variable.
^
ocaml-integers
> ---
> gnu/packages/ocaml.scm | 36 ++++++++++++++++++++++++++++++++++++
> 1 file changed, 36 insertions(+)
>
> diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
> index e70316cd7..61398d3f2 100644
> --- a/gnu/packages/ocaml.scm
> +++ b/gnu/packages/ocaml.scm
> @@ -3739,6 +3739,42 @@ terminal or in Emacs. It supports line
> editing, history, real-time and context sensitive completion, colors,
> and more.") (license license:bsd-3)))
>
> +(define-public ocaml-integers
> + (package
> + (name "ocaml-integers")
> + (version "0.2.2")
> + (home-page "https://github.com/ocamllabs/ocaml-integers")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append home-page
> +
> "/releases/download/v0.2.2/integers-"
> + version ".tbz"))
> + (file-name (string-append name "-" version ".tbz"))
> + (sha256
> + (base32
> +
> "08b1ljw88ny3l0mdq6xmffjk8anfc77igryva5jz1p6f4f746ywk"))))
> + (build-system ocaml-build-system)
> + (arguments
> + `(#:tests? #f
> + #:phases
> + (modify-phases %standard-phases
> + (delete 'configure)
> + (replace 'build
> + (lambda* (#:key outputs #:allow-other-keys)
> + (let ((libdir (string-append
> + (assoc-ref %build-inputs "findlib")
> + "/lib/ocaml/site-lib")))
> + (zero? (system* "ocaml" "-I" libdir "pkg/pkg.ml"
> "build"))))))))
> + (inputs
> + `(("findlib" ,ocaml-findlib-1.7.3)
It's probably better to use "#:findlib ,ocaml-findlib-1.7.3" in the
arguments list.
> + ("topkg" ,ocaml-topkg)
> + ("opam", opam)))
> + (synopsis "Various signed and unsigned integer types for OCaml")
> + (description "The ocaml-integers library provides a number of
> 8-, 16-, 32- +and 64-bit signed and unsigned integer types, together
> with aliases such as +long and size_t whose sizes depend on the host
> platform.")
> + (license license:expat)))
> +
> (define-public coq-flocq
> (package
> (name "coq-flocq")
This bug report was last modified 7 years and 171 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.