mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add ocaml4.01-bisect.
* gnu/packages/ocaml.scm (ocaml4.01-bisect): New variable. (ocaml-bisect)[properties]: New field.
This commit is contained in:
parent
c6cfec42b0
commit
1345231cc2
1 changed files with 16 additions and 1 deletions
|
@ -59,7 +59,8 @@ (define-module (gnu packages ocaml)
|
|||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix svn-download)
|
||||
#:use-module (guix utils))
|
||||
#:use-module (guix utils)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
;; A shortcut for files from ocaml forge. Downloaded files are computed from
|
||||
;; their number, not their name.
|
||||
|
@ -1126,8 +1127,22 @@ (define-public ocaml-bisect
|
|||
tests. After application execution, it is possible to generate a report in HTML
|
||||
format that is the replica of the application source code annotated with code
|
||||
coverage information.")
|
||||
(properties `((ocaml4.01-variant . ,(delay ocaml4.01-bisect))))
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public ocaml4.01-bisect
|
||||
(let ((base (package-with-ocaml4.01 (strip-ocaml4.01-variant ocaml-bisect))))
|
||||
(package
|
||||
(inherit base)
|
||||
(arguments
|
||||
`(#:ocaml ,ocaml-4.01
|
||||
;; Camlp4 is included with OCaml 4.01, so do not include it as a
|
||||
;; separate input.
|
||||
,@(strip-keyword-arguments '(#:make-flags) (package-arguments base))))
|
||||
(native-inputs `(,@(alist-delete "camlp4" (package-native-inputs base))))
|
||||
(propagated-inputs
|
||||
`(,@(alist-delete "camlp4" (package-propagated-inputs base)))))))
|
||||
|
||||
(define-public ocaml-bitstring
|
||||
(package
|
||||
(name "ocaml-bitstring")
|
||||
|
|
Loading…
Reference in a new issue