diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2025-07-20 13:42:01 -0400 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2025-07-20 13:42:01 -0400 |
commit | fa8310b6048e527e23b3ccd1fecf2d05c03d6aaf (patch) | |
tree | bcbff128f95fadf5da2a4093c709d6f56e4060ef /crn/packages/games.scm | |
parent | 26c6a378a0f4733a4d5d77624eac5cdb192c9a5e (diff) |
add patch (courtesy of Adrian Bunk for debian) to allow black-box
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 |