d88c68167a
I don't think this really makes sense, because upstream doesn't list any constraints on supported kernel versions, and worst case it'll just fail to build.
34 lines
811 B
Nix
34 lines
811 B
Nix
{ 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
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make -C src/mod
|
|
'';
|
|
|
|
installPhase = ''
|
|
make -C src/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 ];
|
|
};
|
|
}
|