2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, kernel }:
|
2015-06-29 11:58:07 +01:00
|
|
|
|
|
|
|
let
|
2017-07-31 23:31:12 +01:00
|
|
|
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
|
2015-06-29 11:58:07 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "jool-${sourceAttrs.version}-${kernel.version}";
|
|
|
|
|
|
|
|
src = sourceAttrs.src;
|
|
|
|
|
2018-07-15 19:11:05 +01:00
|
|
|
nativeBuildInputs = kernel.moduleBuildDependencies;
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "pic" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2015-06-29 11:58:07 +01:00
|
|
|
prePatch = ''
|
2019-04-20 09:42:48 +01:00
|
|
|
sed -e 's@/lib/modules/\$(.*)@${kernel.dev}/lib/modules/${kernel.modDirVersion}@' -i src/mod/*/Makefile
|
2015-06-29 11:58:07 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
2019-04-20 09:42:48 +01:00
|
|
|
make -C src/mod
|
2015-06-29 11:58:07 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2019-04-20 09:42:48 +01:00
|
|
|
make -C src/mod modules_install INSTALL_MOD_PATH=$out
|
2015-06-29 11:58:07 +01:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.jool.mx/";
|
2015-06-29 11:58:07 +01:00
|
|
|
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - kernel modules";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
};
|
|
|
|
}
|