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

   
                                                                   






                                                         
                                                     
                               
 
               
                                                                                                           

     



                                           
 
                                     
 
                    
                                      

                                                                                        
                                


                                               
{ lib, stdenv, fetchFromGitHub, kernel }:

let
  sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in

stdenv.mkDerivation {
  name = "jool-${sourceAttrs.version}-${kernel.version}";

  src = sourceAttrs.src;

  nativeBuildInputs = kernel.moduleBuildDependencies;
  hardeningDisable = [ "pic" ];

  prePatch = ''
    sed -e 's@/lib/modules/\$(.*)@${kernel.dev}/lib/modules/${kernel.modDirVersion}@' -i src/mod/*/Makefile
  '';

  makeFlags = kernel.makeFlags ++ [
    "-C src/mod"
    "INSTALL_MOD_PATH=${placeholder "out"}"
  ];

  installTargets = "modules_install";

  meta = with lib; {
    homepage = "https://www.jool.mx/";
    description = "Fairly compliant SIIT and Stateful NAT64 for Linux - kernel modules";
    platforms = platforms.linux;
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ fpletz ];
  };
}