summary refs log tree commit diff
path: root/pkgs/tools/networking/fakeroute
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2016-11-21 21:03:52 +0100
committerrnhmjoj <micheleguerinirocco@me.com>2016-11-23 15:22:55 +0100
commitd753527bd4bc1b88c8145f847367e79856407b26 (patch)
treef2df4c84ca05df60306c76cda45ec518356daf2c /pkgs/tools/networking/fakeroute
parentab96f931267a424d7a84165fb1b95c94b27ef7ea (diff)
downloadnixpkgs-d753527bd4bc1b88c8145f847367e79856407b26.tar
nixpkgs-d753527bd4bc1b88c8145f847367e79856407b26.tar.gz
nixpkgs-d753527bd4bc1b88c8145f847367e79856407b26.tar.bz2
nixpkgs-d753527bd4bc1b88c8145f847367e79856407b26.tar.lz
nixpkgs-d753527bd4bc1b88c8145f847367e79856407b26.tar.xz
nixpkgs-d753527bd4bc1b88c8145f847367e79856407b26.tar.zst
nixpkgs-d753527bd4bc1b88c8145f847367e79856407b26.zip
fakeroute: init at 0.3
Diffstat (limited to 'pkgs/tools/networking/fakeroute')
-rw-r--r--pkgs/tools/networking/fakeroute/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/tools/networking/fakeroute/default.nix b/pkgs/tools/networking/fakeroute/default.nix
new file mode 100644
index 00000000000..1cb614e88c0
--- /dev/null
+++ b/pkgs/tools/networking/fakeroute/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "fakeroute-${version}";
+  version = "0.3";
+
+  src = fetchurl {
+    url = "https://moxie.org/software/fakeroute/${name}.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;
+    platform = platforms.linux;
+  };
+}