ios-depoy: Add missing rsync dep

This commit is contained in:
John Ericson 2018-09-15 14:48:03 -04:00
parent b8ce6a31f5
commit 1ad73bb3ca

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 = ''