2021-12-07 16:34:16 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub }:
|
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";
|
|
|
|
|
2021-12-07 16:34:16 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "museoa";
|
|
|
|
repo = "fakeroute";
|
|
|
|
rev = "f8cb9c0ae3abb4c0662d9e1fcac67eefeeac3963";
|
|
|
|
sha256 = "12dhahwlpjzv79wpdpryjihamfbh4d8cfzfw4wi1jkl0dv2d41jg";
|
2016-11-21 20:03:52 +00:00
|
|
|
};
|
|
|
|
|
2021-12-07 16:34:16 +00:00
|
|
|
sourceRoot = "source/fakeroute-0.3";
|
|
|
|
|
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
|
|
|
|
'';
|
2022-02-06 10:14:12 +00:00
|
|
|
homepage = "https://github.com/museoa/fakeroute"; # Formerly 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
|
|
|
};
|
|
|
|
}
|