mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: uhdm: Update to 1.86.
* gnu/packages/electronics.scm (uhdm): Update to 1.86. [source]: Remove recursive?. [arguments]: Improve style. Change-Id: I5e7033aae6a9c45e48c057c9038218e7ecc2a031 Signed-off-by: Maxim Cournoyer <maxim@guixotic.coop>
This commit is contained in:
parent
31d7e12cd8
commit
8ac9bbbea1
1 changed files with 12 additions and 12 deletions
|
@ -1139,19 +1139,16 @@ verification flows.")
|
||||||
(define-public uhdm
|
(define-public uhdm
|
||||||
(package
|
(package
|
||||||
(name "uhdm")
|
(name "uhdm")
|
||||||
(version "1.84")
|
(version "1.86")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/chipsalliance/UHDM/")
|
(url "https://github.com/chipsalliance/UHDM/")
|
||||||
(commit (string-append "v" version))
|
(commit (string-append "v" version))))
|
||||||
;; avoid submodules, and use guix packages capnproto and
|
|
||||||
;; googletest instead
|
|
||||||
(recursive? #f)))
|
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "06i06wfyymhvmpnw79lgb84l9w9cyydvnr7n3bgmgf8a77jbxk2y"))))
|
(base32 "0nsy385frxz5v7i757h1x59xkl21asz3h2fk1nyvx37z8cj0kd3z"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
|
@ -1162,12 +1159,15 @@ verification flows.")
|
||||||
#:test-target "test"
|
#:test-target "test"
|
||||||
#:make-flags
|
#:make-flags
|
||||||
#~(list
|
#~(list
|
||||||
"ADDITIONAL_CMAKE_OPTIONS=-DUHDM_USE_HOST_CAPNP=On -DUHDM_USE_HOST_GTEST=On"
|
(string-append
|
||||||
(string-append "PREFIX="
|
"ADDITIONAL_CMAKE_OPTIONS=-DUHDM_USE_HOST_CAPNP=On"
|
||||||
#$output))))
|
;; " -DUHDM_WITH_PYTHON=On" ;FIXME
|
||||||
(native-inputs (list cmake-minimal googletest pkg-config python-wrapper
|
" -DUHDM_USE_HOST_GTEST=On")
|
||||||
swig))
|
(string-append "PREFIX=" #$output))))
|
||||||
(inputs (list capnproto openssl python-orderedmultidict zlib))
|
(native-inputs
|
||||||
|
(list cmake-minimal googletest pkg-config python-wrapper swig))
|
||||||
|
(inputs
|
||||||
|
(list capnproto openssl python-orderedmultidict zlib))
|
||||||
(home-page "https://github.com/chipsalliance/UHDM/")
|
(home-page "https://github.com/chipsalliance/UHDM/")
|
||||||
(synopsis "Universal Hardware Data Model")
|
(synopsis "Universal Hardware Data Model")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue