about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/fakeroute/default.nix
blob: d5190331d33fa5f783791d96ec08afa5b3a2a0a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl }:

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

  src = fetchurl {
    url = "https://moxie.org/software/fakeroute/${pname}-${version}.tar.gz";
    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;
    platforms = platforms.linux;
  };
}