Skip to content

Commit

Permalink
fakeroute: change upstream
Browse files Browse the repository at this point in the history
Original upstream has been purged, switch to a mirror.
See NixOS#149201 for details.
  • Loading branch information
vs49688 committed Dec 7, 2021
1 parent 7383c70 commit cab9136
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions pkgs/tools/networking/fakeroute/default.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{ lib, stdenv, fetchurl }:
{ lib, stdenv, fetchFromGitHub }:

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

src = fetchurl {
url = "https://moxie.org/software/fakeroute/${pname}-${version}.tar.gz";
sha256 = "1sp342rxgm1gz4mvi5vvz1knz7kn9px9s39ii3jdjp4ks7lr5c8f";
src = fetchFromGitHub {
owner = "museoa";
repo = "fakeroute";
rev = "f8cb9c0ae3abb4c0662d9e1fcac67eefeeac3963";
sha256 = "12dhahwlpjzv79wpdpryjihamfbh4d8cfzfw4wi1jkl0dv2d41jg";
};

sourceRoot = "source/fakeroute-0.3";

meta = with lib; {
description = ''
Makes your machine appear to be anywhere on the internet
Expand Down

0 comments on commit cab9136

Please sign in to comment.