mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: abc: Convey license information.
* gnu/packages/fpga.scm (abc)[arguments]: Add #:license-file-regexp so license information is included in package output. [license]: Specify URI of actual package license. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
e4f39ace86
commit
c10238966e
1 changed files with 4 additions and 2 deletions
|
@ -84,7 +84,8 @@ (define-public abc
|
||||||
(inputs
|
(inputs
|
||||||
(list readline))
|
(list readline))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no check target
|
`(#:license-file-regexp "copyright.txt"
|
||||||
|
#:tests? #f ; no check target
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(delete 'configure)
|
(delete 'configure)
|
||||||
|
@ -98,7 +99,8 @@ (define-public abc
|
||||||
(description "ABC is a program for sequential logic synthesis and
|
(description "ABC is a program for sequential logic synthesis and
|
||||||
formal verification.")
|
formal verification.")
|
||||||
(license
|
(license
|
||||||
(license:non-copyleft "https://fedoraproject.org/wiki/Licensing:MIT#Modern_Variants")))))
|
(license:non-copyleft
|
||||||
|
"https://people.eecs.berkeley.edu/~alanmi/abc/copyright.htm")))))
|
||||||
|
|
||||||
(define-public iverilog
|
(define-public iverilog
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue