From 10a52406328890c1dac8350ecc48736a4a2b1b14 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Wed, 3 Jun 2020 15:07:51 +0200 Subject: Use sqlite directly from qt derivation --- shell.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/shell.nix b/shell.nix index ad58db1a8a..2f6164a9e6 100644 --- a/shell.nix +++ b/shell.nix @@ -112,13 +112,17 @@ in stdenv.mkDerivation rec { buildInputs = [ chromaprint fftw flac libid3tag libmad libopus libshout libsndfile libusb1 libvorbis libebur128 pkgconfig portaudio portmidi protobuf qt5.full - rubberband sqlite taglib soundtouch vamp.vampSDK opusfile upower hidapi + rubberband taglib soundtouch vamp.vampSDK opusfile upower hidapi git glib x11 libGLU lilv lame lv2 makeWrapper qt5.qtbase ffmpeg libmodplug mp4v2 wavpack - ] ++ allLv2Plugins; + ] ++ allLv2Plugins + ++ (let + strl = builtins.stringLength "sqlite"; + filterFun = p: (builtins.substring 0 strl p.name) == "sqlite"; + in builtins.filter filterFun qt5.qtbase.propagatedBuildInputs); meta = with nixroot.stdenv.lib; { homepage = https://mixxx.org; -- cgit v1.2.3