Skip to content

Commit

Permalink
fakeroute: 0.2 -> 0.3
Browse files Browse the repository at this point in the history
(cherry picked from commit f1edaec)
  • Loading branch information
rnhmjoj authored and github-actions[bot] committed Jun 20, 2023
1 parent b6c73c5 commit 85851f7
Showing 1 changed file with 6 additions and 11 deletions.
17 changes: 6 additions & 11 deletions pkgs/tools/networking/fakeroute/default.nix
Original file line number Diff line number Diff line change
@@ -1,24 +1,19 @@
{ lib, stdenv, fetchFromGitHub }:
{ lib, stdenv, fetchurl }:

stdenv.mkDerivation rec {
pname = "fakeroute";
version = "0.3";

src = fetchFromGitHub {
owner = "museoa";
repo = "fakeroute";
rev = "f8cb9c0ae3abb4c0662d9e1fcac67eefeeac3963";
sha256 = "12dhahwlpjzv79wpdpryjihamfbh4d8cfzfw4wi1jkl0dv2d41jg";
src = fetchurl {
url = "https://maxwell.ydns.eu/git/rnhmjoj/fakeroute/releases/download/v${version}/fakeroute-${version}.tar.gz";
hash = "sha256-DoXGJm8vOlAD6ZuvVAt6bkgfahc8WgyYIXCrgqzfiWg=";
};

sourceRoot = "source/fakeroute-0.3";

meta = with lib; {
description = ''
Makes your machine appear to be anywhere on the internet
to any host running a (UDP) unix traceroute
Make your machine appears to be anywhere on the internet in a traceroute
'';
homepage = "https://github.com/museoa/fakeroute"; # Formerly https://moxie.org/software/fakeroute/
homepage = "https://maxwell.ydns.eu/git/rnhmjoj/fakeroute";
license = licenses.bsd3;
platforms = platforms.linux;
};
Expand Down

0 comments on commit 85851f7

Please sign in to comment.