diff options
author | Brice Waegeneire <brice@waegenei.re> | 2020-05-01 14:45:57 +0200 |
---|---|---|
committer | Brice Waegeneire <brice@waegenei.re> | 2020-05-07 11:26:42 +0200 |
commit | febd19daaa857e5e0f633bc5127be1ee737e5847 (patch) | |
tree | cf750ee587cf030ee6578ae599722d99fabd4ec0 /gnu | |
parent | 741d22264734b3c85ef10b47f6a39a474a736070 (diff) |
gnu: usbguard: Use packaged 'pegtl'.
* gnu/packages/hardware.scm (usbguard)[arguments]: Remove configure flag
'--with-bundled-pegtl'.
[inputs]: Add 'pegtl'
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/hardware.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/hardware.scm b/gnu/packages/hardware.scm index ce3f396d0a..74fd282191 100644 --- a/gnu/packages/hardware.scm +++ b/gnu/packages/hardware.scm @@ -24,6 +24,7 @@ #:use-module (gnu packages bash) #:use-module (gnu packages compression) #:use-module (gnu packages check) + #:use-module (gnu packages cpp) #:use-module (gnu packages crypto) #:use-module (gnu packages documentation) #:use-module (gnu packages gcc) @@ -429,7 +430,6 @@ applications.") #:configure-flags (list "--localstatedir=/var" - "--with-bundled-pegtl" "--enable-systemd=no" "--with-ldap" "--with-dbus" @@ -442,6 +442,7 @@ applications.") ("libcap-ng" ,libcap-ng) ("libseccomp" ,libseccomp) ("libsodium" ,libsodium) + ("pegtl" ,pegtl) ("polkit" ,polkit) ("protobuf" ,protobuf) ("libqb" ,libqb))) |