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

                             
                                                     
 








                                                            
                               
 


















                                                                                                       
{ stdenv, fetchzip, kernel }:

assert stdenv.lib.versionOlder kernel.version "4.11";

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

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

  src = sourceAttrs.src;

  hardeningDisable = [ "pic" ];

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

  buildPhase = ''
    make -C mod
  '';

  installPhase = ''
    make -C mod modules_install INSTALL_MOD_PATH=$out
  '';

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