libcamera: 0.3.0 -> 0.3.1

Changes: https://git.libcamera.org/libcamera/libcamera.git/tag/?h=v0.3.1
This commit is contained in:
Sergei Trofimovich 2024-07-26 22:15:56 +01:00
parent e97c8b67e3
commit 63930d484c

View File

@ -19,18 +19,18 @@
, withTracing ? lib.meta.availableOn stdenv.hostPlatform lttng-ust
, lttng-ust # withTracing
, withQcam ? false
, qt5 # withQcam
, qt6 # withQcam
, libtiff # withQcam
}:
stdenv.mkDerivation rec {
pname = "libcamera";
version = "0.3.0";
version = "0.3.1";
src = fetchgit {
url = "https://git.libcamera.org/libcamera/libcamera.git";
rev = "v${version}";
hash = "sha256-eCtOtdjpwn0S56ZyRVdG1QCBk1KGPh8YTXD50xev7Bc=";
hash = "sha256-vB7dxBDG0y8YvG/2vCgrhyBJmumGG66Vl7yZwprxj5c=";
};
outputs = [ "out" "dev" ];
@ -73,7 +73,7 @@ stdenv.mkDerivation rec {
gtest
] ++ lib.optionals withTracing [ lttng-ust ]
++ lib.optionals withQcam [ libtiff qt5.qtbase qt5.qttools ];
++ lib.optionals withQcam [ libtiff qt6.qtbase qt6.qttools ];
nativeBuildInputs = [
meson
@ -88,7 +88,7 @@ stdenv.mkDerivation rec {
graphviz
doxygen
openssl
] ++ lib.optional withQcam qt5.wrapQtAppsHook;
] ++ lib.optional withQcam qt6.wrapQtAppsHook;
mesonFlags = [
"-Dv4l2=true"