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

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

27 lines
733 B
Nix
Raw Normal View History

2022-09-30 00:44:41 +00:00
{ lib, stdenv, fetchurl, libxcrypt }:
2016-07-11 01:41:02 +00:00
stdenv.mkDerivation rec {
pname = "srelay";
version = "0.4.8";
2016-07-11 01:41:02 +00:00
src = fetchurl {
url = "mirror://sourceforge/project/socks-relay/socks-relay/srelay-${version}/srelay-${version}.tar.gz";
sha256 = "1sn6005aqyfvrlkm5445cyyaj6h6wfyskfncfmds55x34hfyxpvl";
2016-07-11 01:41:02 +00:00
};
patches = [ ./arm.patch ];
2022-09-30 00:44:41 +00:00
buildInputs = [ libxcrypt ];
2016-07-11 01:41:02 +00:00
installPhase = "install -D srelay $out/bin/srelay";
meta = {
description = "A SOCKS proxy and relay";
homepage = "http://socks-relay.sourceforge.net/";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.unix;
license = lib.licenses.bsd3;
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
2016-07-11 01:41:02 +00:00
};
}