mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
Revert "qpdfview: remove placeholder usage"
This reverts commit 9e503e039b
.
This commit is contained in:
parent
c1e53166ad
commit
0d90e014d6
@ -21,11 +21,16 @@ stdenv.mkDerivation {
|
|||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
inherit (s) url sha256;
|
inherit (s) url sha256;
|
||||||
};
|
};
|
||||||
|
qmakeFlags = [
|
||||||
# TODO: revert this once placeholder is supported
|
"*.pro"
|
||||||
preConfigure = ''
|
"TARGET_INSTALL_PATH=${placeholder "out"}/bin"
|
||||||
qmakeFlags="$qmakeFlags *.pro TARGET_INSTALL_PATH=$out/bin PLUGIN_INSTALL_PATH=$out/lib/qpdfview DATA_INSTALL_PATH=$out/share/qpdfview MANUAL_INSTALL_PATH=$out/share/man/man1 ICON_INSTALL_PATH=$out/share/icons/hicolor/scalable/apps LAUNCHER_INSTALL_PATH=$out/share/applications APPDATA_INSTALL_PATH=$out/share/appdata"
|
"PLUGIN_INSTALL_PATH=${placeholder "out"}/lib/qpdfview"
|
||||||
'';
|
"DATA_INSTALL_PATH=${placeholder "out"}/share/qpdfview"
|
||||||
|
"MANUAL_INSTALL_PATH=${placeholder "out"}/share/man/man1"
|
||||||
|
"ICON_INSTALL_PATH=${placeholder "out"}/share/icons/hicolor/scalable/apps"
|
||||||
|
"LAUNCHER_INSTALL_PATH=${placeholder "out"}/share/applications"
|
||||||
|
"APPDATA_INSTALL_PATH=${placeholder "out"}/share/appdata"
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit (s) version;
|
inherit (s) version;
|
||||||
|
Loading…
Reference in New Issue
Block a user