diff --git a/pkgs/by-name/li/libcamera/package.nix b/pkgs/by-name/li/libcamera/package.nix index 32eb20ce169c..9af2eda79e60 100644 --- a/pkgs/by-name/li/libcamera/package.nix +++ b/pkgs/by-name/li/libcamera/package.nix @@ -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" ]; @@ -76,7 +76,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 @@ -90,7 +90,7 @@ stdenv.mkDerivation rec { graphviz doxygen openssl - ] ++ lib.optional withQcam qt5.wrapQtAppsHook; + ] ++ lib.optional withQcam qt6.wrapQtAppsHook; mesonFlags = [ "-Dv4l2=true"