diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-10 14:02:20 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-10 14:04:28 +0100 |
commit | d7764d42e4dac020c1428b5b44a3af7a7f0580f3 (patch) | |
tree | 90c654d35d76b597a86a36583b7abab0fb6b075c | |
parent | 8ada024ba69c6e8f72c69461c2322cddad88921b (diff) | |
download | guix-d7764d42e4dac020c1428b5b44a3af7a7f0580f3.tar.gz guix-d7764d42e4dac020c1428b5b44a3af7a7f0580f3.zip |
gnu: Add libsmpeg-with-sdl1.
* gnu/packages/video.scm (libsmpeg-with-sdl1): New variable.
(libsmpeg)[version]: Change to 0.4.5-401.
-rw-r--r-- | gnu/packages/video.scm | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index f67b235596..d5dc3d29e1 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com> ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2015 Andy Patterson <ajpatter@uwaterloo.ca> -;;; Copyright © 2015, 2018 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015, 2018, 2019 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Alex Vong <alexvong1995@gmail.com> ;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2016 Kei Kebreau <kkebreau@posteo.net> @@ -2398,7 +2398,7 @@ Other features include a live preview and live streaming.") (define-public libsmpeg (package (name "libsmpeg") - (version "0.4.5") + (version "0.4.5-401") (source (origin (method svn-fetch) (uri (svn-reference @@ -2433,6 +2433,23 @@ and MPEG system streams.") license:lgpl2.1+ license:gpl2)))) +;; for btanks +(define-public libsmpeg-with-sdl1 + (package (inherit libsmpeg) + (name "libsmpeg") + (version "0.4.5-399") + (source (origin + (method svn-fetch) + (uri (svn-reference + (url "svn://svn.icculus.org/smpeg/trunk/") + (revision 399))) ; tagged release 0.4.5 + (file-name (string-append name "-" version "-checkout")) + (sha256 + (base32 + "0jfi085rf3fa5xsn0vd3nqf32my8ph9c6a9445y7a8lrlz4dms64")))) + (inputs + `(("sdl" ,sdl))))) + (define-public libbdplus (package (name "libbdplus") |