Skip to content

Commit

Permalink
vsqlite: fix build
Browse files Browse the repository at this point in the history
Probably broken by 1d6a14e.
  • Loading branch information
orivej committed May 29, 2018
1 parent 7b62752 commit e89414f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/vsqlite/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, boost, sqlite }:
{ stdenv, fetchurl, boost, sqlite, zlib }:

stdenv.mkDerivation rec {
name = "vsqlite-${version}";
Expand All @@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
sha256 = "17fkj0d2jh0xkjpcayhs1xvbnh1d69f026i7vs1zqnbiwbkpz237";
};

buildInputs = [ boost sqlite ];
buildInputs = [ boost sqlite zlib ];

prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace Makefile.in \
Expand Down

0 comments on commit e89414f

Please sign in to comment.