2021-01-17 04:51:22 +01:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config
|
2020-09-09 05:41:19 +02:00
|
|
|
, openssl, ppp
|
|
|
|
, systemd ? null }:
|
2015-02-10 13:56:46 +01:00
|
|
|
|
2020-09-09 05:41:19 +02:00
|
|
|
let
|
|
|
|
withSystemd = stdenv.isLinux && !(systemd == null);
|
2015-02-10 13:56:46 +01:00
|
|
|
|
2020-09-09 05:41:19 +02:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "openfortivpn";
|
2021-02-17 13:19:21 +01:00
|
|
|
version = "1.16.0";
|
2015-02-10 13:56:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "adrienverge";
|
2020-09-09 05:41:19 +02:00
|
|
|
repo = pname;
|
2015-02-10 13:56:46 +01:00
|
|
|
rev = "v${version}";
|
2021-02-17 13:19:21 +01:00
|
|
|
sha256 = "sha256-wijP9VGKXlxCAU3xN6+cv9+NGwBS55ql8WsZZ592b/k=";
|
2015-02-10 13:56:46 +01:00
|
|
|
};
|
|
|
|
|
2020-09-09 05:41:19 +02:00
|
|
|
# we cannot write the config file to /etc and as we don't need the file, so drop it
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace Makefile.am \
|
|
|
|
--replace '$(DESTDIR)$(confdir)' /tmp
|
|
|
|
'';
|
|
|
|
|
2021-01-17 04:51:22 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2015-02-10 13:56:46 +01:00
|
|
|
|
2020-09-09 05:41:19 +02:00
|
|
|
buildInputs = [
|
|
|
|
openssl ppp
|
|
|
|
]
|
|
|
|
++ lib.optional withSystemd systemd;
|
2015-02-10 13:56:46 +01:00
|
|
|
|
2020-09-09 05:41:19 +02:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--with-pppd=${ppp}/bin/pppd"
|
|
|
|
]
|
|
|
|
++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system";
|
2015-02-10 13:56:46 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-02-10 13:56:46 +01:00
|
|
|
description = "Client for PPP+SSL VPN tunnel services";
|
2020-02-29 07:04:16 +01:00
|
|
|
homepage = "https://github.com/adrienverge/openfortivpn";
|
2020-09-09 05:41:19 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ madjar ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-02-10 13:56:46 +01:00
|
|
|
};
|
|
|
|
}
|