me
/
guix
Archived
1
0
Fork 0

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>
master
Vinicius Monego 2021-06-22 09:46:32 -03:00 committed by Guillaume Le Vaillant
parent 347846ea86
commit e22a711c97
No known key found for this signature in database
GPG Key ID: 6BE8208ADF21FE3F
1 changed files with 4 additions and 3 deletions

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