36 lines
876 B
Nix
36 lines
876 B
Nix
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp }:
|
|
|
|
with stdenv.lib;
|
|
|
|
let repo = "openfortivpn";
|
|
version = "1.2.0";
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "${repo}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adrienverge";
|
|
inherit repo;
|
|
rev = "v${version}";
|
|
sha256 = "1a1l9f6zivfyxg9g2x7kzkvcyh84s7l6v0kimihhrd19zl0m41jn";
|
|
};
|
|
|
|
buildInputs = [ openssl ppp autoreconfHook ];
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
|
|
|
|
preConfigure = ''
|
|
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;
|
|
};
|
|
}
|