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

22 lines
556 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
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 = fetchurl {
url = "https://moxie.org/software/fakeroute/${pname}-${version}.tar.gz";
2016-11-21 20:03:52 +00:00
sha256 = "1sp342rxgm1gz4mvi5vvz1knz7kn9px9s39ii3jdjp4ks7lr5c8f";
};
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
'';
homepage = "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
};
}