jool: init at 3.3.2

Jool is a SIIT and a NAT64 implementation for Linux.
This commit is contained in:
Franz Pletz
2015-07-12 07:25:44 +02:00
parent b59685de83
commit a21ead3d62
4 changed files with 64 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{ 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 ];
};
}