mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 12:07:47 +03:00
22 lines
551 B
Nix
22 lines
551 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "srelay-0.4.8";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/project/socks-relay/socks-relay/srelay-0.4.8/srelay-0.4.8.tar.gz";
|
|
sha256 = "1sn6005aqyfvrlkm5445cyyaj6h6wfyskfncfmds55x34hfyxpvl";
|
|
};
|
|
|
|
patches = [ ./arm.patch ];
|
|
|
|
installPhase = "install -D srelay $out/bin/srelay";
|
|
|
|
meta = {
|
|
description = "A SOCKS proxy and relay";
|
|
homepage = http://socks-relay.sourceforge.net/;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
license = stdenv.lib.licenses.bsd3;
|
|
};
|
|
}
|