depot/pkgs/tools/networking/iodine/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

38 lines
825 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, zlib
, nettools
, nixosTests
}:
stdenv.mkDerivation (finalAttrs: {
pname = "iodine";
version = "0.8.0";
src = fetchFromGitHub {
owner = "yarrick";
repo = "iodine";
rev = "v${finalAttrs.version}";
hash = "sha256-0vDl/F/57puugrEdOtdlpNPMF9ugO7TP3KLWo/7bP2k=";
};
buildInputs = [ zlib ];
patchPhase = ''sed -i "s,/sbin/route,${nettools}/bin/route," src/tun.c'';
env.NIX_CFLAGS_COMPILE = ''-DIFCONFIGPATH="${nettools}/bin/" -DROUTEPATH="${nettools}/bin/"'';
installFlags = [ "prefix=\${out}" ];
passthru.tests = {
inherit (nixosTests) iodine;
};
meta = {
homepage = "http://code.kryo.se/iodine/";
description = "Tool to tunnel IPv4 data through a DNS server";
license = lib.licenses.isc;
platforms = lib.platforms.unix;
};
})