forked from mirrors/nixpkgs
9bd2506458
These packages were identified as broken when ffmpeg = ffmpeg_5. Tested _only_ by building them. If you are a maintainer of one of these packages, please test whether your package still works.
36 lines
1,008 B
Nix
36 lines
1,008 B
Nix
{ lib, fetchFromGitHub, pkg-config, libxcb, mkDerivation, cmake
|
|
, qtbase, qtdeclarative, qtquickcontrols, qtquickcontrols2
|
|
, ffmpeg_4, gst_all_1, libpulseaudio, alsa-lib, jack2
|
|
, v4l-utils }:
|
|
mkDerivation rec {
|
|
pname = "webcamoid";
|
|
version = "9.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "sha256-NV1BmG+fgy+ZcvHl+05VX5J1BAz8PxKiZ3z9BxjhMU0=";
|
|
rev = version;
|
|
repo = "webcamoid";
|
|
owner = "webcamoid";
|
|
};
|
|
|
|
buildInputs = [
|
|
libxcb
|
|
qtbase qtdeclarative qtquickcontrols qtquickcontrols2
|
|
ffmpeg_4
|
|
gst_all_1.gstreamer gst_all_1.gst-plugins-base
|
|
alsa-lib libpulseaudio jack2
|
|
v4l-utils
|
|
];
|
|
|
|
nativeBuildInputs = [ pkg-config cmake ];
|
|
|
|
meta = with lib; {
|
|
description = "Webcam Capture Software";
|
|
longDescription = "Webcamoid is a full featured and multiplatform webcam suite.";
|
|
homepage = "https://github.com/webcamoid/webcamoid/";
|
|
license = [ licenses.gpl3Plus ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ robaca ];
|
|
};
|
|
}
|