Skip to content
Snippets Groups Projects
Unverified Commit 44df7807 authored by Efraim Flashner's avatar Efraim Flashner
Browse files

gnu: lash: Don't build lashd.

This fixes bug#28174.

* gnu/packages/audio.scm (lash)[arguments]: Add phase to skip building lashd.
parent c7b433de
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment