Merge pull request #148445 from NickCao/libcamera

libcamera: fix cross compilation and set strictDeps
This commit is contained in:
Jörg Thalheim 2021-12-03 16:48:25 +00:00 committed by GitHub
commit d1f21613e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -31,10 +31,11 @@ stdenv.mkDerivation {
patchShebangs utils/ patchShebangs utils/
''; '';
strictDeps = true;
buildInputs = [ buildInputs = [
# IPA and signing # IPA and signing
gnutls gnutls
openssl
boost boost
# gstreamer integration # gstreamer integration
@ -46,6 +47,8 @@ stdenv.mkDerivation {
# lttng tracing # lttng tracing
lttng-ust lttng-ust
gtest
]; ];
nativeBuildInputs = [ nativeBuildInputs = [
@ -57,9 +60,9 @@ stdenv.mkDerivation {
python3Packages.pyyaml python3Packages.pyyaml
python3Packages.ply python3Packages.ply
python3Packages.sphinx python3Packages.sphinx
gtest
graphviz graphviz
doxygen doxygen
openssl
]; ];
mesonFlags = [ "-Dv4l2=true" "-Dqcam=disabled" ]; mesonFlags = [ "-Dv4l2=true" "-Dqcam=disabled" ];