summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2021-07-30 22:01:05 +0300
committerDmitry Kalinkin <dmitry.kalinkin@gmail.com>2021-07-30 21:42:49 -0400
commitbb8978a77c872030c1e6b78ef16df6cb375285cb (patch)
treecd52a95111b7837f24e532907aaec1654d3fc11a
parentMerge pull request #132073 from NixOS/backport-132046-to-release-21.05 (diff)
downloadnixpkgs-bb8978a77c872030c1e6b78ef16df6cb375285cb.tar.gz
openmw: add wrapQtAppsHook
dontWrapQtApps was blanket added in 5590e365e4775f138610b1036a75f8886921843e (cherry picked from commit 854265777ced27a1d0b1bdead26463ce021bb779)
-rw-r--r--pkgs/games/openmw/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/games/openmw/default.nix b/pkgs/games/openmw/default.nix
index 8e6ed3cdb823..cfde63ac7264 100644
--- a/pkgs/games/openmw/default.nix
+++ b/pkgs/games/openmw/default.nix
@@ -3,6 +3,7 @@
, fetchFromGitHub
, cmake
, pkg-config
+, wrapQtAppsHook
, openscenegraph
, mygui
, bullet
@@ -37,7 +38,7 @@ mkDerivation rec {
sha256 = "0rm32zsmxvr6b0jjihfj543skhicbw5kg6shjx312clhlm035w2x";
};
- nativeBuildInputs = [ cmake pkg-config ];
+ nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ];
buildInputs = [
SDL2
@@ -57,8 +58,6 @@ mkDerivation rec {
"-DOpenGL_GL_PREFERENCE=LEGACY"
];
- dontWrapQtApps = true;
-
meta = with lib; {
description = "An unofficial open source engine reimplementation of the game Morrowind";
homepage = "http://openmw.org";