mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: lash: Don't build lashd.
This fixes bug#28174. * gnu/packages/audio.scm (lash)[arguments]: Add phase to skip building lashd.
This commit is contained in:
parent
c7b433de47
commit
44df780768
1 changed files with 9 additions and 0 deletions
|
@ -1509,6 +1509,15 @@ (define-public lash
|
||||||
(base32
|
(base32
|
||||||
"12z1vx3krrzsfccpah9xjs68900xvr7bw92wx8np5871i2yv47iw"))))
|
"12z1vx3krrzsfccpah9xjs68900xvr7bw92wx8np5871i2yv47iw"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; lashd embeds an ancient version of sigsegv so we just skip it
|
||||||
|
(add-after 'unpack 'skip-lashd
|
||||||
|
(lambda _
|
||||||
|
(substitute* '("Makefile.am" "Makefile.in")
|
||||||
|
(("lashd ") ""))
|
||||||
|
#t)))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("bdb" ,bdb)
|
`(("bdb" ,bdb)
|
||||||
("gtk" ,gtk+-2)
|
("gtk" ,gtk+-2)
|
||||||
|
|
Loading…
Reference in a new issue