diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-02-24 21:25:52 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-02-24 21:25:52 +0100 |
commit | aa51eb2073f17e40d660d0beaeb7b1b78aa9e1cc (patch) | |
tree | 5ccb7f83712c4400176a344e537b5fcbbb7047aa /gnu/packages/sdl.scm | |
parent | 1b9eb93a5dd1e90291b614311cd1fb2051e72718 (diff) | |
parent | 6eb35d4a780d37b809a6c8c1794ff227da2fa29d (diff) | |
download | patches-aa51eb2073f17e40d660d0beaeb7b1b78aa9e1cc.tar patches-aa51eb2073f17e40d660d0beaeb7b1b78aa9e1cc.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/sdl.scm')
-rw-r--r-- | gnu/packages/sdl.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gnu/packages/sdl.scm b/gnu/packages/sdl.scm index 74b0625325..7c7b7e7350 100644 --- a/gnu/packages/sdl.scm +++ b/gnu/packages/sdl.scm @@ -7,6 +7,7 @@ ;;; Copyright © 2017, 2018 Rutger Helling <rhelling@mykolab.com> ;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2019 Kei Kebreau <kkebreau@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -350,6 +351,21 @@ directory.") (other other)) (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 (package (inherit sdl-image) (name "sdl2-image") |