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

34 lines
818 B
Nix
Raw Normal View History

2016-07-13 12:48:56 +00:00
{ stdenv, fetchFromGitHub, autoconf, automake, libevent }:
stdenv.mkDerivation rec {
2017-03-02 00:22:21 +00:00
version = "1.60";
2016-07-13 12:48:56 +00:00
name = "ocproxy-${version}";
src = fetchFromGitHub {
owner = "cernekee";
repo = "ocproxy";
rev = "v${version}";
2017-03-02 00:22:21 +00:00
sha256 = "03323nnhb4y9nzwva04mq7xg03dvdrgp689g89f69jqc261skcqx";
2016-07-13 12:48:56 +00:00
};
2017-03-02 00:22:21 +00:00
nativeBuildInputs = [ autoconf automake ];
buildInputs = [ libevent ];
2016-07-13 12:48:56 +00:00
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;
};
}