~ruther/guix-local

46f31546acfe5d2460cfbf588bf405c371462444 — Cayetano Santos 2 months ago 778f5c1
gnu: libngspice: Refresh package.

* gnu/packages/electronics.scm (libngspice): Apply style.

Change-Id: I39ad9700ff21ddad6019a98e54f39fe8ff2f88e3
1 files changed, 19 insertions(+), 10 deletions(-)

M gnu/packages/electronics.scm
M gnu/packages/electronics.scm => gnu/packages/electronics.scm +19 -10
@@ 756,16 756,25 @@ used in the declarative section of design units.")
    (arguments
     (list
      #:tests? #f ;there are no tests for libngspice
      #:phases #~(modify-phases %standard-phases
                   (add-after 'install 'delete-scripts
                     (lambda _
                       (delete-file-recursively
                        (string-append #$output
                                       "/share/ngspice/scripts")))))
      #:configure-flags #~(list "--enable-openmp" "--enable-cider"
                                "--enable-xspice" "--with-ngshared")))
    (native-inputs (list autoconf automake bison flex libtool))
    (inputs (list openmpi))
      #:phases
      #~(modify-phases %standard-phases
          (add-after 'install 'delete-scripts
            (lambda _
              (delete-file-recursively
               (string-append #$output "/share/ngspice/scripts")))))
      #:configure-flags
      #~(list "--enable-openmp"
              "--enable-cider"
              "--enable-xspice"
              "--with-ngshared")))
    (native-inputs
     (list autoconf
           automake
           bison
           flex
           libtool))
    (inputs
     (list openmpi))
    (home-page "https://ngspice.sourceforge.io/")
    (synopsis "Mixed-level/mixed-signal circuit simulator")
    (description