nixpkgs/pkgs/tools/networking/openfortivpn/default.nix
R. RyanTM 021257e598 openfortivpn: 1.9.0 -> 1.10.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/openfortivpn/versions
2019-06-17 05:05:40 -07:00

35 lines
873 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp, pkgconfig }:
with stdenv.lib;
let repo = "openfortivpn";
version = "1.10.0";
in stdenv.mkDerivation {
name = "${repo}-${version}";
src = fetchFromGitHub {
owner = "adrienverge";
inherit repo;
rev = "v${version}";
sha256 = "1d9mp03dxz9j6pwd3d5z2pa7i1sqx5psshli1inqs0cq8zjmbzrw";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ openssl ppp ];
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";
configureFlags = [ "--with-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;
};
}