eeca73dfac
All hydra builds for kernel version >4.3 fail; the build failure indicates changes to the kernel API used by the package.
33 lines
825 B
Nix
33 lines
825 B
Nix
{ stdenv, fetchzip, kernel }:
|
|
|
|
let
|
|
sourceAttrs = (import ./source.nix) { inherit fetchzip; };
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "jool-${sourceAttrs.version}-${kernel.version}";
|
|
|
|
src = sourceAttrs.src;
|
|
|
|
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 ];
|
|
# kernel version 4.3 is the most recent supported version
|
|
broken = builtins.compareVersions kernel.version "4.3" == 1;
|
|
};
|
|
}
|