mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
kdbplus: add zlib to libPath
Necessary for https://github.com/kxcontrib/websocket to run
This commit is contained in:
parent
2a10e8fef5
commit
31ff9f5d41
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue