From 66f349e8beeade282bdc16c19d120891bc16d11b Mon Sep 17 00:00:00 2001 From: Connor Garey Date: Mon, 30 Mar 2026 14:07:43 +0100 Subject: [PATCH] correctly installs in place --- flake.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index 60b1f5154..6b1dd1d1a 100644 --- a/flake.nix +++ b/flake.nix @@ -76,7 +76,7 @@ }; debugLinux = pkgsLinux.stdenv.mkDerivation { - pname = "shadPS4"; + pname = "shadps4"; version = "git"; system = "x86_64-linux"; src = ./.; @@ -130,14 +130,15 @@ cmakeFlags = [ "-DCMAKE_BUILD_TYPE=Debug" + "-DCMAKE_INSTALL_PREFIX=$out" ]; - installPhase = '' - runHook preInstall - mkdir -p bin - cp shadPS4 bin/ - runHook postInstall - ''; + #installPhase = '' + # runHook preInstall + # mkdir -p bin + # cp shadps4 $out/bin/ + # runHook postInstall + #''; }; }; }