diff options
Diffstat (limited to 'guix.scm')
-rw-r--r-- | guix.scm | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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") |