gnu: Add sdl2-gfx.
* gnu/packages/sdl.scm (sdl2-gfx): New variable.
This commit is contained in:
parent
2a1ec7bcf4
commit
a95b2732ca
|
@ -7,6 +7,7 @@
|
||||||
;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
|
;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com>
|
||||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
|
||||||
|
;;; Copyright © 2019 Kei Kebreau <kkebreau@posteo.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -348,6 +349,21 @@ directory.")
|
||||||
(other other))
|
(other other))
|
||||||
(package-propagated-inputs package)))
|
(package-propagated-inputs package)))
|
||||||
|
|
||||||
|
(define-public sdl2-gfx
|
||||||
|
(package (inherit sdl-gfx)
|
||||||
|
(name "sdl2-gfx")
|
||||||
|
(version "1.0.4")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri
|
||||||
|
(string-append "https://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0qk2ax7f7grlxb13ba0ll3zlm8780s7j8fmrhlpxzjgdvldf1q33"))))
|
||||||
|
(propagated-inputs
|
||||||
|
(propagated-inputs-with-sdl2 sdl-gfx))))
|
||||||
|
|
||||||
(define-public sdl2-image
|
(define-public sdl2-image
|
||||||
(package (inherit sdl-image)
|
(package (inherit sdl-image)
|
||||||
(name "sdl2-image")
|
(name "sdl2-image")
|
||||||
|
|
Loading…
Reference in New Issue