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
42 lines
952 B
Nix
42 lines
952 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
net-tools,
|
|
iproute2,
|
|
judy,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.2.6";
|
|
pname = "miredo";
|
|
|
|
buildInputs = [ judy ];
|
|
|
|
src = fetchurl {
|
|
url = "https://www.remlab.net/files/miredo/miredo-${version}.tar.xz";
|
|
sha256 = "0j9ilig570snbmj48230hf7ms8kvcwi2wblycqrmhh85lksd49ps";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace misc/client-hook.bsd \
|
|
--replace '/sbin/route' '${net-tools}/bin/route' \
|
|
--replace '/sbin/ifconfig' '${net-tools}/bin/ifconfig'
|
|
substituteInPlace misc/client-hook.iproute --replace '/sbin/ip' '${iproute2}/bin/ip'
|
|
'';
|
|
|
|
configureFlags = [ "--with-Judy" ];
|
|
|
|
postInstall = ''
|
|
rm -rf $out/lib/systemd $out/var $out/etc/miredo/miredo.conf
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Teredo IPv6 Tunneling Daemon";
|
|
homepage = "https://www.remlab.net/miredo/";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|