nixpkgs/pkgs/tools/networking/openfortivpn/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.2 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkg-config
, openssl
, ppp
, systemd
, withSystemd ? stdenv.isLinux
, withPpp ? stdenv.isLinux
}:
2015-02-10 12:56:46 +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";
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
};
# 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
buildInputs = [
openssl
]
++ lib.optional withSystemd systemd
++ lib.optional withPpp ppp;
2015-02-10 12:56:46 +00:00
configureFlags = [
"--sysconfdir=/etc"
]
++ 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;
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";
license = licenses.gpl3;
maintainers = with maintainers; [ madjar ];
platforms = with platforms; linux ++ darwin;
2015-02-10 12:56:46 +00:00
};
}