mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
44 lines
939 B
Nix
44 lines
939 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
kernel,
|
|
nixosTests,
|
|
}:
|
|
|
|
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";
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) jool;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://www.jool.mx/";
|
|
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - kernel modules";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
};
|
|
}
|