openfortivpn: 1.2.0 -> 1.5.0

fixes #29578
This commit is contained in:
Jean-Francois Roche 2017-09-19 23:27:45 +02:00 committed by Jörg Thalheim
parent 6950da832d
commit 0b39118494

@ -1,9 +1,9 @@
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp }:
{ stdenv, fetchFromGitHub, autoreconfHook, openssl, ppp, pkgconfig }:
with stdenv.lib;
let repo = "openfortivpn";
version = "1.2.0";
version = "1.5.0";
in stdenv.mkDerivation {
name = "${repo}-${version}";
@ -12,10 +12,10 @@ in stdenv.mkDerivation {
owner = "adrienverge";
inherit repo;
rev = "v${version}";
sha256 = "1a1l9f6zivfyxg9g2x7kzkvcyh84s7l6v0kimihhrd19zl0m41jn";
sha256 = "0fm0z73afghwmbshpsn5jfbyyfzz1v8s7scwycnvsk2cgv5f4r86";
};
buildInputs = [ openssl ppp autoreconfHook ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ openssl ppp ];
NIX_CFLAGS_COMPILE = "-Wno-error=unused-function";