kdbplus: add zlib to libPath

Necessary for https://github.com/kxcontrib/websocket to run
gstqt5
Kai Wohlfahrt 2019-09-12 18:02:03 +01:00 committed by Austin Seipp
parent 2a10e8fef5
commit 31ff9f5d41
1 changed files with 2 additions and 2 deletions

View File

@ -1,10 +1,10 @@
{ stdenv, requireFile, unzip, rlwrap, bash }:
{ stdenv, requireFile, unzip, rlwrap, bash, zlib }:
assert (stdenv.hostPlatform.system == "i686-linux");
let
libPath = stdenv.lib.makeLibraryPath
[ stdenv.cc.libc stdenv.cc.cc ];
[ stdenv.cc.libc stdenv.cc.cc zlib ];
in
stdenv.mkDerivation rec {
pname = "kdbplus";