diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-04-26 20:37:51 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2023-04-26 20:52:32 +0200 |
commit | d7e489d6e06a9eb6015c47df8085d7762397d849 (patch) | |
tree | 2bed68371b4742d2caa7412075077746b0b17fcf /gnu/packages/games.scm | |
parent | e86851ccb3df1e87efca7138ee8d055a30832a4e (diff) | |
download | guix-d7e489d6e06a9eb6015c47df8085d7762397d849.tar.gz |
gnu: gnome-2048: Fix build.
* gnu/packages/patches/gnome-2048-fix-positional-argument.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it here. * gnu/packages/games.scm (gnome-2048)[source]<patches>: Use it here.
Diffstat (limited to 'gnu/packages/games.scm')
-rw-r--r-- | gnu/packages/games.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm index 6f4900a6fc..3391c141e4 100644 --- a/gnu/packages/games.scm +++ b/gnu/packages/games.scm @@ -1835,7 +1835,9 @@ destroying an ancient book using a special wand.") "gnome-2048-" version ".tar.xz")) (sha256 (base32 - "0s5fg4z5in1h39fcr69j1qc5ynmg7a8mfprk3mc3c0csq3snfwz2")))) + "0s5fg4z5in1h39fcr69j1qc5ynmg7a8mfprk3mc3c0csq3snfwz2")) + (patches + (search-patches "gnome-2048-fix-positional-argument.patch")))) (build-system meson-build-system) (arguments `(#:glib-or-gtk? #t |