mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
webcamoid: init at 8.7.1
This commit is contained in:
parent
06ac702738
commit
f3050a6831
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 ];
|
||||
};
|
||||
}
|
@ -22513,6 +22513,8 @@ in
|
||||
|
||||
wayvnc = callPackage ../applications/networking/remote/wayvnc { };
|
||||
|
||||
webcamoid = libsForQt5.callPackage ../applications/video/webcamoid { };
|
||||
|
||||
webmacs = libsForQt5.callPackage ../applications/networking/browsers/webmacs {};
|
||||
|
||||
webtorrent_desktop = callPackage ../applications/video/webtorrent_desktop {};
|
||||
|
Loading…
Reference in New Issue
Block a user