Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
59 lines
979 B
Nix
59 lines
979 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
autoreconfHook,
|
|
pkg-config,
|
|
libnl,
|
|
iptables,
|
|
}:
|
|
|
|
let
|
|
sourceAttrs = (import ./source.nix) { inherit fetchFromGitHub; };
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "jool-cli";
|
|
version = sourceAttrs.version;
|
|
|
|
src = sourceAttrs.src;
|
|
|
|
patches = [ ./validate-config.patch ];
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
];
|
|
buildInputs = [
|
|
libnl
|
|
iptables
|
|
];
|
|
|
|
makeFlags = [
|
|
"-C"
|
|
"src/usr"
|
|
];
|
|
|
|
prePatch = ''
|
|
sed -e 's%^XTABLES_SO_DIR = .*%XTABLES_SO_DIR = '"$out"'/lib/xtables%g' -i src/usr/iptables/Makefile
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) jool;
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://www.jool.mx/";
|
|
description = "Fairly compliant SIIT and Stateful NAT64 for Linux - CLI tools";
|
|
platforms = lib.platforms.linux;
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ fpletz ];
|
|
};
|
|
}
|