2021-12-19 01:06:50 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "fakeroute";
|
|
|
|
version = "0.3";
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "museoa";
|
|
|
|
repo = "fakeroute";
|
|
|
|
rev = "f8cb9c0ae3abb4c0662d9e1fcac67eefeeac3963";
|
|
|
|
sha256 = "12dhahwlpjzv79wpdpryjihamfbh4d8cfzfw4wi1jkl0dv2d41jg";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
sourceRoot = "source/fakeroute-0.3";
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|