mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
gnu: dune: Update to 1.6.3.
* gnu/packages/ocaml.scm (dune): Update to 1.6.3. * guix/build/dune-build-system.scm (build): Use --libdir. Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
parent
8c35a6dd20
commit
625a3daa12
2 changed files with 5 additions and 3 deletions
|
@ -1391,14 +1391,14 @@ (define-public ocaml4.02-bisect
|
|||
(define-public dune
|
||||
(package
|
||||
(name "dune")
|
||||
(version "1.2.1")
|
||||
(version "1.6.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://github.com/ocaml/dune/releases/"
|
||||
"download/" version "/dune-" version ".tbz"))
|
||||
(sha256
|
||||
(base32
|
||||
"00c5dbm4hkdapc2i7pg07b2lj8sv6ly38qr7zid58cdmbmzq21z9"))))
|
||||
"0dmf0wbfmgdy5plz1bjiisc2hjgblvxsnrqjmw2c8y45v1h23mdz"))))
|
||||
(build-system ocaml-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f; require odoc
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2018 Julien Lepiller <julien@lepiller.eu>
|
||||
;;; Copyright © 2019 Gabriel Hondet <gabrielhondet@gmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -49,7 +50,8 @@ (define* (install #:key outputs (install-target "install") (jbuild? #f)
|
|||
"Install the given package."
|
||||
(let ((out (assoc-ref outputs "out"))
|
||||
(program (if jbuild? "jbuilder" "dune")))
|
||||
(invoke program install-target "--prefix" out))
|
||||
(invoke program install-target "--prefix" out "--libdir"
|
||||
(string-append out "/lib/ocaml/site-lib")))
|
||||
#t)
|
||||
|
||||
(define %standard-phases
|
||||
|
|
Loading…
Reference in a new issue