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

35 lines
891 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp, pkgconfig }:
2015-02-10 12:56:46 +00:00
with stdenv.lib;
let repo = "openfortivpn";
2020-06-10 21:25:12 +01:00
version = "1.14.1";
2015-02-10 12:56:46 +00:00
in stdenv.mkDerivation {
name = "${repo}-${version}";
src = fetchFromGitHub {
owner = "adrienverge";
inherit repo;
rev = "v${version}";
2020-06-10 21:25:12 +01:00
sha256 = "1r9lp19fmqx9dw33j5967ydijbnacmr80mqnhbbxyqiw4k5c10ds";
2015-02-10 12:56:46 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ openssl ppp ];
2015-02-10 12:56:46 +00:00
2017-02-02 03:06:34 +00:00
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
2015-02-10 12:56:46 +00:00
configureFlags = [ "--with-pppd=${ppp}/bin/pppd" ];
2015-02-10 12:56:46 +00:00
enableParallelBuilding = true;
meta = {
description = "Client for PPP+SSL VPN tunnel services";
2020-02-29 06:04:16 +00:00
homepage = "https://github.com/adrienverge/openfortivpn";
2015-02-10 12:56:46 +00:00
license = stdenv.lib.licenses.gpl3;
maintainers = [ stdenv.lib.maintainers.madjar ];
platforms = with stdenv.lib.platforms; linux ++ darwin;
2015-02-10 12:56:46 +00:00
};
}