gnu: sfml: Update to 2.3.2.

* gnu/packages/game-development.scm (sfml): Update to 2.3.2.
  [native-inputs]: Remove.
This commit is contained in:
Ricardo Wurmus 2015-09-20 10:07:00 +02:00
parent d7af106987
commit 7d1b5022e9
1 changed files with 8 additions and 6 deletions

View File

@ -102,19 +102,21 @@ clone.")
(define-public sfml (define-public sfml
(package (package
(name "sfml") (name "sfml")
(version "2.3.1") (version "2.3.2")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "http://mirror0.sfml-dev.org/files/SFML-" ;; Do not fetch the archives from
version "-sources.zip")) ;; http://mirror0.sfml-dev.org/files/ because files there seem
;; to be changed in place.
(uri (string-append "https://github.com/SFML/SFML/archive/"
version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0mjpkgfnz6ka4p0ir219pcqsbdy7gwcjydk7xxmjjfm2k5sw2qys")))) "0k2fl5xk3ni2q8bsxl0551inx26ww3w6cp6hssvww0wfjdjcirsm"))))
(build-system cmake-build-system) (build-system cmake-build-system)
(arguments (arguments
'(#:tests? #f)) ; no tests '(#:tests? #f)) ; no tests
(native-inputs
`(("unzip" ,unzip)))
(inputs (inputs
`(("mesa" ,mesa) `(("mesa" ,mesa)
("glew" ,glew) ("glew" ,glew)