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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
920 B
Nix
Raw Normal View History

2023-07-02 00:32:54 +03:00
{ lib, stdenv, fetchFromGitHub, kernel, nixosTests }:
let
2017-08-01 01:31:12 +03:00
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
in
stdenv.mkDerivation {
name = "jool-${sourceAttrs.version}-${kernel.version}";
src = sourceAttrs.src;
2018-07-15 21:11:05 +03:00
nativeBuildInputs = kernel.moduleBuildDependencies;
hardeningDisable = [ "pic" ];
2015-12-23 04:59:47 +03:00
prePatch = ''
2019-04-20 11:42:48 +03:00
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";
2023-07-02 00:32:54 +03:00
passthru.tests = { inherit (nixosTests) jool; };
meta = with lib; {
homepage = "https://www.jool.mx/";
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - kernel modules";
platforms = platforms.linux;
license = licenses.gpl2Only;
maintainers = with maintainers; [ fpletz ];
};
}