mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 03:45:24 -05:00
gnu: Add ocaml-spawn.
* gnu/packages/ocaml.scm (ocaml-spawn): New variable. (ocaml4.07-spawn): Inherit from it. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
d59abc336d
commit
36e0e198fe
1 changed files with 37 additions and 18 deletions
|
@ -6446,10 +6446,10 @@ (define-public ocaml4.07-configurator
|
|||
@end itemize")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public ocaml4.07-spawn
|
||||
(define-public ocaml-spawn
|
||||
(package
|
||||
(name "ocaml4.07-spawn")
|
||||
(version "0.13.0")
|
||||
(name "ocaml-spawn")
|
||||
(version "0.15.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -6458,22 +6458,12 @@ (define-public ocaml4.07-spawn
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1w003k1kw1lmyiqlk58gkxx8rac7dchiqlz6ah7aj7bh49b36ppf"))))
|
||||
"1fjr91psas5zmk1hxvxh0dchhn0pkyzlr4gg232f5g9vdgissi0p"))))
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'fix-tests
|
||||
(lambda _
|
||||
(substitute* "test/tests.ml"
|
||||
(("/bin/pwd") (which "pwd"))
|
||||
(("/bin/echo") (which "echo")))
|
||||
#t)))
|
||||
#:ocaml ,ocaml-4.07
|
||||
#:findlib ,ocaml4.07-findlib
|
||||
#:dune ,ocaml4.07-dune))
|
||||
(native-inputs
|
||||
`(("ocaml-ppx-expect" ,(package-with-ocaml4.07 ocaml-ppx-expect))))
|
||||
(propagated-inputs (list ocaml-odoc))
|
||||
(native-inputs (list ocaml-ppx-expect))
|
||||
(properties
|
||||
`((ocaml4.07-variant . ,(delay ocaml4.07-spawn))))
|
||||
(home-page "https://github.com/janestreet/spawn")
|
||||
(synopsis "Spawning sub-processes")
|
||||
(description
|
||||
|
@ -6495,6 +6485,35 @@ (define-public ocaml4.07-spawn
|
|||
@end itemize")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public ocaml4.07-spawn
|
||||
(package-with-ocaml4.07
|
||||
(package
|
||||
(inherit ocaml-spawn)
|
||||
(version "0.13.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/janestreet/spawn")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name "ocaml4.07-spawn" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1w003k1kw1lmyiqlk58gkxx8rac7dchiqlz6ah7aj7bh49b36ppf"))))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-before 'check 'fix-tests
|
||||
(lambda _
|
||||
(substitute* "test/tests.ml"
|
||||
(("/bin/pwd") (which "pwd"))
|
||||
(("/bin/echo") (which "echo")))
|
||||
#t)))
|
||||
#:ocaml ,ocaml-4.07
|
||||
#:findlib ,ocaml4.07-findlib
|
||||
#:dune ,ocaml4.07-dune))
|
||||
(propagated-inputs '())
|
||||
(properties '()))))
|
||||
|
||||
(define-public ocaml4.07-core
|
||||
(package
|
||||
(name "ocaml4.07-core")
|
||||
|
|
Loading…
Reference in a new issue