mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-13 12:07:36 +00:00
ios-depoy: Add missing rsync dep
This commit is contained in:
parent
b8ce6a31f5
commit
1ad73bb3ca
@ -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 = ''
|
||||
|
Loading…
Reference in New Issue
Block a user