Skip to content

Commit

Permalink
openconnect_openssl: added missing dependecy gmp
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliButz authored and globin committed Feb 28, 2017
1 parent ffb0fb5 commit b13378c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/networking/openconnect/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, vpnc, openssl ? null, gnutls ? null, libxml2, stoken, zlib } :
{ stdenv, fetchurl, pkgconfig, vpnc, openssl ? null, gnutls ? null, gmp, libxml2, stoken, zlib } :

let
xor = a: b: (a || b) && (!(a && b));
Expand Down Expand Up @@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
];

buildInputs = [ pkgconfig ];
propagatedBuildInputs = [ vpnc openssl gnutls libxml2 stoken zlib ];
propagatedBuildInputs = [ vpnc openssl gnutls gmp libxml2 stoken zlib ];

meta = {
description = "VPN Client for Cisco's AnyConnect SSL VPN";
Expand Down

0 comments on commit b13378c

Please sign in to comment.