nixpkgs/pkgs/tools/networking/fakeroute/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
680 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2016-11-21 20:03:52 +00:00
stdenv.mkDerivation rec {
pname = "fakeroute";
2016-11-21 20:03:52 +00:00
version = "0.3";
src = fetchFromGitHub {
owner = "museoa";
repo = "fakeroute";
rev = "f8cb9c0ae3abb4c0662d9e1fcac67eefeeac3963";
sha256 = "12dhahwlpjzv79wpdpryjihamfbh4d8cfzfw4wi1jkl0dv2d41jg";
2016-11-21 20:03:52 +00:00
};
sourceRoot = "source/fakeroute-0.3";
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;
platforms = platforms.linux;
2016-11-21 20:03:52 +00:00
};
}