kdbplus: add zlib to libPath

Necessary for https://github.com/kxcontrib/websocket to run
This commit is contained in:
Kai Wohlfahrt 2019-09-12 18:02:03 +01:00 committed by Austin Seipp
parent 2a10e8fef5
commit 31ff9f5d41

View file

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