depot/third_party/nixpkgs/pkgs/tools/networking/fakeroute/default.nix
Default email 81047829ea Project import generated by Copybara.
GitOrigin-RevId: 48d63e924a2666baf37f4f14a18f19347fbd54a2
2022-02-10 15:34:41 -05:00

25 lines
680 B
Nix

{ 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;
};
}