guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 7bd9285dcf6d706ed54f262e4fa7d6e39ae10370
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Feb 10 10:52:13 2026 +0100
gnu: json-for-vhdl: Fix paths.
* gnu/packages/electronics.scm (json-for-vhdl)[arguments]:
Update #:install-plan.
[native-search-paths]: Add.
Change-Id: If3e294c5dd4f2cd7c8c6fac7b30a50b63f491731
---
gnu/packages/electronics.scm | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/electronics.scm b/gnu/packages/electronics.scm
index b06891117a..42127a2f3d 100644
--- a/gnu/packages/electronics.scm
+++ b/gnu/packages/electronics.scm
@@ -809,7 +809,7 @@ files.")
(arguments
(list
#:install-plan
- #~'(("src" "share/json-for-vhdl"
+ #~'(("src" "share/json-for-vhdl/work/src"
#:include ("vhdl")))
#:phases
#~(modify-phases %standard-phases
@@ -819,6 +819,11 @@ files.")
(substitute* "tests/VUnit/run.py"
(("from_argv\\(\\)")
"from_argv()\nvu.add_vhdl_builtins()")))))))
+ (native-search-paths
+ (list (search-path-specification
+ (variable "FW_JSON_VHDL")
+ (separator #f)
+ (files (list "share/json-for-vhdl")))))
(home-page "https://github.com/Paebbels/JSON-for-VHDL/")
(synopsis "Parse and query JSON data structures in VHDL")
(description