* [PATCH 15/15] gnu: Add GHC 8.0.1.
@ 2016-10-16 15:32 Federico Beffa
2016-10-16 17:08 ` Ricardo Wurmus
0 siblings, 1 reply; 2+ messages in thread
From: Federico Beffa @ 2016-10-16 15:32 UTC (permalink / raw)
To: Guix-devel
[-- Attachment #1: Type: text/plain, Size: 528 bytes --]
This is the newest GHC version. I'm adding it as opposed to updating
the version of the current compiler because it is likely to break some
of the 240+ libraries that we have and currently I can't commit to fix
those.
There is a project https://www.stackage.org/ curating an LTS set of
libraries playing well together and with a specific compiler version.
It would probably make sense to sync with their work. They do use YAML
configuration files. Is there somewhere a YAML library for Guile that
we could use?
Regards,
Fede
[-- Attachment #2: 0015-gnu-Add-GHC-8.0.1.patch --]
[-- Type: text/x-patch, Size: 6278 bytes --]
From 734a8f7057dd9c4947ced8abc9f4d147a47dbb05 Mon Sep 17 00:00:00 2001
From: Federico Beffa <beffa@fbengineering.ch>
Date: Sun, 16 Oct 2016 17:01:46 +0200
Subject: [PATCH 15/15] gnu: Add GHC 8.0.1.
* gnu/packages/haskell.scm (ghc-8): New variable.
---
gnu/packages/haskell.scm | 128 +++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 128 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 2e0b8fa..6152d7c 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -261,6 +261,134 @@
interactive environment for the functional language Haskell.")
(license license:bsd-3)))
+(define-public ghc-8
+ (package
+ (name "ghc")
+ (version "8.0.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://www.haskell.org/ghc/dist/"
+ version "/" name "-" version "-src.tar.xz"))
+ (sha256
+ (base32 "1lniqy29djhjkddnailpaqhlqh4ld2mqvb1fxgxw1qqjhz6j1ywh"))))
+ (build-system gnu-build-system)
+ (supported-systems '("i686-linux" "x86_64-linux"))
+ (outputs '("out" "doc"))
+ (inputs
+ `(("gmp" ,gmp)
+ ("ncurses" ,ncurses)
+ ("libffi" ,libffi)
+ ("libedit" ,libedit)
+ ("ghc-testsuite"
+ ,(origin
+ (method url-fetch)
+ (uri (string-append
+ "https://www.haskell.org/ghc/dist/"
+ version "/" name "-" version "-testsuite.tar.xz"))
+ (sha256
+ (base32 "0lc1vjivkxn01aw3jg2gd7fmqb5pj7a5j987c7pn5r7caqv1cmxw"))))))
+ (native-inputs
+ `(("perl" ,perl)
+ ("python" ,python-2) ; for tests
+ ("ghostscript" ,ghostscript) ; for tests
+ ;; GHC is built with GHC.
+ ("ghc-bootstrap" ,ghc)))
+ (arguments
+ `(#:test-target "test"
+ ;; We get a smaller number of test failures by disabling parallel test
+ ;; execution.
+ #:parallel-tests? #f
+
+ ;; The DSOs use $ORIGIN to refer to each other, but (guix build
+ ;; gremlin) doesn't support it yet, so skip this phase.
+ #:validate-runpath? #f
+
+ ;; Don't pass --build=<triplet>, because the configure script
+ ;; auto-detects slightly different triplets for --host and --target and
+ ;; then complains that they don't match.
+ #:build #f
+
+ #:modules ((guix build gnu-build-system)
+ (guix build utils)
+ (guix build rpath)
+ (srfi srfi-26)
+ (srfi srfi-1))
+ #:imported-modules (,@%gnu-build-system-modules
+ (guix build rpath))
+ #:configure-flags
+ (list
+ (string-append "--with-gmp-libraries="
+ (assoc-ref %build-inputs "gmp") "/lib")
+ (string-append "--with-gmp-includes="
+ (assoc-ref %build-inputs "gmp") "/include")
+ "--with-system-libffi"
+ (string-append "--with-ffi-libraries="
+ (assoc-ref %build-inputs "libffi") "/lib")
+ (string-append "--with-ffi-includes="
+ (assoc-ref %build-inputs "libffi") "/include")
+ (string-append "--with-curses-libraries="
+ (assoc-ref %build-inputs "ncurses") "/lib")
+ (string-append "--with-curses-includes="
+ (assoc-ref %build-inputs "ncurses") "/include"))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'unpack-testsuite
+ (lambda* (#:key inputs #:allow-other-keys)
+ (with-directory-excursion ".."
+ (copy-file (assoc-ref inputs "ghc-testsuite")
+ "ghc-testsuite.tar.xz")
+ (zero? (system* "tar" "xvf" "ghc-testsuite.tar.xz")))))
+ (add-before 'build 'fix-lib-paths
+ (lambda _
+ (substitute*
+ (list "libraries/process/System/Process/Posix.hs"
+ "libraries/process/tests/process001.hs"
+ "libraries/process/tests/process002.hs"
+ "libraries/unix/cbits/execvpe.c")
+ (("/bin/sh") (which "sh"))
+ (("/bin/ls") (which "ls")))
+ #t))
+ (add-before 'build 'fix-environment
+ (lambda _
+ (unsetenv "GHC_PACKAGE_PATH")
+ (setenv "CONFIG_SHELL" (which "bash"))
+ #t))
+ (add-before 'check 'fix-testsuite
+ (lambda _
+ (substitute*
+ (list "testsuite/timeout/Makefile"
+ "testsuite/timeout/timeout.py"
+ "testsuite/timeout/timeout.hs"
+ "testsuite/tests/programs/life_space_leak/life.test")
+ (("/bin/sh") (which "sh"))
+ (("/bin/rm") "rm"))
+ #t))
+ ;; the testsuite can't find shared libraries.
+ (add-before 'check 'configure-testsuite
+ (lambda* (#:key inputs #:allow-other-keys)
+ (let* ((gmp (assoc-ref inputs "gmp"))
+ (gmp-lib (string-append gmp "/lib"))
+ (ffi (assoc-ref inputs "libffi"))
+ (ffi-lib (string-append ffi "/lib"))
+ (ncurses (assoc-ref inputs "ncurses"))
+ (ncurses-lib (string-append ncurses "/lib")))
+ (setenv "LD_LIBRARY_PATH"
+ (string-append gmp-lib ":" ffi-lib ":" ncurses-lib))
+ #t))))))
+ (native-search-paths (list (search-path-specification
+ (variable "GHC_PACKAGE_PATH")
+ (files (list
+ (string-append "lib/ghc-" version)))
+ (file-pattern ".*\\.conf\\.d$")
+ (file-type 'directory))))
+ (home-page "https://www.haskell.org/ghc")
+ (synopsis "The Glasgow Haskell Compiler")
+ (description
+ "The Glasgow Haskell Compiler (GHC) is a state-of-the-art compiler and
+interactive environment for the functional language Haskell.")
+ (license license:bsd-3)))
+
(define-public ghc-hostname
(package
(name "ghc-hostname")
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 15/15] gnu: Add GHC 8.0.1.
2016-10-16 15:32 [PATCH 15/15] gnu: Add GHC 8.0.1 Federico Beffa
@ 2016-10-16 17:08 ` Ricardo Wurmus
0 siblings, 0 replies; 2+ messages in thread
From: Ricardo Wurmus @ 2016-10-16 17:08 UTC (permalink / raw)
To: Federico Beffa; +Cc: Guix-devel
Federico Beffa <beffa@ieee.org> writes:
> This is the newest GHC version. I'm adding it as opposed to updating
> the version of the current compiler because it is likely to break some
> of the 240+ libraries that we have and currently I can't commit to fix
> those.
I think this is the right approach. I have a branch in which I’m trying
to upgrade all of our libraries and it’s not straight-forward.
> There is a project https://www.stackage.org/ curating an LTS set of
> libraries playing well together and with a specific compiler version.
> It would probably make sense to sync with their work. They do use YAML
> configuration files. Is there somewhere a YAML library for Guile that
> we could use?
Good idea! This would make it easier to keep our large set of Haskell
libraries up to date and working, an improvement over what we have
today.
~~ Ricardo
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-10-16 17:08 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-16 15:32 [PATCH 15/15] gnu: Add GHC 8.0.1 Federico Beffa
2016-10-16 17:08 ` Ricardo Wurmus
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).