587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
22 lines
439 B
Nix
22 lines
439 B
Nix
{ lib, appleDerivation, developer_cmds }:
|
|
|
|
appleDerivation {
|
|
buildInputs = [ developer_cmds ];
|
|
|
|
installPhase = ''
|
|
export DSTROOT=$out
|
|
export SRCROOT=$PWD
|
|
export OBJROOT=$PWD
|
|
|
|
. ./xcodescripts/install_rpcsvc.sh
|
|
|
|
mv $out/usr/* $out
|
|
rmdir $out/usr/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
platforms = platforms.darwin;
|
|
license = licenses.apple-psl20;
|
|
};
|
|
}
|