about summary refs log tree commit diff
path: root/pkgs/build-support/prefer-remote-fetch/default.nix
blob: 3257e7000fe38849621775ed562ee89404cb6c60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# An overlay that download sources on remote builder.
# This is useful when the evaluating machine has a slow
# upload while the builder can fetch faster directly from the source.
# Usage: Put the following snippet in your usual overlay definition:
#
#   self: super:
#     (super.prefer-remote-fetch self super)
# Full configuration example for your own account:
#
# $ mkdir ~/.config/nixpkgs/overlays/
# $ echo 'self: super: super.prefer-remote-fetch self super' > ~/.config/nixpkgs/overlays/prefer-remote-fetch.nix
#
self: super: {
  binary-cache = args: super.binary-cache ({ preferLocalBuild = false; } // args);
  buildenv = args: super.buildenv ({ preferLocalBuild = false; } // args);
  fetchfossil = args: super.fetchfossil ({ preferLocalBuild = false; } // args);
  fetchdocker = args: super.fetchdocker ({ preferLocalBuild = false; } // args);
  fetchgit = args: super.fetchgit ({ preferLocalBuild = false; } // args);
  fetchgx = args: super.fetchgx ({ preferLocalBuild = false; } // args);
  fetchhg = args: super.fetchhg ({ preferLocalBuild = false; } // args);
  fetchipfs = args: super.fetchipfs ({ preferLocalBuild = false; } // args);
  fetchrepoproject = args: super.fetchrepoproject ({ preferLocalBuild = false; } // args);
  fetchs3 = args: super.fetchs3 ({ preferLocalBuild = false; } // args);
  fetchsvn = args: super.fetchsvn ({ preferLocalBuild = false; } // args);
  fetchurl = args: super.fetchurl ({ preferLocalBuild = false; } // args);
}