mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
33 lines
941 B
Nix
33 lines
941 B
Nix
{ stdenv, fetchurl, kernel, kmod }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "v4l2loopback-${version}-${kernel.version}";
|
|
version = "0.9.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/umlaeute/v4l2loopback/archive/v${version}.tar.gz";
|
|
sha256 = "1crkhxlnskqrfj3f7jmiiyi5m75zmj7n0s26xz07wcwdzdf2p568";
|
|
};
|
|
|
|
preBuild = ''
|
|
substituteInPlace Makefile --replace "modules_install" "INSTALL_MOD_PATH=$out modules_install"
|
|
sed -i '/depmod/d' Makefile
|
|
export PATH=${kmod}/sbin:$PATH
|
|
'';
|
|
|
|
buildInputs = [ kmod ];
|
|
|
|
makeFlags = [
|
|
"KERNELRELEASE=${kernel.modDirVersion}"
|
|
"KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A kernel module to create V4L2 loopback devices";
|
|
homepage = https://github.com/umlaeute/v4l2loopback;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.iElectric ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|