mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add ghc-sdl2-gfx.
* gnu/packages/haskell-xyz.scm (ghc-sdl2-gfx): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
f0c5f6eda1
commit
045361dd05
1 changed files with 21 additions and 0 deletions
|
@ -10444,6 +10444,27 @@ (define-public ghc-sdl2-ttf
|
|||
library.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-sdl2-gfx
|
||||
(package
|
||||
(name "ghc-sdl2-gfx")
|
||||
(version "0.3.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (hackage-uri "sdl2-gfx" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0r9m54ffkp1dv2ffz9i9318qhvpinc76iih7vg1dwq3siwgpxaxw"))))
|
||||
(build-system haskell-build-system)
|
||||
(properties '((upstream-name . "sdl2-gfx")))
|
||||
(inputs (list ghc-lifted-base ghc-monad-control ghc-sdl2 ghc-vector sdl2-gfx))
|
||||
(native-inputs (list pkg-config))
|
||||
(home-page "http://hackage.haskell.org/package/sdl2-gfx")
|
||||
(synopsis "Haskell bindings to SDL2_gfx")
|
||||
(description
|
||||
"This package provides Haskell bindings to the SDL2_gfx graphics
|
||||
library.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ghc-sdl-image
|
||||
(package
|
||||
(name "ghc-sdl-image")
|
||||
|
|
Loading…
Reference in a new issue