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