Skip to content

Commit

Permalink
sqlite: Add zlib dep, needed for sqlar support.
Browse files Browse the repository at this point in the history
(and seems generally useful anyway?)
  • Loading branch information
dtzWill committed May 17, 2018
1 parent a6d8d54 commit 1d6a14e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/sqlite/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, interactive ? false, readline ? null, ncurses ? null }:
{ lib, stdenv, fetchurl, zlib, interactive ? false, readline ? null, ncurses ? null }:

assert interactive -> readline != null && ncurses != null;

Expand All @@ -13,7 +13,7 @@ stdenv.mkDerivation {
outputs = [ "bin" "dev" "out" ];
separateDebugInfo = stdenv.isLinux;

buildInputs = lib.optionals interactive [ readline ncurses ];
buildInputs = [ zlib ] ++ lib.optionals interactive [ readline ncurses ];

configureFlags = [ "--enable-threadsafe" ] ++ lib.optional interactive "--enable-readline";

Expand Down

0 comments on commit 1d6a14e

Please sign in to comment.