mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 02:19:18 -05:00
gnu: Add ocaml-version.
* gnu/packages/ocaml.scm (ocaml-version): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
9e02c4acb3
commit
c0bfff6aca
1 changed files with 26 additions and 0 deletions
|
@ -5845,6 +5845,32 @@ (define-public ocaml-cairo2
|
|||
and SVG file output.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public ocaml-version
|
||||
(package
|
||||
(name "ocaml-version")
|
||||
(version "3.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ocurrent/ocaml-version")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"13770mp6adjjbx63zsbh6506dqxz241chw8c3y403sxpw45hnaw6"))))
|
||||
(build-system dune-build-system)
|
||||
(arguments `(#:tests? #f)) ; no tests
|
||||
(home-page
|
||||
"https://github.com/ocurrent/ocaml-version")
|
||||
(synopsis
|
||||
"Manipulate, parse and generate OCaml compiler version strings")
|
||||
(description
|
||||
"This library provides facilities to parse version numbers of the OCaml
|
||||
compiler, and enumerates the various official OCaml releases and configuration
|
||||
variants.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public lablgtk3
|
||||
(package
|
||||
(name "lablgtk")
|
||||
|
|
Loading…
Reference in a new issue