ocproxy: init at 1.50

This commit is contained in:
Ioannis Koutras 2016-07-13 15:48:56 +03:00
parent 4f987e0e60
commit d861911263
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ stdenv, fetchFromGitHub, autoconf, automake, libevent }:
stdenv.mkDerivation rec {
version = "1.50";
name = "ocproxy-${version}";
src = fetchFromGitHub {
owner = "cernekee";
repo = "ocproxy";
rev = "v${version}";
sha256 = "136vlk2svgls5paf17xi1zahcahgcnmi2p55khh7zpqaar4lzw6s";
};
buildInputs = [ autoconf automake libevent ];
preConfigure = ''
patchShebangs autogen.sh
./autogen.sh
'';
meta = with stdenv.lib; {
description = "OpenConnect proxy";
longdescription = ''
ocproxy is a user-level SOCKS and port forwarding proxy for OpenConnect
based on lwIP.
'';
homepage = https://github.com/cernekee/ocproxy;
license = licenses.bsd3;
maintainers = [ maintainers.joko ];
platforms = platforms.unix;
};
}

View file

@ -2780,6 +2780,8 @@ in
obexd = callPackage ../tools/bluetooth/obexd { };
ocproxy = callPackage ../tools/networking/ocproxy { };
openfortivpn = callPackage ../tools/networking/openfortivpn { };
obexfs = callPackage ../tools/bluetooth/obexfs { };