Merge pull request #86261 from robaca/webcamoid
webcamoid: init at 8.7.1
This commit is contained in:
commit
dacd1e48be
|
@ -6586,6 +6586,12 @@
|
||||||
githubId = 353885;
|
githubId = 353885;
|
||||||
name = "Rob Vermaas";
|
name = "Rob Vermaas";
|
||||||
};
|
};
|
||||||
|
robaca = {
|
||||||
|
email = "carsten@r0hrbach.de";
|
||||||
|
github = "robaca";
|
||||||
|
githubId = 580474;
|
||||||
|
name = "Carsten Rohrbach";
|
||||||
|
};
|
||||||
robberer = {
|
robberer = {
|
||||||
email = "robberer@freakmail.de";
|
email = "robberer@freakmail.de";
|
||||||
github = "robberer";
|
github = "robberer";
|
||||||
|
|
40
pkgs/applications/video/webcamoid/default.nix
Normal file
40
pkgs/applications/video/webcamoid/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, libxcb, mkDerivation, qmake
|
||||||
|
, qtbase, qtdeclarative, qtquickcontrols, qtquickcontrols2
|
||||||
|
, ffmpeg-full, gstreamer, gst_all_1, libpulseaudio, alsaLib, jack2
|
||||||
|
, v4l-utils }:
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "webcamoid";
|
||||||
|
version = "8.7.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
sha256 = "1d8g7mq0wf0ycds87xpdhr3zkljgjmb94n3ak9kkxj2fqp9242d2";
|
||||||
|
rev = version;
|
||||||
|
repo = "webcamoid";
|
||||||
|
owner = "webcamoid";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
libxcb
|
||||||
|
qtbase qtdeclarative qtquickcontrols qtquickcontrols2
|
||||||
|
ffmpeg-full
|
||||||
|
gstreamer gst_all_1.gst-plugins-base
|
||||||
|
alsaLib libpulseaudio jack2
|
||||||
|
v4l-utils
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig qmake ];
|
||||||
|
|
||||||
|
qmakeFlags = [
|
||||||
|
"Webcamoid.pro"
|
||||||
|
"INSTALLQMLDIR=${placeholder "out"}/lib/qt/qml"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -22620,6 +22620,8 @@ in
|
||||||
|
|
||||||
wayvnc = callPackage ../applications/networking/remote/wayvnc { };
|
wayvnc = callPackage ../applications/networking/remote/wayvnc { };
|
||||||
|
|
||||||
|
webcamoid = libsForQt5.callPackage ../applications/video/webcamoid { };
|
||||||
|
|
||||||
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};
|
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};
|
||||||
|
|
||||||
webtorrent_desktop = callPackage ../applications/video/webtorrent_desktop {};
|
webtorrent_desktop = callPackage ../applications/video/webtorrent_desktop {};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user