2014-03-31 20:02:25 +02:00
|
|
|
{ stdenv, fetchurl, kernel, kmod }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "v4l2loopback-${version}-${kernel.version}";
|
2015-07-25 03:58:54 +02:00
|
|
|
version = "0.9.1";
|
2014-03-31 20:02:25 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/umlaeute/v4l2loopback/archive/v${version}.tar.gz";
|
2015-07-25 03:58:54 +02:00
|
|
|
sha256 = "1crkhxlnskqrfj3f7jmiiyi5m75zmj7n0s26xz07wcwdzdf2p568";
|
2014-03-31 20:02:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
substituteInPlace Makefile --replace "modules_install" "INSTALL_MOD_PATH=$out modules_install"
|
|
|
|
sed -i '/depmod/d' Makefile
|
|
|
|
export PATH=${kmod}/sbin:$PATH
|
|
|
|
'';
|
2014-12-10 12:23:11 +01:00
|
|
|
|
2014-03-31 20:02:25 +02:00
|
|
|
buildInputs = [ kmod ];
|
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"KERNELRELEASE=${kernel.modDirVersion}"
|
|
|
|
"KERNEL_DIR=${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2014-04-02 12:40:52 +02:00
|
|
|
description = "A kernel module to create V4L2 loopback devices";
|
2014-03-31 20:02:25 +02:00
|
|
|
homepage = https://github.com/umlaeute/v4l2loopback;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.iElectric ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|