2021-02-05 17:12:51 +00:00
|
|
|
{ lib, appleDerivation, developer_cmds }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
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/
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
maintainers = with maintainers; [ matthewbauer ];
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
license = licenses.apsl20;
|
|
|
|
};
|
|
|
|
}
|