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

34 lines
810 B
Nix
Raw Normal View History

2016-07-13 15:48:56 +03:00
{ stdenv, fetchFromGitHub, autoconf, automake, libevent }:
stdenv.mkDerivation rec {
2017-03-02 03:22:21 +03:00
version = "1.60";
pname = "ocproxy";
2016-07-13 15:48:56 +03:00
src = fetchFromGitHub {
owner = "cernekee";
repo = "ocproxy";
rev = "v${version}";
2017-03-02 03:22:21 +03:00
sha256 = "03323nnhb4y9nzwva04mq7xg03dvdrgp689g89f69jqc261skcqx";
2016-07-13 15:48:56 +03:00
};
2017-03-02 03:22:21 +03:00
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libevent ];
2016-07-13 15:48:56 +03:00
preConfigure = ''
patchShebangs autogen.sh
./autogen.sh
'';
meta = with stdenv.lib; {
description = "OpenConnect proxy";
longDescription = ''
2016-07-13 15:48:56 +03:00
ocproxy is a user-level SOCKS and port forwarding proxy for OpenConnect
based on lwIP.
'';
homepage = "https://github.com/cernekee/ocproxy";
2016-07-13 15:48:56 +03:00
license = licenses.bsd3;
maintainers = [ maintainers.joko ];
platforms = platforms.unix;
};
}