summary refs log tree commit diff
path: root/pkgs/build-support/fetchgithub
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2019-01-26 10:06:25 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2019-01-26 22:47:54 -0500
commitd16e0f8dc3b600a5d501d31bb5e87bf000a51ae3 (patch)
tree5576397151458c73eca84c6cc0b2620c1052b382 /pkgs/build-support/fetchgithub
parentcb14f1404a4d44c97f8c3003f075ae6a21cc9e63 (diff)
downloadnixpkgs-d16e0f8dc3b600a5d501d31bb5e87bf000a51ae3.tar
nixpkgs-d16e0f8dc3b600a5d501d31bb5e87bf000a51ae3.tar.gz
nixpkgs-d16e0f8dc3b600a5d501d31bb5e87bf000a51ae3.tar.bz2
nixpkgs-d16e0f8dc3b600a5d501d31bb5e87bf000a51ae3.tar.lz
nixpkgs-d16e0f8dc3b600a5d501d31bb5e87bf000a51ae3.tar.xz
nixpkgs-d16e0f8dc3b600a5d501d31bb5e87bf000a51ae3.tar.zst
nixpkgs-d16e0f8dc3b600a5d501d31bb5e87bf000a51ae3.zip
all-packages: move fetch* to pkgs/build-support/
Diffstat (limited to 'pkgs/build-support/fetchgithub')
-rw-r--r--pkgs/build-support/fetchgithub/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/build-support/fetchgithub/default.nix b/pkgs/build-support/fetchgithub/default.nix
new file mode 100644
index 00000000000..66671dd0a6a
--- /dev/null
+++ b/pkgs/build-support/fetchgithub/default.nix
@@ -0,0 +1,33 @@
+{ lib, fetchgit, fetchzip }:
+
+{ owner, repo, rev, name ? "source"
+, fetchSubmodules ? false, private ? false
+, githubBase ? "github.com", varPrefix ? null
+, ... # For hash agility
+}@args: assert private -> !fetchSubmodules;
+let
+  baseUrl = "https://${githubBase}/${owner}/${repo}";
+  passthruAttrs = removeAttrs args [ "owner" "repo" "rev" "fetchSubmodules" "private" "githubBase" "varPrefix" ];
+  varBase = "NIX${if varPrefix == null then "" else "_${varPrefix}"}_GITHUB_PRIVATE_";
+  # We prefer fetchzip in cases we don't need submodules as the hash
+  # is more stable in that case.
+  fetcher = if fetchSubmodules then fetchgit else fetchzip;
+  privateAttrs = lib.optionalAttrs private {
+    netrcPhase = ''
+      if [ -z "''$${varBase}USERNAME" -o -z "''$${varBase}PASSWORD" ]; then
+        echo "Error: Private fetchFromGitHub requires the nix building process (nix-daemon in multi user mode) to have the ${varBase}USERNAME and ${varBase}PASSWORD env vars set." >&2
+        exit 1
+      fi
+      cat > netrc <<EOF
+      machine ${githubBase}
+              login ''$${varBase}USERNAME
+              password ''$${varBase}PASSWORD
+      EOF
+    '';
+    netrcImpureEnvVars = [ "${varBase}USERNAME" "${varBase}PASSWORD" ];
+  };
+  fetcherArgs = (if fetchSubmodules
+    then { inherit rev fetchSubmodules; url = "${baseUrl}.git"; }
+    else ({ url = "${baseUrl}/archive/${rev}.tar.gz"; } // privateAttrs)
+  ) // passthruAttrs // { inherit name; };
+in fetcher fetcherArgs // { meta.homepage = baseUrl; inherit rev; }