3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/networking/openfortivpn/default.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig
, openssl, ppp
, systemd ? null }:
2015-02-10 12:56:46 +00:00
let
withSystemd = stdenv.isLinux && !(systemd == null);
2015-02-10 12:56:46 +00:00
in
stdenv.mkDerivation rec {
pname = "openfortivpn";
version = "1.14.1";
2015-02-10 12:56:46 +00:00
src = fetchFromGitHub {
owner = "adrienverge";
repo = pname;
2015-02-10 12:56:46 +00:00
rev = "v${version}";
2020-06-10 21:25:12 +01:00
sha256 = "1r9lp19fmqx9dw33j5967ydijbnacmr80mqnhbbxyqiw4k5c10ds";
2015-02-10 12:56:46 +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
'';
nativeBuildInputs = [ autoreconfHook pkgconfig ];
2015-02-10 12:56:46 +00:00
buildInputs = [
openssl ppp
]
++ lib.optional withSystemd systemd;
2015-02-10 12:56:46 +00:00
configureFlags = [
"--sysconfdir=/etc"
"--with-pppd=${ppp}/bin/pppd"
]
++ lib.optional withSystemd "--with-systemdsystemunitdir=${placeholder "out"}/lib/systemd/system";
2015-02-10 12:56:46 +00:00
enableParallelBuilding = true;
meta = with stdenv.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";
license = licenses.gpl3;
maintainers = with maintainers; [ madjar ];
platforms = with platforms; linux ++ darwin;
2015-02-10 12:56:46 +00:00
};
}