2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2016-11-21 20:03:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "fakeroute";
|
2016-11-21 20:03:52 +00:00
|
|
|
version = "0.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://moxie.org/software/fakeroute/${pname}-${version}.tar.gz";
|
2016-11-21 20:03:52 +00:00
|
|
|
sha256 = "1sp342rxgm1gz4mvi5vvz1knz7kn9px9s39ii3jdjp4ks7lr5c8f";
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-11-21 20:03:52 +00:00
|
|
|
description = ''
|
|
|
|
Makes your machine appear to be anywhere on the internet
|
|
|
|
to any host running a (UDP) unix traceroute
|
|
|
|
'';
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://moxie.org/software/fakeroute/";
|
2016-11-21 20:03:52 +00:00
|
|
|
license = licenses.bsd3;
|
2017-05-03 00:14:03 +01:00
|
|
|
platforms = platforms.linux;
|
2016-11-21 20:03:52 +00:00
|
|
|
};
|
|
|
|
}
|