depot/third_party/nixpkgs/pkgs/applications/video/webcamoid/default.nix
Luke Granger-Brown f92e137cfb
Some checks failed
/ combine-systems (push) Blocked by required conditions
/ build (x86_64-linux) (push) Failing after 11m44s
/ build (aarch64-linux) (push) Failing after 11m50s
/ build (push) Failing after 16m42s
Merge commit '1e2ed035f4bebc9adad02b365508ad96f7df87c1' into HEAD
2025-03-02 02:23:32 +00:00

60 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
libxcb,
cmake,
qtbase,
qtdeclarative,
wrapQtAppsHook,
qtsvg,
ffmpeg,
gst_all_1,
libpulseaudio,
alsa-lib,
jack2,
v4l-utils,
}:
stdenv.mkDerivation rec {
pname = "webcamoid";
version = "9.2.3";
src = fetchFromGitHub {
owner = "webcamoid";
repo = "webcamoid";
tag = version;
hash = "sha256-j4FiRQeFsrZD48P1CUESFytz9l/64Lz1EuOZp0ZSEmI=";
};
buildInputs = [
libxcb
qtbase
qtdeclarative
qtsvg
ffmpeg
gst_all_1.gstreamer
gst_all_1.gst-plugins-base
alsa-lib
libpulseaudio
jack2
v4l-utils
];
nativeBuildInputs = [
pkg-config
cmake
wrapQtAppsHook
];
meta = {
description = "Webcam Capture Software";
longDescription = "Webcamoid is a full featured and multiplatform webcam suite.";
homepage = "https://github.com/webcamoid/webcamoid/";
license = with lib.licenses; [ gpl3Plus ];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ robaca ];
mainProgram = "webcamoid";
};
}