Merge pull request #46712 from obsidiansystems/ios-depoy

ios-depoy: Add missing rsync dep
This commit is contained in:
John Ericson 2018-09-15 14:56:32 -04:00 committed by GitHub
commit eb429c7c54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,14 +27,15 @@ nodePackages // {
'';
};
ios-deploy = nodePackages.ios-deploy.override {
ios-deploy = nodePackages.ios-deploy.override (drv: {
nativeBuildInputs = drv.nativeBuildInputs or [] ++ [ pkgs.buildPackages.rsync ];
preRebuild = ''
LD=$CC
tmp=$(mktemp -d)
ln -s /usr/bin/xcodebuild $tmp
export PATH="$PATH:$tmp"
'';
};
});
fast-cli = nodePackages."fast-cli-1.x".override {
preRebuild = ''