mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: ngspice: Improve style.
* gnu/packages/engineering.scm (libngspice)[source]: Switch to git-fetch. [native-inputs]: Add autoconf, automake and libtool. [home-page]: Correct. * gnu/packages/engineering.scm (ngspice)[native-inputs]: Inherit from libngspice. Change-Id: I30d767e10a8e4612d3ba705ac470d7f7fc41a1c7 Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
This commit is contained in:
parent
8bb7145467
commit
495a8de637
1 changed files with 11 additions and 11 deletions
|
@ -2416,15 +2416,13 @@ high-performance parallel differential evolution (DE) optimization algorithm.")
|
||||||
(version "44.2")
|
(version "44.2")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (list (string-append
|
(uri (git-reference
|
||||||
"mirror://sourceforge/ngspice/ng-spice-rework/" version
|
(url "https://git.code.sf.net/p/ngspice/ngspice")
|
||||||
"/ngspice-" version ".tar.gz")
|
(commit (string-append "ngspice-" version))))
|
||||||
(string-append
|
(file-name (git-file-name name version))
|
||||||
"mirror://sourceforge/ngspice/ng-spice-rework/"
|
|
||||||
"old-releases/" version "/ngspice-" version ".tar.gz")))
|
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1zfpj09vqjamgkhnipwpwmvrzhfymikml7lw80igsx2lpnvxznp7"))))
|
(base32 "1vp27149kx8l7397bv5p708jqph1kma8rb9bl7ckgmbr9sw9cn3q"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -2437,9 +2435,9 @@ high-performance parallel differential evolution (DE) optimization algorithm.")
|
||||||
"/share/ngspice/scripts")))))
|
"/share/ngspice/scripts")))))
|
||||||
#:configure-flags #~(list "--enable-openmp" "--enable-cider"
|
#:configure-flags #~(list "--enable-openmp" "--enable-cider"
|
||||||
"--enable-xspice" "--with-ngshared")))
|
"--enable-xspice" "--with-ngshared")))
|
||||||
(native-inputs (list bison flex))
|
(native-inputs (list autoconf automake bison flex libtool))
|
||||||
(inputs (list openmpi))
|
(inputs (list openmpi))
|
||||||
(home-page "https://ngspice.sourceforge.net/")
|
(home-page "https://ngspice.sourceforge.io/")
|
||||||
(synopsis "Mixed-level/mixed-signal circuit simulator")
|
(synopsis "Mixed-level/mixed-signal circuit simulator")
|
||||||
(description
|
(description
|
||||||
"Ngspice is a mixed-level/mixed-signal circuit simulator. It includes
|
"Ngspice is a mixed-level/mixed-signal circuit simulator. It includes
|
||||||
|
@ -2465,7 +2463,9 @@ an embedded event driven algorithm.")
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
#~(modify-phases #$phases
|
#~(modify-phases #$phases
|
||||||
(delete 'delete-scripts)))))
|
(delete 'delete-scripts)))))
|
||||||
(native-inputs (list perl))
|
(native-inputs
|
||||||
|
(modify-inputs (package-native-inputs libngspice)
|
||||||
|
(append perl)))
|
||||||
(inputs (list libngspice readline libxaw libx11))))
|
(inputs (list libngspice readline libxaw libx11))))
|
||||||
|
|
||||||
(define trilinos-serial-xyce
|
(define trilinos-serial-xyce
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue