2017-09-19 23:27:45 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp, pkgconfig }:
|
2015-02-10 13:56:46 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let repo = "openfortivpn";
|
2019-04-15 19:21:43 +02:00
|
|
|
version = "1.9.0";
|
2015-02-10 13:56:46 +01:00
|
|
|
|
|
|
|
in stdenv.mkDerivation {
|
|
|
|
name = "${repo}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "adrienverge";
|
|
|
|
inherit repo;
|
|
|
|
rev = "v${version}";
|
2019-04-15 19:21:43 +02:00
|
|
|
sha256 = "1nf992wjx5n2883b31hgxrb6y0n3p5yz7h42bwripwrfpdjaaqcv";
|
2015-02-10 13:56:46 +01:00
|
|
|
};
|
|
|
|
|
2017-09-19 23:27:45 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ openssl ppp ];
|
2015-02-10 13:56:46 +01:00
|
|
|
|
2017-02-02 04:06:34 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
|
2015-02-10 13:56:46 +01:00
|
|
|
|
2019-01-26 17:07:38 +01:00
|
|
|
configureFlags = [ "--with-pppd=${ppp}/bin/pppd" ];
|
2015-02-10 13:56:46 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|