mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: abc: Use gexps.
* gnu/packages/fpga.scm (abc)[arguments]: Use gexps; simplify "install" phase. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c10238966e
commit
79240b4b4e
1 changed files with 8 additions and 10 deletions
|
@ -84,16 +84,14 @@ (define-public abc
|
|||
(inputs
|
||||
(list readline))
|
||||
(arguments
|
||||
`(#:license-file-regexp "copyright.txt"
|
||||
#:tests? #f ; no check target
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(out-bin (string-append out "/bin")))
|
||||
(install-file "abc" out-bin)))))))
|
||||
(list #:license-file-regexp "copyright.txt"
|
||||
#:tests? #f ; no check target
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(install-file "abc" (string-append #$output "/bin")))))))
|
||||
(home-page "https://people.eecs.berkeley.edu/~alanmi/abc/")
|
||||
(synopsis "Sequential logic synthesis and formal verification")
|
||||
(description "ABC is a program for sequential logic synthesis and
|
||||
|
|
Loading…
Reference in a new issue