correctly installs in place

This commit is contained in:
Connor Garey 2026-03-30 14:07:43 +01:00
parent 0625f5082e
commit 66f349e8be

View File

@ -76,7 +76,7 @@
}; };
debugLinux = pkgsLinux.stdenv.mkDerivation { debugLinux = pkgsLinux.stdenv.mkDerivation {
pname = "shadPS4"; pname = "shadps4";
version = "git"; version = "git";
system = "x86_64-linux"; system = "x86_64-linux";
src = ./.; src = ./.;
@ -130,14 +130,15 @@
cmakeFlags = [ cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Debug" "-DCMAKE_BUILD_TYPE=Debug"
"-DCMAKE_INSTALL_PREFIX=$out"
]; ];
installPhase = '' #installPhase = ''
runHook preInstall # runHook preInstall
mkdir -p bin # mkdir -p bin
cp shadPS4 bin/ # cp shadps4 $out/bin/
runHook postInstall # runHook postInstall
''; #'';
}; };
}; };
} }