mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -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
|
||||
(list readline))
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
`(#:license-file-regexp "copyright.txt"
|
||||
#:tests? #f ; no check target
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
|
@ -98,7 +99,8 @@ (define-public abc
|
|||
(description "ABC is a program for sequential logic synthesis and
|
||||
formal verification.")
|
||||
(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
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue