4f522648cb
These just copy commands from Products/Release/. But with #52256 we now build .dsym directories that somehow wind up in Products/Release/. This makes things more exact by just copying the files in Products/Release/.
28 lines
1.1 KiB
Nix
28 lines
1.1 KiB
Nix
{ stdenv, appleDerivation, xcbuildHook, ncurses, bzip2, zlib, lzma }:
|
|
|
|
appleDerivation {
|
|
nativeBuildInputs = [ xcbuildHook ];
|
|
buildInputs = [ ncurses bzip2 zlib lzma ];
|
|
|
|
# patches to use ncursees
|
|
# disables md5
|
|
patchPhase = ''
|
|
substituteInPlace text_cmds.xcodeproj/project.pbxproj \
|
|
--replace 'FC6C98FB149A94EB00DDCC47 /* libcurses.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libcurses.dylib; path = /usr/lib/libcurses.dylib; sourceTree = "<absolute>"; };' 'FC6C98FB149A94EB00DDCC47 /* libncurses.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libncurses.dylib; path = /usr/lib/libncurses.dylib; sourceTree = "<absolute>"; };' \
|
|
--replace 'FC7A7EB5149875E00086576A /* PBXTargetDependency */,' ""
|
|
'';
|
|
|
|
installPhase = ''
|
|
for f in Products/Release/*; do
|
|
if [ -f $f ]; then
|
|
install -D $f $out/bin/$(basename $f)
|
|
fi
|
|
done
|
|
'';
|
|
|
|
meta = {
|
|
platforms = stdenv.lib.platforms.darwin;
|
|
maintainers = with stdenv.lib.maintainers; [ matthewbauer ];
|
|
};
|
|
}
|