mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add pcb-rnd.
* gnu/packages/engineering.scm (pcb-rnd): New variable.
This commit is contained in:
parent
b02b9a520e
commit
49c2665f7b
1 changed files with 27 additions and 0 deletions
|
@ -218,6 +218,33 @@ (define-public pcb
|
||||||
optimizer; and it can produce photorealistic and design review images.")
|
optimizer; and it can produce photorealistic and design review images.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public pcb-rnd
|
||||||
|
(package (inherit pcb)
|
||||||
|
(name "pcb-rnd")
|
||||||
|
(version "1.1.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://repo.hu/projects/pcb-rnd/releases/"
|
||||||
|
"pcb-rnd-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0pycynla60b96jkb6fh6f4sx663pqbzjwnixhw5ym8sym2absm09"))))
|
||||||
|
(arguments
|
||||||
|
`(#:tests? #f ; no check target
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'cc-is-gcc
|
||||||
|
(lambda _ (setenv "CC" "gcc") #t))
|
||||||
|
(replace 'configure
|
||||||
|
;; The configure script doesn't tolerate most of our configure flags.
|
||||||
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
(zero? (system* "sh" "configure"
|
||||||
|
(string-append "--prefix="
|
||||||
|
(assoc-ref outputs "out")))))))))
|
||||||
|
(home-page "http://repo.hu/projects/pcb-rnd/")
|
||||||
|
(description "PCB RND is a fork of the GNU PCB circuit board editing tool
|
||||||
|
featuring various improvements and bug fixes.")))
|
||||||
|
|
||||||
(define-public fastcap
|
(define-public fastcap
|
||||||
(package
|
(package
|
||||||
(name "fastcap")
|
(name "fastcap")
|
||||||
|
|
Loading…
Reference in a new issue