diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2023-06-20 14:24:02 -0400 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2023-06-20 14:24:02 -0400 |
commit | 2f84ed3f877d97d2327f526ccbe981a6fe3acade (patch) | |
tree | caf998ca3ebd5f19687605df9f1f990a23005a05 /guix.scm | |
parent | 56405829f2f9f2adadb42135ffaec37725759b57 (diff) |
fix: correct syntax in guix package definitions
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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+)) - |