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

37 lines
924 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp, pkgconfig }:
2015-02-10 13:56:46 +01:00
with stdenv.lib;
let repo = "openfortivpn";
version = "1.7.0";
2015-02-10 13:56:46 +01:00
in stdenv.mkDerivation {
name = "${repo}-${version}";
src = fetchFromGitHub {
owner = "adrienverge";
inherit repo;
rev = "v${version}";
sha256 = "1qfz5igry7fhrkz5iyzqpffldhpdvcw98k06yb6acwc1jyv87nh0";
2015-02-10 13:56:46 +01:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ openssl ppp ];
2015-02-10 13:56:46 +01:00
2017-02-02 04:06:34 +01:00
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
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;
};
}