diff options
Diffstat (limited to 'crn/packages/games.scm')
-rw-r--r-- | crn/packages/games.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crn/packages/games.scm b/crn/packages/games.scm index c41106a..a9ba239 100644 --- a/crn/packages/games.scm +++ b/crn/packages/games.scm @@ -1,4 +1,5 @@ (define-module (crn packages games) + #:use-module (crn packages) #:use-module (gnu packages) #:use-module (gnu packages sdl) #:use-module ((guix licenses) #:prefix license:) @@ -18,7 +19,8 @@ (method url-fetch) (uri (string-append "https://www.linux-games.com/" name "/" name "-" version ".tar.gz")) (sha256 - (base32 "1gbkkf05qy6zz0s2v1yyjrhrnw0nxl1ldzm4fdlwi1z4jqda7xlw")))) + (base32 "1gbkkf05qy6zz0s2v1yyjrhrnw0nxl1ldzm4fdlwi1z4jqda7xlw")) + (patches (crn/search-patches "blackbox_c_warnings.patch")))) (build-system gnu-build-system) (arguments `(#:phases @@ -37,3 +39,5 @@ crystals are reflecting the shots. You have to guess where the crystals are hidden, by watching your shots.") (home-page "https://www.linux-games.com/black-box/") (license license:gpl2+))) + +black-box |