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

36 lines
851 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp }:
2015-02-10 12:56:46 +00:00
with stdenv.lib;
let repo = "openfortivpn";
version = "1.0.1";
in stdenv.mkDerivation {
name = "${repo}-${version}";
src = fetchFromGitHub {
owner = "adrienverge";
inherit repo;
rev = "v${version}";
sha256 = "0kwl8hv3nydd34xp1489jpjdj4bmknfl9xrgynij0vf5qx29xv7m";
};
buildInputs = [ openssl ppp autoreconfHook ];
2015-02-10 12:56:46 +00:00
hardening_format = false;
2015-02-10 12:56:46 +00:00
preConfigure = ''
2015-02-10 12:56:46 +00:00
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;
};
}