mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
35 lines
800 B
Nix
35 lines
800 B
Nix
{ stdenv, fetchFromGitHub, kernel }:
|
|
|
|
assert stdenv.lib.versionOlder kernel.version "4.13";
|
|
|
|
let
|
|
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
|
|
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 ];
|
|
};
|
|
}
|