2021-01-17 03:51:22 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config
|
2022-02-18 19:15:46 +00:00
|
|
|
, openssl
|
|
|
|
, ppp
|
|
|
|
, systemd
|
|
|
|
, withSystemd ? stdenv.isLinux
|
|
|
|
, withPpp ? stdenv.isLinux
|
|
|
|
}:
|
2015-02-10 12:56:46 +00:00
|
|
|
|
2020-09-09 03:41:19 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "openfortivpn";
|
2022-04-05 10:01:44 +00:00
|
|
|
version = "1.17.2";
|
2015-02-10 12:56:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "adrienverge";
|
2020-09-09 03:41:19 +00:00
|
|
|
repo = pname;
|
2015-02-10 12:56:46 +00:00
|
|
|
rev = "v${version}";
|
2022-04-05 10:01:44 +00:00
|
|
|
sha256 = "sha256-pZcYbm1fWqGWYJzexph7i9nPAHH6HP+B8Y6uUkOCRk8=";
|
2015-02-10 12:56:46 +00:00
|
|
|
};
|
|
|
|
|
2020-09-09 03:41:19 +00: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 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2015-02-10 12:56:46 +00:00
|
|
|
|
2020-09-09 03:41:19 +00:00
|
|
|
buildInputs = [
|
2022-02-18 19:15:46 +00:00
|
|
|
openssl
|
2020-09-09 03:41:19 +00:00
|
|
|
]
|
2022-02-18 19:15:46 +00:00
|
|
|
++ lib.optional withSystemd systemd
|
|
|
|
++ lib.optional withPpp ppp;
|
2015-02-10 12:56:46 +00:00
|
|
|
|
2020-09-09 03:41:19 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
]
|
2022-02-18 19:15:46 +00:00
|
|
|
++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system"
|
|
|
|
++ lib.optional withPpp "--with-pppd=${ppp}/bin/pppd";
|
2015-02-10 12:56:46 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-02-10 12:56:46 +00:00
|
|
|
description = "Client for PPP+SSL VPN tunnel services";
|
2020-02-29 06:04:16 +00:00
|
|
|
homepage = "https://github.com/adrienverge/openfortivpn";
|
2020-09-09 03:41:19 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ madjar ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2015-02-10 12:56:46 +00:00
|
|
|
};
|
|
|
|
}
|