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:
Gabriel Hondet 2019-02-01 09:38:22 +01:00 committed by Julien Lepiller
parent 8c35a6dd20
commit 625a3daa12
No known key found for this signature in database
GPG key ID: 43111F4520086A0C
2 changed files with 5 additions and 3 deletions

View file

@ -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

View file

@ -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