[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64066] [PATCH 18/19] gnu: Add ghc-reflex-sdl2
From: |
zamfofex |
Subject: |
[bug#64066] [PATCH 18/19] gnu: Add ghc-reflex-sdl2 |
Date: |
Wed, 14 Jun 2023 09:48:58 -0300 |
* gnu/packages/haskell-xyz.scm (ghc-reflex-sdl2): New variable.
---
gnu/packages/haskell-xyz.scm | 37 ++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 9e0137cd8c..7065fd6bb2 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -9779,6 +9779,43 @@ (define-public ghc-reflex
. <https://reflex-frp.org>")
(license license:bsd-3)))
+(define-public ghc-reflex-sdl2
+ (let ((commit "6dadf2c4f383b8a58fcd73616996b219c4f93972")
+ (revision "1"))
+ (package
+ (name "ghc-reflex-sdl2")
+ (version (git-version "0.3.0.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/schell/reflex-sdl2")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "06lxfgp18l1car6wd07mbjn4yblnp89acf1i67nd815p2hx0ihbz"))))
+ (build-system haskell-build-system)
+ (properties '((upstream-name . "reflex-sdl2")))
+ (inputs (list ghc-async
+ ghc-dependent-sum
+ ghc-exception-transformers
+ ghc-ref-tf
+ ghc-primitive
+ ghc-reflex
+ ghc-sdl2))
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (add-before 'configure 'update-constraints
+ (lambda _
+ (substitute* "reflex-sdl2.cabal"
+ (("\\bref-tf +>= 0\\.4 +&& < 0\\.5\\b") "ref-tf")))))))
+ (home-page "https://github.com/schell/reflex-sdl2")
+ (synopsis "SDL2 and reflex FRP")
+ (description
+ "This package provides a minimal host for sdl2 based reflex apps.")
+ (license license:expat))))
+
(define-public ghc-regex
(package
(name "ghc-regex")
--
2.40.1
- [bug#64066] [PATCH 04/19] gnu: Add ghc-indexed-profunctors, (continued)
- [bug#64066] [PATCH 04/19] gnu: Add ghc-indexed-profunctors, zamfofex, 2023/06/14
- [bug#64066] [PATCH 08/19] gnu: Add ghc-sdl2-ttf, zamfofex, 2023/06/14
- [bug#64066] [PATCH 10/19] gnu: Add ghc-exception-transformers, zamfofex, 2023/06/14
- [bug#64066] [PATCH 06/19] gnu: Add ghc-generic-lens, zamfofex, 2023/06/14
- [bug#64066] [PATCH 09/19] gnu: Add ghc-sdl2-gfx, zamfofex, 2023/06/14
- [bug#64066] [PATCH 11/19] gnu: Add ghc-commutative-semigroup, zamfofex, 2023/06/14
- [bug#64066] [PATCH 14/19] gnu: Add ghc-prim-uniq, zamfofex, 2023/06/14
- [bug#64066] [PATCH 19/19] gnu: Add Plunder, zamfofex, 2023/06/14
- [bug#64066] [PATCH 12/19] gnu: Add ghc-dependent-sum, zamfofex, 2023/06/14
- [bug#64066] [PATCH 16/19] gnu: Add ghc-ref-tf, zamfofex, 2023/06/14
- [bug#64066] [PATCH 18/19] gnu: Add ghc-reflex-sdl2,
zamfofex <=
- [bug#64066] [PATCH 17/19] gnu: Add ghc-reflex, zamfofex, 2023/06/14
- [bug#64066] [PATCH 13/19] gnu: Add ghc-dependent-map, zamfofex, 2023/06/14
- [bug#64066] [PATCH 15/19] gnu: Add ghc-patch, zamfofex, 2023/06/14
- [bug#64066] [PATCH 00/19] Add Plunder, Liliana Marie Prikler, 2023/06/14