vokoscreen-ng: 4.4.0 -> 4.5.2

Diff: https://github.com/vkohaupt/vokoscreenNG/compare/refs/tags/4.4.0...refs/tags/4.5.2
This commit is contained in:
emaryn
2025-06-14 02:26:41 +08:00
parent fed6a2f21b
commit 39466d49f4

View File

@@ -1,25 +1,25 @@
{
fetchFromGitHub,
gst_all_1,
lib,
stdenv,
fetchFromGitHub,
pkg-config,
gst_all_1,
libX11,
pipewire,
pkg-config,
pulseaudio,
qt6,
stdenv,
wayland,
}:
stdenv.mkDerivation rec {
pname = "vokoscreen-ng";
version = "4.4.0";
version = "4.5.2";
src = fetchFromGitHub {
owner = "vkohaupt";
repo = "vokoscreenNG";
tag = version;
hash = "sha256-5rESTLIvjc/Jztc7LAPl74fxgDsam9SfBa6B5yTXb8E=";
hash = "sha256-oHVUkwqP7b55AzXjSuPQb4PUErZSsRpDwGxI3xmg6YA=";
};
qmakeFlags = [ "src/vokoscreenNG.pro" ];
@@ -30,6 +30,7 @@ stdenv.mkDerivation rec {
qt6.qmake
qt6.wrapQtAppsHook
];
buildInputs = [
gst_all_1.gstreamer
libX11
@@ -62,15 +63,15 @@ stdenv.mkDerivation rec {
runHook postInstall
'';
meta = with lib; {
meta = {
description = "User friendly Open Source screencaster for Linux and Windows";
license = licenses.gpl2Plus;
license = lib.licenses.gpl2Plus;
homepage = "https://github.com/vkohaupt/vokoscreenNG";
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
shamilton
dietmarw
];
platforms = platforms.linux;
platforms = lib.platforms.linux;
mainProgram = "vokoscreenNG";
};
}