summaryrefslogtreecommitdiff
path: root/gnu/packages/accessibility.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2024-05-06 18:17:02 +0300
committerEfraim Flashner <efraim@flashner.co.il>2024-05-06 23:16:54 +0300
commit2d5b779b451dc1f6ca244d7760287c9d5f6f2f7e (patch)
tree7adbe8b713158ffc0f3661d73e21891aaf7bc2ad /gnu/packages/accessibility.scm
parent284938bb725db8027561f3a03b3f88b639f07f64 (diff)
gnu: mouseloupe: Don't hardcode building for i686.
* gnu/packages/accessibility.scm (mouseloupe)[source]: Add snippet to remove flag from the Makefile explicitly building for i686. Change-Id: Iec5a5002a51ff7f2be469f6815e6ff6166b32876
Diffstat (limited to 'gnu/packages/accessibility.scm')
-rw-r--r--gnu/packages/accessibility.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/accessibility.scm b/gnu/packages/accessibility.scm
index 1b5fd6db50d..50efc48ffee 100644
--- a/gnu/packages/accessibility.scm
+++ b/gnu/packages/accessibility.scm
@@ -3,7 +3,7 @@
3;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at> 3;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
4;;; Copyright © 2018, 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr> 4;;; Copyright © 2018, 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr>
5;;; Copyright © 2019 Andrew Miloradovsky <andrew@interpretmath.pw> 5;;; Copyright © 2019 Andrew Miloradovsky <andrew@interpretmath.pw>
6;;; Copyright © 2020, 2023 Efraim Flashner <efraim@flashner.co.il> 6;;; Copyright © 2020, 2023, 2024 Efraim Flashner <efraim@flashner.co.il>
7;;; Copyright © 2022 Hunter Jozwiak <hunter.t.joz@gmail.com> 7;;; Copyright © 2022 Hunter Jozwiak <hunter.t.joz@gmail.com>
8;;; Copyright © 2023 Ivan Gankevich <igankevich@capybaramail.xyz> 8;;; Copyright © 2023 Ivan Gankevich <igankevich@capybaramail.xyz>
9;;; 9;;;
@@ -359,7 +359,11 @@ CONFIG_SPEAKUP_SOFT=m
359 (method url-fetch) 359 (method url-fetch)
360 (uri (string-append "mirror://sourceforge/" name "/" name "/v" version 360 (uri (string-append "mirror://sourceforge/" name "/" name "/v" version
361 "/" name "-v" version ".tar.gz")) 361 "/" name "-v" version ".tar.gz"))
362 (sha256 (base32 "0cvdkfakw7cix07j0c4iy10fkbqn6n8l1gr5dd3iy4f2d9bkza43")))) 362 (sha256 (base32 "0cvdkfakw7cix07j0c4iy10fkbqn6n8l1gr5dd3iy4f2d9bkza43"))
363 (snippet
364 #~(begin (use-modules (guix build utils))
365 (substitute* "Makefile"
366 (("-D__i386__") ""))))))
363 (build-system gnu-build-system) 367 (build-system gnu-build-system)
364 (arguments 368 (arguments
365 `(#:tests? #f ; there are no tests 369 `(#:tests? #f ; there are no tests