mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: adms: Update to 2.3.7.
* gnu/packages/engineering.scm (adms): Update to 2.3.7. [source]: Change the url to github and use the git-fetch method. [native-inputs]: Add "autoconf", "automake", "libtool", "perl" and "perl-xml-libxml". [home-page]: Use the github page. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
ff128dc633
commit
de4705d92d
1 changed files with 16 additions and 10 deletions
|
@ -20,6 +20,7 @@
|
||||||
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
|
;;; Copyright © 2020 Ekaitz Zarraga <ekaitz@elenq.tech>
|
||||||
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
|
;;; Copyright © 2020 B. Wilson <elaexuotee@wilsonb.com>
|
||||||
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
||||||
|
;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1328,21 +1329,26 @@ (define-public meep
|
||||||
(define-public adms
|
(define-public adms
|
||||||
(package
|
(package
|
||||||
(name "adms")
|
(name "adms")
|
||||||
(version "2.3.6")
|
(version "2.3.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri
|
(uri (git-reference
|
||||||
(string-append
|
(url "https://github.com/Qucs/ADMS")
|
||||||
"mirror://sourceforge/mot-adms/adms-source/"
|
(commit (string-append "release-" version))))
|
||||||
(version-major+minor version) "/adms-" version ".tar.gz"))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1rn98l6jxcjhi6ai5f7p588khra9z80m0m0lql4n4sb7773fh1vk"))))
|
"0i37c9k6q1iglmzp9736rrgsnx7sw8xn3djqbbjw29zsyl3pf62c"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("flex" ,flex)
|
`(("autoconf" ,autoconf)
|
||||||
("bison" ,bison)))
|
("automake" ,automake)
|
||||||
(home-page "https://sourceforge.net/projects/mot-adms")
|
("bison" ,bison)
|
||||||
|
("flex" ,flex)
|
||||||
|
("libtool" ,libtool)
|
||||||
|
("perl" ,perl)
|
||||||
|
("perl-xml-libxml" ,perl-xml-libxml)))
|
||||||
|
(home-page "https://github.com/Qucs/ADMS")
|
||||||
(synopsis "Automatic device model synthesizer")
|
(synopsis "Automatic device model synthesizer")
|
||||||
(description
|
(description
|
||||||
"ADMS is a code generator that converts electrical compact device models
|
"ADMS is a code generator that converts electrical compact device models
|
||||||
|
|
Loading…
Reference in a new issue