Merge pull request #62022 from bhipple/fix/sqlite-parallel

sqlite: enable parallel builds
This commit is contained in:
Eelco Dolstra 2019-05-27 13:24:02 +02:00 committed by GitHub
commit 71bc5e2d64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ let
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "sqlite-${version}"; pname = "sqlite";
version = "3.28.0"; version = "3.28.0";
# NB! Make sure to update analyzer.nix src (in the same directory). # NB! Make sure to update analyzer.nix src (in the same directory).
@ -71,6 +71,7 @@ stdenv.mkDerivation rec {
sed -i $out/lib/libsqlite3.la -e "s/dependency_libs=.*/dependency_libs='''/" sed -i $out/lib/libsqlite3.la -e "s/dependency_libs=.*/dependency_libs='''/"
''; '';
enableParallelBuilding = true;
doCheck = false; # fails to link against tcl doCheck = false; # fails to link against tcl
meta = { meta = {