summary refs log tree commit diff
path: root/pkgs/tools/networking/fakeroute/default.nix
blob: 73e75627c0317bf2aecfe1a805fc9c985616b3ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "fakeroute";
  version = "0.3";

  src = fetchFromGitHub {
    owner = "museoa";
    repo = "fakeroute";
    rev = "f8cb9c0ae3abb4c0662d9e1fcac67eefeeac3963";
    sha256 = "12dhahwlpjzv79wpdpryjihamfbh4d8cfzfw4wi1jkl0dv2d41jg";
  };

  sourceRoot = "source/fakeroute-0.3";

  meta = with lib; {
    description = ''
      Makes your machine appear to be anywhere on the internet
      to any host running a (UDP) unix traceroute
    '';
    homepage = "https://github.com/museoa/fakeroute"; # Formerly https://moxie.org/software/fakeroute/
    license = licenses.bsd3;
    platforms = platforms.linux;
  };
}