2017-09-16 16:57:14 +01:00
|
|
|
{ stdenv, gitRepo, cacert, copyPathsToStore }:
|
2017-03-23 03:22:44 +00:00
|
|
|
|
2017-09-16 16:21:26 +01:00
|
|
|
{ name, manifest, rev ? "HEAD", sha256
|
|
|
|
, repoRepoURL ? "", repoRepoRev ? "", referenceDir ? ""
|
2017-03-26 10:59:08 +01:00
|
|
|
, localManifests ? [], createMirror ? false, useArchive ? !createMirror
|
|
|
|
}:
|
2017-03-23 03:22:44 +00:00
|
|
|
|
|
|
|
assert repoRepoRev != "" -> repoRepoURL != "";
|
2017-03-26 10:59:08 +01:00
|
|
|
assert createMirror -> !useArchive;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
|
|
let
|
2017-09-16 16:21:26 +01:00
|
|
|
extraRepoInitFlags = [
|
|
|
|
(optionalString (repoRepoURL != "") "--repo-url=${repoRepoURL}")
|
|
|
|
(optionalString (repoRepoRev != "") "--repo-branch=${repoRepoRev}")
|
|
|
|
(optionalString (referenceDir != "") "--reference=${referenceDir}")
|
|
|
|
];
|
|
|
|
|
2017-03-26 10:59:08 +01:00
|
|
|
repoInitFlags = [
|
|
|
|
"--manifest-url=${manifest}"
|
|
|
|
"--manifest-branch=${rev}"
|
|
|
|
"--depth=1"
|
2017-03-27 06:04:02 +01:00
|
|
|
(optionalString createMirror "--mirror")
|
2017-03-26 10:59:08 +01:00
|
|
|
(optionalString useArchive "--archive")
|
2017-09-16 16:21:26 +01:00
|
|
|
] ++ extraRepoInitFlags;
|
2017-03-26 10:59:08 +01:00
|
|
|
|
|
|
|
local_manifests = copyPathsToStore localManifests;
|
|
|
|
|
2017-09-16 16:21:26 +01:00
|
|
|
in stdenv.mkDerivation {
|
|
|
|
inherit name;
|
2017-03-23 03:22:44 +00:00
|
|
|
|
2017-09-16 16:21:26 +01:00
|
|
|
inherit cacert manifest rev repoRepoURL repoRepoRev referenceDir; # TODO
|
2017-03-26 10:59:08 +01:00
|
|
|
|
2017-09-16 16:21:26 +01:00
|
|
|
outputHashAlgo = "sha256";
|
|
|
|
outputHashMode = "recursive";
|
|
|
|
outputHash = sha256;
|
|
|
|
|
|
|
|
preferLocalBuild = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
impureEnvVars = fetchers.proxyImpureEnvVars ++ [
|
|
|
|
"GIT_PROXY_COMMAND" "SOCKS_SERVER"
|
2017-03-24 23:35:20 +00:00
|
|
|
];
|
|
|
|
|
2017-09-16 16:57:14 +01:00
|
|
|
buildInputs = [ gitRepo cacert ];
|
2017-09-16 16:21:26 +01:00
|
|
|
|
|
|
|
GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt";
|
|
|
|
|
2017-03-26 10:59:08 +01:00
|
|
|
buildCommand = ''
|
2017-09-16 16:57:14 +01:00
|
|
|
# Path must be absolute (e.g. for GnuPG: ~/.repoconfig/gnupg/pubring.kbx)
|
|
|
|
export HOME="$(pwd)"
|
|
|
|
|
2017-03-26 10:59:08 +01:00
|
|
|
mkdir .repo
|
|
|
|
${optionalString (local_manifests != []) ''
|
2017-09-16 16:21:26 +01:00
|
|
|
mkdir .repo/local_manifests
|
|
|
|
for local_manifest in ${concatMapStringsSep " " toString local_manifests}; do
|
|
|
|
cp $local_manifest .repo/local_manifests/$(stripHash $local_manifest; echo $strippedName)
|
|
|
|
done
|
2017-03-26 10:59:08 +01:00
|
|
|
''}
|
2017-03-23 03:22:44 +00:00
|
|
|
|
2017-03-26 10:59:08 +01:00
|
|
|
repo init ${concatStringsSep " " repoInitFlags}
|
2017-03-23 03:22:44 +00:00
|
|
|
repo sync --jobs=$NIX_BUILD_CORES --current-branch
|
2017-03-26 12:55:41 +01:00
|
|
|
${optionalString (!createMirror) "rm -rf $out/.repo"}
|
2017-03-23 03:22:44 +00:00
|
|
|
'';
|
|
|
|
}
|