about summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-09 12:20:28 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-09 12:21:07 +0000
commitad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0 (patch)
tree3d4a78926f972464ac6075c2d340e5afd3e91f1b /pkgs/applications/networking
parent1209773c0f1736115275cf6112555e8dcfaadf76 (diff)
downloadnixlib-ad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0.tar
nixlib-ad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0.tar.gz
nixlib-ad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0.tar.bz2
nixlib-ad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0.tar.lz
nixlib-ad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0.tar.xz
nixlib-ad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0.tar.zst
nixlib-ad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0.zip
qbittorrent: fix build
Probably failing since #31357
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/p2p/qbittorrent/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix
index 3bb65123c81e..03178b5cb75d 100644
--- a/pkgs/applications/networking/p2p/qbittorrent/default.nix
+++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix
@@ -22,6 +22,9 @@ stdenv.mkDerivation rec {
   buildInputs = [ boost libtorrentRasterbar qtbase qttools ]
     ++ optional guiSupport dbus_libs;
 
+  # Otherwise qm_gen.pri assumes lrelease-qt5, which does not exist.
+  QMAKE_LRELEASE = "lrelease";
+
   configureFlags = [
     "--with-boost-libdir=${boost.out}/lib"
     "--with-boost=${boost.dev}"