1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

gnu: gash-utils: Fix build.

* gnu/packages/shells.scm (gash-utils)[arguments]: Add ‘skip-failing-tests’
phase.
[native-inputs]: Add autoconf and automake.
This commit is contained in:
Liliana Marie Prikler
2023-10-06 10:00:16 +02:00
parent e1600546b9
commit 48286d4da4

View File

@@ -938,8 +938,16 @@ as part of the Guix bootstrap process.")
(base32
"18ylb54l9lmaynapbncc1zhbsirhihznrxihhxgqrpqgyjkfbap6"))))
(build-system gnu-build-system)
(arguments
(list
#:phases #~(modify-phases %standard-phases
(add-after 'unpack 'skip-failing-tests
(lambda _
(substitute* "Makefile.am"
(("tests/sort\\.org") ""))
(for-each delete-file '("configure" "Makefile.in")))))))
(native-inputs
(list pkg-config))
(list autoconf automake pkg-config))
(inputs
(list guile-3.0 gash))
(home-page "https://savannah.nongnu.org/projects/gash/")