depot/third_party/nixpkgs/pkgs/tools/networking/fakeroute/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
558 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "fakeroute";
version = "0.3";
src = fetchurl {
url = "https://moxie.org/software/fakeroute/${pname}-${version}.tar.gz";
sha256 = "1sp342rxgm1gz4mvi5vvz1knz7kn9px9s39ii3jdjp4ks7lr5c8f";
};
meta = with stdenv.lib; {
description = ''
Makes your machine appear to be anywhere on the internet
to any host running a (UDP) unix traceroute
'';
homepage = "https://moxie.org/software/fakeroute/";
license = licenses.bsd3;
platforms = platforms.linux;
};
}