lol

tup: avoid vendoring sqlite3

authored by

Dmitry Bogatov and committed by
Emery Hemingway
72a4c545 df1d5f1d

+3 -2
+3 -2
pkgs/development/tools/build-managers/tup/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fuse3, macfuse-stubs, pkg-config, pcre }: 1 + { lib, stdenv, fetchFromGitHub, fuse3, macfuse-stubs, pkg-config, sqlite, pcre }: 2 2 3 3 let 4 4 fuse = if stdenv.isDarwin then macfuse-stubs else fuse3; ··· 15 15 }; 16 16 17 17 nativeBuildInputs = [ pkg-config ]; 18 - buildInputs = [ fuse pcre ]; 18 + buildInputs = [ fuse pcre sqlite ]; 19 19 20 20 patches = [ ./fusermount-setuid.patch ]; 21 21 ··· 31 31 cat << EOF > tup.config 32 32 CONFIG_CC=${stdenv.cc.targetPrefix}cc 33 33 CONFIG_AR=${stdenv.cc.targetPrefix}ar 34 + CONFIG_TUP_USE_SYSTEM_SQLITE=y 34 35 EOF 35 36 ''; 36 37