Merge pull request #72095 from jokogr/f/qt5ct-qmakeflags
qt5ct: qtsvg, qmakeFlags nixification
This commit is contained in:
commit
f3a97b24cd
1 changed files with 3 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
{ mkDerivation, lib, fetchurl, qtbase, qttools, qmake }:
|
||||
{ mkDerivation, lib, fetchurl, qtbase, qtsvg, qttools, qmake }:
|
||||
|
||||
let inherit (lib) getDev; in
|
||||
|
||||
|
@ -13,16 +13,13 @@ mkDerivation rec {
|
|||
|
||||
nativeBuildInputs = [ qmake qttools ];
|
||||
|
||||
buildInputs = [ qtbase ];
|
||||
buildInputs = [ qtbase qtsvg ];
|
||||
|
||||
qmakeFlags = [
|
||||
"LRELEASE_EXECUTABLE=${getDev qttools}/bin/lrelease"
|
||||
"PLUGINDIR=${placeholder "out"}/${qtbase.qtPluginPrefix}"
|
||||
];
|
||||
|
||||
preConfigure = ''
|
||||
qmakeFlags+=" PLUGINDIR=$out/$qtPluginPrefix"
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue