[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
151/154: gnu: Add ghc-sdl-image.
From: |
Paul |
Subject: |
151/154: gnu: Add ghc-sdl-image. |
Date: |
Thu, 22 Oct 2015 17:24:06 +0000 |
toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.
commit 6722052b5190aad31aa47fe10885ca00d2d6e387
Author: Paul van der Walt <address@hidden>
Date: Fri Oct 16 14:56:02 2015 +0200
gnu: Add ghc-sdl-image.
* gnu/packages/haskell.scm (ghc-sdl-image): New variable.
---
gnu/packages/haskell.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 7c21ef7..83ec3f9 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -923,6 +923,44 @@ plus a single channel of music, mixed by the popular
MikMod MOD, Timidity
MIDI, Ogg Vorbis, and SMPEG MP3 libraries.")
(license bsd-3)))
+(define-public ghc-sdl-image
+ (package
+ (name "ghc-sdl-image")
+ (version "0.6.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/SDL-image/SDL-image-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1m02q2426qp8m8pzz2jkk4srk2vb3j3ickiaga5jx9rkkhz732zq"))))
+ (build-system haskell-build-system)
+ (arguments
+ `(#:configure-flags
+ (let* ((sdl-image (assoc-ref %build-inputs "sdl-image"))
+ (sdl-image-include (string-append sdl-image "/include/SDL")))
+ (list (string-append "--extra-include-dirs=" sdl-image-include)))
+ #:phases
+ (modify-phases %standard-phases
+ (add-after
+ 'unpack 'fix-/bin/sh
+ (lambda _
+ ;; Use `sh', not `/bin/sh'.
+ (setenv "CONFIG_SHELL" "sh"))))))
+ (propagated-inputs
+ `(("ghc-sdl" ,ghc-sdl)))
+ (inputs
+ `(("sdl-image" ,sdl-image)))
+ (home-page "http://hackage.haskell.org/package/SDL-image")
+ (synopsis "Haskell bindings to libSDL_image")
+ (description "SDL_image is an image file loading library. It loads images
+as SDL surfaces, and supports the following formats: BMP, GIF, JPEG, LBM, PCX,
+PNG, PNM, TGA, TIFF, XCF, XPM, XV.")
+ (license bsd-3)))
+
(define-public ghc-half
(package
(name "ghc-half")
- 135/154: gnu: Add ghc-alex., (continued)
- 135/154: gnu: Add ghc-alex., Paul, 2015/10/22
- 137/154: gnu: Add ghc-cgi., Paul, 2015/10/22
- 145/154: gnu: Add ghc-gluraw., Paul, 2015/10/22
- 147/154: gnu: Add ghc-opengl., Paul, 2015/10/22
- 140/154: gnu: Add ghc-xhtml., Paul, 2015/10/22
- 142/154: gnu: Add ghc-regex-compat., Paul, 2015/10/22
- 141/154: gnu: Add ghc-regex-posix., Paul, 2015/10/22
- 146/154: gnu: Add ghc-objectname., Paul, 2015/10/22
- 133/154: gnu: Add ghc-haddock-api., Paul, 2015/10/22
- 148/154: gnu: Add ghc-glut., Paul, 2015/10/22
- 151/154: gnu: Add ghc-sdl-image.,
Paul <=
- 139/154: gnu: Add ghc-haskell-src., Paul, 2015/10/22
- 143/154: gnu: Add ghc-half., Paul, 2015/10/22
- 153/154: import: hackage: Update GHC libraries for 7.10.2., Paul, 2015/10/22
- 149/154: gnu: Add ghc-sdl., Paul, 2015/10/22
- 150/154: gnu: Add ghc-sdl-mixer., Paul, 2015/10/22
- 144/154: gnu: Add ghc-openglraw., Paul, 2015/10/22
- 154/154: import: hackage: Fix grammar., Paul, 2015/10/22
- 152/154: gnu: Add Raincat., Paul, 2015/10/22