deepin.deepin-camera: unstable-2023-09-26 -> 6.0.5

This commit is contained in:
rewine 2024-08-25 15:22:09 +08:00
parent b898aeeac5
commit c11ac20d4d

View File

@ -26,13 +26,13 @@
stdenv.mkDerivation rec {
pname = "deepin-camera";
version = "unstable-2023-09-26";
version = "6.0.5";
src = fetchFromGitHub {
owner = "linuxdeepin";
repo = pname;
rev = "8ad3b6ad2a4f5f0b22a216496a0187a69a1e1bcc";
hash = "sha256-/8ddplHJzeu7lrRzN66KhJGkFou4FcXc+BzYFK5YVeE=";
rev = version;
hash = "sha256-3q8yV8GpCPKW780YpCn+xLeFBGJFoAMmKSFCAH9OXoE=";
};
# QLibrary and dlopen work with LD_LIBRARY_PATH
@ -74,7 +74,6 @@ stdenv.mkDerivation rec {
++ (with gst_all_1; [
gstreamer
gst-plugins-base
gst-plugins-good
]);
cmakeFlags = [ "-DVERSION=${version}" ];
@ -105,11 +104,11 @@ stdenv.mkDerivation rec {
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
'';
meta = with lib; {
meta = {
description = "Tool to view camera, take photo and video";
homepage = "https://github.com/linuxdeepin/deepin-camera";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = teams.deepin.members;
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = lib.teams.deepin.members;
};
}