nixpkgs/pkgs/os-specific/linux/jool/default.nix

34 lines
811 B
Nix
Raw Normal View History

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