mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
bed0d7f22f
Semi-automatic update. These checks were performed: - built on NixOS - found 0.4.8 with grep in /nix/store/0wb5vj0zlgl16yfzs26r11f3r7767w4v-srelay-0.4.8 - found 0.4.8 in filename of file in /nix/store/0wb5vj0zlgl16yfzs26r11f3r7767w4v-srelay-0.4.8
22 lines
560 B
Nix
22 lines
560 B
Nix
{ stdenv, fetchurl, openssl }:
|
|
|
|
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;
|
|
};
|
|
}
|