summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-09 13:44:26 +0000
committerGitHub <noreply@github.com>2017-11-09 13:44:26 +0000
commitce3340730cc4d91d083d725be94ea5def0b4bd70 (patch)
tree12e99d3cf9ad26735a4a28418a1bb538b228b9c2 /pkgs/applications
parent1529295c9b9788a5e04c3d02bbd6a15c3f060b07 (diff)
parentad8483252dcd5f9ca4e4b58a1718e8a309eb1fa0 (diff)
downloadnixlib-ce3340730cc4d91d083d725be94ea5def0b4bd70.tar
nixlib-ce3340730cc4d91d083d725be94ea5def0b4bd70.tar.gz
nixlib-ce3340730cc4d91d083d725be94ea5def0b4bd70.tar.bz2
nixlib-ce3340730cc4d91d083d725be94ea5def0b4bd70.tar.lz
nixlib-ce3340730cc4d91d083d725be94ea5def0b4bd70.tar.xz
nixlib-ce3340730cc4d91d083d725be94ea5def0b4bd70.tar.zst
nixlib-ce3340730cc4d91d083d725be94ea5def0b4bd70.zip
Merge pull request #31438 from orivej/qbittorrent
qbittorrent: fix build
Diffstat (limited to 'pkgs/applications')
-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}"