mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
openconnect_openssl: added missing dependecy gmp
This commit is contained in:
parent
ffb0fb51d4
commit
b13378c479
1 changed files with 2 additions and 2 deletions
|
@ -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));
|
||||
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue