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

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

23 lines
631 B
Nix
Raw Normal View History

2023-06-18 00:59:06 +00:00
{ lib, stdenv, fetchurl, nixosTests }:
2016-11-21 20:03:52 +00:00
stdenv.mkDerivation rec {
pname = "fakeroute";
2016-11-21 20:03:52 +00:00
version = "0.3";
2023-06-18 00:44:39 +00:00
src = fetchurl {
url = "https://maxwell.ydns.eu/git/rnhmjoj/fakeroute/releases/download/v${version}/fakeroute-${version}.tar.gz";
hash = "sha256-DoXGJm8vOlAD6ZuvVAt6bkgfahc8WgyYIXCrgqzfiWg=";
2016-11-21 20:03:52 +00:00
};
2023-06-18 00:59:06 +00:00
passthru.tests.fakeroute = nixosTests.fakeroute;
meta = with lib; {
2016-11-21 20:03:52 +00:00
description = ''
2023-06-18 00:44:39 +00:00
Make your machine appears to be anywhere on the internet in a traceroute
2016-11-21 20:03:52 +00:00
'';
2023-06-18 00:44:39 +00:00
homepage = "https://maxwell.ydns.eu/git/rnhmjoj/fakeroute";
2016-11-21 20:03:52 +00:00
license = licenses.bsd3;
platforms = platforms.linux;
2016-11-21 20:03:52 +00:00
};
}