From 2c33f126cb18b4ec532888a4ca4974a278d9ce24 Mon Sep 17 00:00:00 2001 From: ng0 Date: Mon, 5 Sep 2016 11:16:51 +0000 Subject: [PATCH 3/4] gnu: ghc: Update to 8.0.1. * gnu/packages/haskell.scm (ghc): Update to 8.0.1. --- gnu/packages/haskell.scm | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 5b9e662..d629d43 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -85,7 +85,7 @@ (define-public ghc (package (name "ghc") - (version "7.10.2") + (version "8.0.1") (source (origin (method url-fetch) @@ -93,7 +93,7 @@ version "/" name "-" version "-src.tar.xz")) (sha256 (base32 - "1x8m4rp2v7ydnrz6z9g8x7z3x3d3pxhv2pixy7i7hkbqbdsp7kal")))) + "1lniqy29djhjkddnailpaqhlqh4ld2mqvb1fxgxw1qqjhz6j1ywh")))) (build-system gnu-build-system) (supported-systems '("i686-linux" "x86_64-linux")) (outputs '("out" "doc")) @@ -110,7 +110,7 @@ version "/" name "-" version "-testsuite.tar.xz")) (sha256 (base32 - "0qp9da9ar87zbyn6wjgacd2ic1vgzbi3cklxnhsmjqyafv9qaj4b")))))) + "0lc1vjivkxn01aw3jg2gd7fmqb5pj7a5j987c7pn5r7caqv1cmxw")))))) (native-inputs `(("perl" ,perl) ("python" ,python-2) ; for tests (fails with python-3) @@ -119,8 +119,8 @@ ;; GHC is built with GHC. Therefore we need bootstrap binaries. ("ghc-binary" ,(if (string-match "x86_64" (or (%current-target-system) (%current-system))) - ghc-bootstrap-x86_64-7.8.4 - ghc-bootstrap-i686-7.8.4)))) + ghc-bootstrap-x86_64-8.0.1 + ghc-bootstrap-i686-8.0.1)))) (arguments `(#:test-target "test" ;; We get a smaller number of test failures by disabling parallel test @@ -213,9 +213,9 @@ ,(glibc-dynamic-linker))) (libtinfo-dir (string-append ghc-bootstrap-prefix - "/lib/ghc-7.8.4/terminfo-0.4.0.0"))) + "/lib/ghc-8.0.1/terminfo-0.4.0.0"))) (with-directory-excursion - (string-append ghc-bootstrap-path "/ghc-7.8.4") + (string-append ghc-bootstrap-path "/ghc-8.0.1") (setenv "CONFIG_SHELL" (which "bash")) (setenv "LD_LIBRARY_PATH" gmp-lib) ;; The binaries have "/lib64/ld-linux-x86-64.so.2" hardcoded. @@ -243,7 +243,7 @@ 'configure 'install-bin (lambda* (#:key inputs outputs #:allow-other-keys) (with-directory-excursion - (string-append ghc-bootstrap-path "/ghc-7.8.4") + (string-append ghc-bootstrap-path "/ghc-8.0.1") (zero? (system* "make" "install")))) %standard-phases))))))) (native-search-paths (list (search-path-specification -- 2.10.0