diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-06 18:17:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-06 23:16:54 +0300 |
commit | 2d5b779b451dc1f6ca244d7760287c9d5f6f2f7e (patch) | |
tree | 7adbe8b713158ffc0f3661d73e21891aaf7bc2ad | |
parent | 284938bb725db8027561f3a03b3f88b639f07f64 (diff) | |
download | guix-2d5b779b451dc1f6ca244d7760287c9d5f6f2f7e.tar.gz |
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
-rw-r--r-- | gnu/packages/accessibility.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/accessibility.scm b/gnu/packages/accessibility.scm index 1b5fd6db50..50efc48ffe 100644 --- a/gnu/packages/accessibility.scm +++ b/gnu/packages/accessibility.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at> ;;; Copyright © 2018, 2021, 2022 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2019 Andrew Miloradovsky <andrew@interpretmath.pw> -;;; Copyright © 2020, 2023 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2020, 2023, 2024 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2022 Hunter Jozwiak <hunter.t.joz@gmail.com> ;;; Copyright © 2023 Ivan Gankevich <igankevich@capybaramail.xyz> ;;; @@ -359,7 +359,11 @@ CONFIG_SPEAKUP_SOFT=m (method url-fetch) (uri (string-append "mirror://sourceforge/" name "/" name "/v" version "/" name "-v" version ".tar.gz")) - (sha256 (base32 "0cvdkfakw7cix07j0c4iy10fkbqn6n8l1gr5dd3iy4f2d9bkza43")))) + (sha256 (base32 "0cvdkfakw7cix07j0c4iy10fkbqn6n8l1gr5dd3iy4f2d9bkza43")) + (snippet + #~(begin (use-modules (guix build utils)) + (substitute* "Makefile" + (("-D__i386__") "")))))) (build-system gnu-build-system) (arguments `(#:tests? #f ; there are no tests |