[PATCH] gnu: iverilog: Add zlib dependency for LXT format support

  • Done
  • quality assurance status badge
Details
2 participants
  • Christian Gelinek
  • Efraim Flashner
Owner
unassigned
Submitted by
Christian Gelinek
Severity
normal
C
C
Christian Gelinek wrote on 31 Mar 2022 07:09
(address . guix-patches@gnu.org)
eb40ba2e-2a0a-b248-0c92-9e7ffb5425b3@radlogic.com.au
Hi Guix,

I noticed that the iverilog package didn't have support for the LXT
dumpfile format due to missing zlib dependency, which I'm trying to fix.

This is my first patch, so please let me know if there's anything I
should improve.

Thanks, Christian
From a4191d76a64618589d83c678ec804dca37579801 Mon Sep 17 00:00:00 2001
From: Christian Gelinek <cgelinek@radlogic.com.au>
Date: Thu, 31 Mar 2022 15:19:38 +1030
Subject: [PATCH] gnu: iverilog: Add zlib dependency for LXT dump file format
support.

* gnu/packages/fpga.scm (iverilog)[native-inputs]: Add zlib.
---
gnu/packages/fpga.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Toggle diff (23 lines)
diff --git a/gnu/packages/fpga.scm b/gnu/packages/fpga.scm
index 3b2938aff0..b8f98ca63e 100644
--- a/gnu/packages/fpga.scm
+++ b/gnu/packages/fpga.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2019 Amin Bandali <bandali@gnu.org>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2021 Andrew Miloradovsky <andrew@interpretmath.pw>
+;;; Copyright © 2022 Christian Gelinek <cgelinek@radlogic.com.au>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -111,7 +112,7 @@ (define-public iverilog
(arguments
`(#:make-flags (list (string-append "CC=" ,(cc-for-target)))))
(native-inputs
- (list flex bison ghostscript)) ; ps2pdf
+ (list flex bison ghostscript zlib)) ; ps2pdf
(home-page "http://iverilog.icarus.com/")
(synopsis "FPGA Verilog simulation and synthesis tool")
(description "Icarus Verilog is a Verilog simulation and synthesis tool.
--
2.34.0
E
E
Efraim Flashner wrote on 31 Mar 2022 17:25
(name . Christian Gelinek)(address . cgelinek@radlogic.com.au)(address . 54647-done@debbugs.gnu.org)
YkXHzal6UqdyMo5U@3900XT
Patch pushed. Thanks.

--
Efraim Flashner <efraim@flashner.co.il> ????? ?????
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
-----BEGIN PGP SIGNATURE-----

iQIzBAABCgAdFiEEoov0DD5VE3JmLRT3Qarn3Mo9g1EFAmJFx8wACgkQQarn3Mo9
g1GYrBAAl3Jt66o2y/W5e+zZqalpv3d+ZpwQ5xeFJXVejJ4rd9v1QMJKSqBjqLQL
qKPu+U9Gqpgq2/Y6GpCmyURVFQXF9KiwDAGj8RgYOK4dC0yCRCN+Hx7tBSt9y8ov
BVSqjw5xp/Yeo8elTo+ZwUrN5bffSdQnWtDsQ/Ydtb7wuXGMdoTPnxw+73m4RwLf
vAU+ujPtwb45q8+76TvyH6p7rAizABgq2yQjgdYILV/IpNJs19mGklkpW/VCD5r6
2COTpCA7rf61ttBEJD8jSRrdQ9agOuC2adZml/rpG9BpCzmsPhByNb5EyL26q++v
VlxOY8xbMU956SefbCGYKPdE5p120brxQdEdHn0lnuqHZOunnUIRaAP15jls2Y+n
Mq3mx+8CgjWNNcRReEtVhSU04P32vDJZjgCnXRdrMLx6+/JRC33K/Ye9B9zL9gVF
kFnjU0A7zvQ9UJOzMZ9McesI4OCN5Y7ll0FtdNDgQZmXKWRXnT4MyTrcutX5lOPN
CPZZFp2vtXDAEwqOQ2iRy3aaM4dGBUb6vIrBwsWvYNOKIKyzcPem+efgLfw6Jn5m
fk6/1jSbJP0J3gZFnzC0lLFuWCxAKkgWX8XVoIvh39jsow3bU2A62I/YLOpeTvLz
REQXoUYmd2IlH5tsZF2w+TgnKRh/BvzzFytQvv+Ex+nhaMzaKos=
=xk5K
-----END PGP SIGNATURE-----


Closed
?