File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -104,16 +104,16 @@ let
104
104
} ;
105
105
106
106
fetchSubmodule = { owner , repo , rev , hash } @args :
107
- "cp -ru --no-preserve=all ${ ( fetchFromGitHub args ) . out } source/third_party/${ repo } " ;
107
+ "cp -ruT --no-preserve=all ${ ( fetchFromGitHub args ) . out } source/third_party/${ repo } " ;
108
108
109
109
in stdenv . mkDerivation {
110
110
pname = "pcsx-redux" ;
111
111
version = "0.99test" ;
112
112
inherit src ;
113
113
114
114
postUnpack = ''
115
- cp -ru --no-preserve=all ${ miniaudio . out } source/third_party/miniaudio
116
- cp -ru --no-preserve=all ${ tracy . src } source/third_party/tracy
115
+ cp -ruT --no-preserve=all ${ miniaudio . out } source/third_party/miniaudio
116
+ cp -ruT --no-preserve=all ${ tracy . src } source/third_party/tracy
117
117
'' + builtins . concatStringsSep "\n " ( map fetchSubmodule submodules ) ;
118
118
119
119
nativeBuildInputs = [
@@ -165,9 +165,8 @@ in stdenv.mkDerivation {
165
165
# TODO: learn how to use separate debug info
166
166
dontStrip = debugBuild ;
167
167
enableDebugging = debugBuild ;
168
-
168
+
169
169
enableParallelBuilding = true ;
170
- NIX_BUILD_CORES = 4 ;
171
170
172
171
meta = {
173
172
homepage = "https://pcsx-redux.consoledev.net" ;
You can’t perform that action at this time.
0 commit comments