altcoins.bitcoin-classic: fix build

+3 -3
+3 -3
pkgs/applications/altcoins/bitcoin-classic.nix
··· 16 16 sha256 = "06ij9v7zbdnhxq9429nnxiw655cp8idldj18l7fmj94gqx07n5vh"; 17 17 }; 18 18 19 - patches = [ ./fix-bitcoin-qt-build.patch ]; 20 - 21 19 nativeBuildInputs = [ pkgconfig autoreconfHook ]; 22 20 buildInputs = [ openssl db48 boost zlib 23 21 miniupnpc utillinux protobuf libevent ] 24 22 ++ optionals withGui [ qtbase qttools qrencode ]; 25 23 26 24 configureFlags = [ "--with-boost-libdir=${boost.out}/lib" ] 27 - ++ optionals withGui [ "--with-gui=qt5" ]; 25 + ++ optionals withGui [ "--with-gui=qt5" 26 + "--with-qt-bindir=${qtbase.dev}/bin:${qttools.dev}/bin" 27 + ]; 28 28 29 29 enableParallelBuilding = true; 30 30