Skip to content

Commit

Permalink
Revert qt6 wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Redcroft authored Dec 15, 2024
1 parent aa284e1 commit 890813f
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions pkgs/by-name/ho/houdini/runtime-build.nix
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{ stdenv, lib, bc, version, src, eulaDate, qt6 }:
{ stdenv, bc, version, src, eulaDate }:
stdenv.mkDerivation {
inherit version src;
pname = "houdini-runtime";

buildInputs = [ bc qt6.qtbase ];
nativeBuildInputs = [ qt6.wrapQtAppsHook ];
buildInputs = [ bc ];
installPhase = ''
patchShebangs houdini.install
mkdir -p $out
Expand All @@ -18,13 +17,6 @@ stdenv.mkDerivation {
$out
echo "licensingMode = localValidator" >> $out/houdini/Licensing.opt # does not seem to do anything any more. not sure, official docs do not say anything about it
'';
dontWrapQtApps = true;
postFixup = ''
wrapQtApp "$out/bin/houdini"
wrapQtApp "$out/bin/hindie"
wrapQtApp "$out/bin/houdini-bin"
wrapQtApp "$out/bin/hindie-bin"
wrapQtApp "$out/bin/hkey"
'';
# dontFixup = true;

dontFixup = true;
}

0 comments on commit 890813f

Please sign in to comment.