mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
qbittorrent: don't use qmakeHook
Qt now configures QMake for all builds so there is no need to invoke `qmakeHook` just to get a working `qmake`.
This commit is contained in:
parent
e0d03c43bf
commit
7299f68a05
@ -17,15 +17,13 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "1f4impsjck8anl39pwypsck7j6xw0dl18qd0b4xi23r45jvx9l60";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig which qmakeHook ];
|
||||
nativeBuildInputs = [ pkgconfig which ];
|
||||
|
||||
buildInputs = [ boost libtorrentRasterbar qt5.qtbase qt5.qttools ]
|
||||
++ optional guiSupport dbus_libs;
|
||||
|
||||
dontUseQmakeConfigure = true;
|
||||
|
||||
preConfigure = ''
|
||||
export QT_QMAKE="$qtOut/bin"
|
||||
export QT_QMAKE=$(dirname "$QMAKE")
|
||||
'';
|
||||
|
||||
configureFlags = [
|
||||
|
Loading…
Reference in New Issue
Block a user