summary refs log blame commit diff
path: root/pkgs/os-specific/linux/v4l2loopback/default.nix
blob: 8b44f3388d3f1fa38766d896c6cc3f02fef0a09e (plain) (tree)
1
2
3
4
5
6
7
8
9



                                                     
                    


                                                                                
                                                                    
    



                           




                                                                                                  
 
                         
 





                                                                        
                                                                    





                                                        
{ 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";
  };

  hardening_pic = false;
  hardening_format = false;

  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;
  };
}