nixpkgs/pkgs/os-specific/darwin/apple-source-releases/file_cmds/default.nix

39 lines
1.2 KiB
Nix
Raw Normal View History

2021-03-14 18:12:53 +00:00
{ lib, appleDerivation, xcbuildHook, zlib, bzip2, xz, ncurses, libutil }:
2016-11-24 06:43:37 +00:00
2019-08-13 21:52:01 +00:00
appleDerivation {
nativeBuildInputs = [ xcbuildHook ];
2021-03-14 18:12:53 +00:00
buildInputs = [ zlib bzip2 xz ncurses libutil ];
2016-11-24 06:43:37 +00:00
# some commands not working:
# mtree: _simple.h not found
# ipcs: sys/ipcs.h not found
# so remove their targets from the project
patchPhase = ''
substituteInPlace file_cmds.xcodeproj/project.pbxproj \
--replace "FC8A8CAA14B655FD001B97AD /* PBXTargetDependency */," "" \
--replace "FC8A8C9C14B655FD001B97AD /* PBXTargetDependency */," "" \
--replace "productName = file_cmds;" "" \
--replace '/usr/lib/libcurses.dylib' 'libncurses.dylib'
2016-11-24 06:43:37 +00:00
sed -i -re "s/name = ([a-zA-Z]+);/name = \1; productName = \1;/" file_cmds.xcodeproj/project.pbxproj
'';
# temporary install phase until xcodebuild has "install" support
installPhase = ''
for f in Products/Release/*; do
if [ -f $f ]; then
2019-01-07 04:31:21 +00:00
install -D $f $out/bin/$(basename $f)
fi
done
2016-11-24 06:43:37 +00:00
for n in 1; do
mkdir -p $out/share/man/man$n
install */*.$n $out/share/man/man$n
done
'';
meta = {
2021-01-15 14:45:37 +00:00
platforms = lib.platforms.darwin;
maintainers = with lib.maintainers; [ matthewbauer ];
2016-11-24 06:43:37 +00:00
};
}