aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher R. Nelson <christopher.nelson@languidnights.com>2023-06-20 14:24:02 -0400
committerChristopher R. Nelson <christopher.nelson@languidnights.com>2023-06-20 14:24:02 -0400
commit2f84ed3f877d97d2327f526ccbe981a6fe3acade (patch)
treecaf998ca3ebd5f19687605df9f1f990a23005a05
parent56405829f2f9f2adadb42135ffaec37725759b57 (diff)
fix: correct syntax in guix package definitions
-rw-r--r--guix.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/guix.scm b/guix.scm
index 210b1ed..cf15d0e 100644
--- a/guix.scm
+++ b/guix.scm
@@ -8,6 +8,7 @@
(gnu packages autotools)
(gnu packages guile)
(gnu packages guile-xyz)
+ (gnu packages networking)
(gnu packages pkg-config)
(gnu packages texinfo)
(srfi srfi-1))
@@ -30,9 +31,8 @@
(native-inputs
(list autoconf automake pkg-config texinfo))
(inputs (list guile-3.0 guile-json guile-config guile-simple-zmq))
- (propagated-inputs (list zeromq)
+ (propagated-inputs (list zeromq))
(synopsis "")
(description "")
(home-page "")
(license license:agpl3+))
-