fakeroute: init at 0.3

This commit is contained in:
rnhmjoj 2016-11-21 21:03:52 +01:00
parent ab96f93126
commit d753527bd4
No known key found for this signature in database
GPG key ID: 362BB82B7E496B7C
2 changed files with 23 additions and 0 deletions

View file

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

View file

@ -1603,6 +1603,8 @@ in
fakeroot = callPackage ../tools/system/fakeroot { };
fakeroute = callPackage ../tools/networking/fakeroute { };
fakechroot = callPackage ../tools/system/fakechroot { };
fast-neural-doodle = callPackage ../tools/graphics/fast-neural-doodle {