113f2c851f
svn path=/nixpkgs/trunk/; revision=29429
23 lines
592 B
Nix
23 lines
592 B
Nix
{ stdenv, fetchurl, zlib, nettools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "iodine-0.6.0-rc1";
|
|
|
|
src = fetchurl {
|
|
url = "http://code.kryo.se/iodine/${name}.tar.gz";
|
|
sha256 = "dacf950198b68fd1dae09fe980080155b0c75718f581c08e069eee0c1b6c5e60";
|
|
};
|
|
|
|
buildInputs = [ zlib ];
|
|
|
|
patchPhase = ''sed -i "s,/sbin/ifconfig,${nettools}/sbin/ifconfig,; s,/sbin/route,${nettools}/sbin/route," src/tun.c'';
|
|
|
|
installFlags = "prefix=\${out}";
|
|
|
|
meta = {
|
|
homepage = http://code.kryo.se/iodine/;
|
|
description = "Tool to tunnel IPv4 data through a DNS server";
|
|
license = "ISC";
|
|
};
|
|
}
|