sqlite: added parameter to enable building a static library.

Unfortunately, static builds fail because the package doesn't recognize
that libpthread needs to be linked explicitly. I'll fix that ASAP.

svn path=/nixpkgs/trunk/; revision=14681
wip/yesman
Peter Simons 15 years ago
parent aaf563c7cf
commit 7ddfd954d3
  1. 7
      pkgs/development/libraries/sqlite/default.nix

@ -1,4 +1,4 @@
{stdenv, fetchurl, readline}:
{stdenv, fetchurl, readline, static ? false}:
stdenv.mkDerivation rec {
name = "sqlite-3.6.10";
@ -12,7 +12,10 @@ stdenv.mkDerivation rec {
buildInputs = [readline];
configureFlags = "--disable-static --with-readline-inc=-I${readline}/include";
configureFlags = ''
${if static then "--disable-shared --enable-static" else "--disable-static"}
--with-readline-inc=-I${readline}/include
'';
postInstall = ''
gcc -L$out/lib -I$out/include tool/genfkey.c -lsqlite3 -o $out/bin/genfkey

Loading…
Cancel
Save