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

36 lines
858 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp }:
2015-02-10 13:56:46 +01:00
with stdenv.lib;
let repo = "openfortivpn";
2016-05-30 10:15:23 +02:00
version = "1.1.4";
2015-02-10 13:56:46 +01:00
in stdenv.mkDerivation {
name = "${repo}-${version}";
src = fetchFromGitHub {
owner = "adrienverge";
inherit repo;
rev = "v${version}";
2016-05-30 10:15:23 +02:00
sha256 = "08ycz053wa29ckgr93132hr3vrd84r3bks9q807qanri0n35y256";
2015-02-10 13:56:46 +01:00
};
buildInputs = [ openssl ppp autoreconfHook ];
2015-02-10 13:56:46 +01:00
hardeningDisable = [ "format" ];
2015-02-10 13:56:46 +01:00
preConfigure = ''
2015-02-10 13:56:46 +01: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;
};
}