diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-13 16:29:21 -0500 |
commit | 6dffced09ecda024e0884e352778c221ad066fd6 (patch) | |
tree | 1707e8d8df4d9c47317a39ab6abbfc2ca66a6c29 /gnu/packages/lighting.scm | |
parent | b603554ed044638dd40b6863d5dada59eefe03b8 (diff) | |
parent | e3196755e60ba7f1ed9d432e73f26a85e0c8893c (diff) |
Merge branch 'core-updates-frozen' into 'master'.
At last!
Diffstat (limited to 'gnu/packages/lighting.scm')
-rw-r--r-- | gnu/packages/lighting.scm | 19 |
1 files changed, 9 insertions, 10 deletions
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 |