From 8394619baceb118df92e355377fd543bb1aa501a Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Mon, 13 Dec 2021 17:18:24 +0100 Subject: gnu: Simplify package inputs. This commit was obtained by running: ./pre-inst-env guix style without any additional argument. --- gnu/packages/lighting.scm | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'gnu/packages/lighting.scm') diff --git a/gnu/packages/lighting.scm b/gnu/packages/lighting.scm index 4718795a8a..5850da84d8 100644 --- a/gnu/packages/lighting.scm +++ b/gnu/packages/lighting.scm @@ -54,15 +54,14 @@ (file-name (git-file-name name version)))) (build-system gnu-build-system) (native-inputs - `(("bison" ,bison) - ("cppunit" ,cppunit) - ("flex" ,flex) - ("pkg-config" ,pkg-config) - - ;; For git repository bootstrapping. - ("autoconf" ,autoconf) - ("automake" ,automake) - ("libtool" ,libtool))) + (list bison + cppunit + flex + pkg-config + ;; For git repository bootstrapping. + autoconf + automake + libtool)) (inputs `(("libftdi" ,libftdi) ("libmicrohttpd" ,libmicrohttpd) @@ -70,7 +69,7 @@ ("libuuid" ,util-linux "lib") ("zlib" ,zlib))) (propagated-inputs - `(("protobuf" ,protobuf))) ; for pkg-config --libs libola + (list protobuf)) ; for pkg-config --libs libola (arguments `( ;; G++ >= 4.8 macro expansion tracking requires lots of memory, causing ;; build to fail on low memory systems. We disable that with the -- cgit v1.2.3