linuxPackages.akvcam: init at 1.1.1
This commit is contained in:
parent
5e70725451
commit
bab529c9ff
31
pkgs/os-specific/linux/akvcam/default.nix
Normal file
31
pkgs/os-specific/linux/akvcam/default.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ lib, stdenv, fetchFromGitHub, kernel, qmake }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "akvcam";
|
||||||
|
version = "1.1.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "webcamoid";
|
||||||
|
repo = "akvcam";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "ULEhfF+uC/NcVUGAtmP1+BnrcgRgftNS97nLp81avQ8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ qmake ];
|
||||||
|
|
||||||
|
qmakeFlags = [
|
||||||
|
"KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -m644 -b -D src/akvcam.ko $out/lib/modules/${kernel.modDirVersion}/akvcam.ko
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Virtual camera driver for Linux";
|
||||||
|
homepage = "https://github.com/webcamoid/akvcam";
|
||||||
|
maintainers = with maintainers; [ freezeboy ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
};
|
||||||
|
}
|
@ -18266,6 +18266,10 @@ in
|
|||||||
|
|
||||||
acpi_call = callPackage ../os-specific/linux/acpi-call {};
|
acpi_call = callPackage ../os-specific/linux/acpi-call {};
|
||||||
|
|
||||||
|
akvcam = callPackage ../os-specific/linux/akvcam {
|
||||||
|
inherit (qt5) qmake;
|
||||||
|
};
|
||||||
|
|
||||||
amdgpu-pro = callPackage ../os-specific/linux/amdgpu-pro { };
|
amdgpu-pro = callPackage ../os-specific/linux/amdgpu-pro { };
|
||||||
|
|
||||||
anbox = callPackage ../os-specific/linux/anbox/kmod.nix { };
|
anbox = callPackage ../os-specific/linux/anbox/kmod.nix { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user