guvcview: 2.1.0 -> 2.2.1

This commit is contained in:
emaryn 2025-04-29 23:02:38 +08:00
parent 81229d1108
commit 59c2aedc1e

View File

@ -3,6 +3,7 @@
lib,
stdenv,
fetchurl,
cmake,
intltool,
pkg-config,
portaudio,
@ -27,18 +28,19 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "2.1.0";
pname = "guvcview";
version = "2.2.1";
src = fetchurl {
url = "mirror://sourceforge/project/guvcview/source/guvcview-src-${finalAttrs.version}.tar.bz2";
hash = "sha256-PZPkyfq40aepveGm278E1s+dNHwTS1EotFhqHZC2PPs=";
hash = "sha256-0q3HznYpYehTw+FrURutYVBEktEvPi634w2kovet5a8=";
};
nativeBuildInputs =
[
intltool
pkg-config
cmake
]
++ lib.optionals useGtk [ wrapGAppsHook3 ]
++ lib.optionals useQt [ wrapQtAppsHook ];