mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ghc-sdl-image.
* gnu/packages/haskell.scm (ghc-sdl-image): New variable.
This commit is contained in:
parent
224a0ddbd9
commit
c783cac070
1 changed files with 38 additions and 0 deletions
|
@ -923,6 +923,44 @@ (define-public ghc-sdl-mixer
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue