mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05: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:
parent
e1600546b9
commit
48286d4da4
1 changed files with 9 additions and 1 deletions
|
@ -938,8 +938,16 @@ (define-public gash-utils
|
|||
(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/")
|
||||
|
|
Loading…
Reference in a new issue