guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 10/13] gnu: Add ghc-x11.


From: Siniša Biđin
Subject: [PATCH 10/13] gnu: Add ghc-x11.
Date: Tue, 18 Aug 2015 22:40:12 +0200

* gnu/packages/haskell.scm (ghc-x11): New variable.
---
 gnu/packages/haskell.scm | 35 ++++++++++++++++++++++++++++++++++-
 1 file changed, 34 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 4b011ff..02ffd2a 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -33,7 +33,8 @@
   #:use-module (gnu packages libedit)
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages ncurses)
-  #:use-module (gnu packages python))
+  #:use-module (gnu packages python)
+  #:use-module (gnu packages xorg))
 
 (define ghc-bootstrap-x86_64-7.8.4
   (origin
@@ -530,6 +531,38 @@ for encoding UTF8 strings to Word8 lists and back, and for 
reading and writing
 UTF8 without truncation.")
     (license bsd-3)))
 
+(define-public ghc-x11
+  (package
+    (name "ghc-x11")
+    (version "1.6.1.2")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+              "http://hackage.haskell.org/package/X11/X11-";
+              version
+              ".tar.gz"))
+        (sha256
+          (base32 "1kzjcynm3rr83ihqx2y2d852jc49da4p18gv6jzm7g87z22x85jj"))))
+    (arguments
+     `(#:phases (modify-phases %standard-phases
+                 (add-before 'configure 'set-sh
+                  (lambda _ (setenv "CONFIG_SHELL" "sh"))))))
+    (build-system haskell-build-system)
+    (inputs
+     `(("libx11" ,libx11)
+       ("libxrandr" ,libxrandr)
+       ("libxinerama" ,libxinerama)
+       ("libxscrnsaver" ,libxscrnsaver)))
+    (propagated-inputs
+     `(("ghc-data-default" ,ghc-data-default)))
+    (home-page "https://github.com/haskell-pkg-janitors/X11";)
+    (synopsis "A binding to the X11 graphics library")
+    (description
+      "A Haskell binding to the X11 graphics library. The binding is a direct
+translation of the C binding.")
+    (license bsd-3)))
+
 (define-public ghc-zlib
   (package
     (name "ghc-zlib")
-- 
2.4.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]