nixpkgs/pkgs/tools/networking/fakeroute/default.nix
Zane van Iperen cab9136841
fakeroute: change upstream
Original upstream has been purged, switch to a mirror.
See https://github.com/NixOS/nixpkgs/issues/149201 for details.
2021-12-08 02:34:16 +10:00

26 lines
633 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://moxie.org/software/fakeroute/";
license = licenses.bsd3;
platforms = platforms.linux;
};
}