2016-11-21 21:03:52 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "fakeroute";
|
2016-11-21 21:03:52 +01:00
|
|
|
version = "0.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://moxie.org/software/fakeroute/${pname}-${version}.tar.gz";
|
2016-11-21 21:03:52 +01:00
|
|
|
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;
|
2017-05-03 01:14:03 +02:00
|
|
|
platforms = platforms.linux;
|
2016-11-21 21:03:52 +01:00
|
|
|
};
|
|
|
|
}
|