summaryrefslogtreecommitdiff
path: root/guix.scm
diff options
context:
space:
mode:
Diffstat (limited to 'guix.scm')
-rw-r--r--guix.scm5
1 files changed, 4 insertions, 1 deletions
diff --git a/guix.scm b/guix.scm
index 0d8b954..557a6a1 100644
--- a/guix.scm
+++ b/guix.scm
@@ -1,5 +1,6 @@
;;; guile-websocket --- WebSocket client/server
;;; Copyright © 2015 David Thompson <davet@gnu.org>
+;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>;;;
;;;
;;; This file is part of guile-websocket.
;;;
@@ -39,6 +40,7 @@
(guix build-system gnu)
(gnu packages)
(gnu packages autotools)
+ (gnu packages pkg-config)
(gnu packages guile))
(package
@@ -61,7 +63,8 @@
(lambda _ (zero? (system* "sh" "bootstrap")))))))
(native-inputs
`(("autoconf" ,autoconf)
- ("automake" ,automake)))
+ ("automake" ,automake)
+ ("pkg-config" ,pkg-config)))
(inputs
`(("guile" ,guile-2.0)))
(synopsis "Websocket server/client for Guile")