mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -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
|
||||
"12z1vx3krrzsfccpah9xjs68900xvr7bw92wx8np5871i2yv47iw"))))
|
||||
(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
|
||||
`(("bdb" ,bdb)
|
||||
("gtk" ,gtk+-2)
|
||||
|
|
Loading…
Reference in a new issue