rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / miredo / default.nix
blobbac427228b52fd4d21c85f973538758960cdc6c2
1 { lib, stdenv, fetchurl, nettools, iproute2, judy }:
3 stdenv.mkDerivation rec {
4   version = "1.2.6";
5   pname = "miredo";
7   buildInputs = [ judy ];
9   src = fetchurl {
10     url = "https://www.remlab.net/files/miredo/miredo-${version}.tar.xz";
11     sha256 = "0j9ilig570snbmj48230hf7ms8kvcwi2wblycqrmhh85lksd49ps";
12   };
14   postPatch = ''
15     substituteInPlace misc/client-hook.bsd \
16       --replace '/sbin/route' '${nettools}/bin/route' \
17       --replace '/sbin/ifconfig' '${nettools}/bin/ifconfig'
18     substituteInPlace misc/client-hook.iproute --replace '/sbin/ip' '${iproute2}/bin/ip'
19   '';
21   configureFlags = [ "--with-Judy" ];
23   postInstall = ''
24     rm -rf $out/lib/systemd $out/var $out/etc/miredo/miredo.conf
25   '';
27   meta = with lib; {
28     description = "Teredo IPv6 Tunneling Daemon";
29     homepage = "https://www.remlab.net/miredo/";
30     license = licenses.gpl2Plus;
31     maintainers = [ ];
32     platforms = platforms.unix;
33   };