2017-09-19 22:27:45 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp, pkgconfig }:
|
2015-02-10 12:56:46 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let repo = "openfortivpn";
|
2018-02-27 16:48:08 +00:00
|
|
|
version = "1.6.0";
|
2015-02-10 12:56:46 +00:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "${repo}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "adrienverge";
|
|
|
|
inherit repo;
|
|
|
|
rev = "v${version}";
|
2018-02-27 16:48:08 +00:00
|
|
|
sha256 = "0ca80i8m88f4vhwiq548wjyqwwszpbap92l83bl0wdppvp4nk192";
|
2015-02-10 12:56:46 +00:00
|
|
|
};
|
|
|
|
|
2017-09-19 22:27:45 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-09-05 22:26:13 +01:00
|
|
|
buildInputs = [ openssl ppp ];
|
2015-02-10 12:56:46 +00:00
|
|
|
|
2017-02-02 03:06:34 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
|
2015-02-10 12:56:46 +00:00
|
|
|
|
2016-02-12 13:46:50 +00:00
|
|
|
preConfigure = ''
|
2015-02-10 12:56:46 +00:00
|
|
|
substituteInPlace src/tunnel.c --replace "/usr/sbin/pppd" "${ppp}/bin/pppd"
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Client for PPP+SSL VPN tunnel services";
|
|
|
|
homepage = https://github.com/adrienverge/openfortivpn;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.madjar ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|