1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-06 09:15:54 +02:00

gnu: libngspice: Fix KiCad compilation.

* gnu/packages/engineering.scm (libngspice)[arguments]<#:configure-flags>:
  Pass "--with-readline=no".
  [inputs]: Remove readline.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
Vinicius Monego
2021-06-22 09:46:32 -03:00
committed by Guillaume Le Vaillant
parent 347846ea86
commit e22a711c97
+4 -3
View File
@@ -1721,14 +1721,15 @@ high-performance parallel differential evolution (DE) optimization algorithm.")
"--enable-ciderlib"
"--enable-xspice"
"--with-ngshared"
"--with-readline=yes")))
;; Readline must be disabled to build KiCad with ngspice 34. See
;; https://bugs.archlinux.org/task/70563 for reference.
"--with-readline=no")))
(native-inputs
`(("bison" ,bison)
("flex" ,flex)))
(inputs
`(("libxaw" ,libxaw)
("mpi" ,openmpi)
("readline" ,readline)))
("mpi" ,openmpi)))
(home-page "http://ngspice.sourceforge.net/")
(synopsis "Mixed-level/mixed-signal circuit simulator")
(description