mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add osvvm-2023.04.
* gnu/packages/electronics.scm (osvvm-2023.04): New variable. Change-Id: I3a440010366bcf29a6995edb34cdbdb092a7ed11 Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
This commit is contained in:
parent
3cc286dee7
commit
7972e721be
1 changed files with 24 additions and 0 deletions
|
@ -1219,6 +1219,30 @@ library, scripting API, and co-simulation capability for FPGA or ASIC
|
|||
verification.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
;;; Required by python-vunit.
|
||||
(define osvvm-2023.04
|
||||
(package
|
||||
(inherit osvvm)
|
||||
(name "osvvm")
|
||||
(version "2023.04")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/osvvm/OsvvmLibraries/")
|
||||
(commit version)
|
||||
;; OsvvmLibraries repository gathers all osvvm libraries as
|
||||
;; submodules.
|
||||
(recursive? #t)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1kn18ibvm7bzdyw2d914284wriravyh5qwfarj06pb052x1yblyx"))))
|
||||
(arguments
|
||||
(substitute-keyword-arguments (package-arguments osvvm)
|
||||
((#:phases phases #~%standard-phases)
|
||||
#~(modify-phases #$phases
|
||||
(delete 'fix-scripts)))))))
|
||||
|
||||
(define-public python-cocotb
|
||||
(package
|
||||
(name "python-cocotb")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue