Skip to content

Commit

Permalink
fetchRepoProject: Refactor the code
Browse files Browse the repository at this point in the history
Should hopefully make it a bit more readable and less redundant.
  • Loading branch information
primeos committed Sep 16, 2017
1 parent 701db44 commit 50ce8ab
Showing 1 changed file with 29 additions and 36 deletions.
65 changes: 29 additions & 36 deletions pkgs/build-support/fetchrepoproject/default.nix
@@ -1,6 +1,7 @@
{ stdenv, git, gitRepo, gnupg ? null, cacert, copyPathsToStore }:

{ name, manifest, rev ? "HEAD", sha256, repoRepoURL ? "", repoRepoRev ? "", referenceDir ? ""
{ name, manifest, rev ? "HEAD", sha256
, repoRepoURL ? "", repoRepoRev ? "", referenceDir ? ""
, localManifests ? [], createMirror ? false, useArchive ? !createMirror
}:

Expand All @@ -10,6 +11,12 @@ assert createMirror -> !useArchive;
with stdenv.lib;

let
extraRepoInitFlags = [
(optionalString (repoRepoURL != "") "--repo-url=${repoRepoURL}")
(optionalString (repoRepoRev != "") "--repo-branch=${repoRepoRev}")
(optionalString (referenceDir != "") "--reference=${referenceDir}")
];

repoInitFlags = [
"--manifest-url=${manifest}"
"--manifest-branch=${rev}"
Expand All @@ -18,56 +25,42 @@ let
"--no-clone-bundle"
(optionalString createMirror "--mirror")
(optionalString useArchive "--archive")
(optionalString (repoRepoURL != "") "--repo-url=${repoRepoURL}")
(optionalString (repoRepoRev != "") "--repo-branch=${repoRepoRev}")
(optionalString (referenceDir != "") "--reference=${referenceDir}")
];
] ++ extraRepoInitFlags;

local_manifests = copyPathsToStore localManifests;

in
in stdenv.mkDerivation {
inherit name;

with stdenv.lib;
inherit cacert manifest rev repoRepoURL repoRepoRev referenceDir; # TODO

let
extraRepoInitFlags = [
(optionalString (repoRepoURL != "") "--repo-url=${repoRepoURL}")
(optionalString (repoRepoRev != "") "--repo-branch=${repoRepoRev}")
(optionalString (referenceDir != "") "--reference=${referenceDir}")
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = sha256;

preferLocalBuild = true;
enableParallelBuilding = true;

impureEnvVars = fetchers.proxyImpureEnvVars ++ [
"GIT_PROXY_COMMAND" "SOCKS_SERVER"
];
in

stdenv.mkDerivation {
buildInputs = [ git gitRepo cacert ] ++ optional (gnupg != null) [ gnupg ];

GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt";

buildCommand = ''
mkdir .repo
${optionalString (local_manifests != []) ''
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
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
''}
export HOME=.repo
repo init ${concatStringsSep " " repoInitFlags}
repo sync --jobs=$NIX_BUILD_CORES --current-branch
${optionalString (!createMirror) "rm -rf $out/.repo"}
'';

GIT_SSL_CAINFO = "${cacert}/etc/ssl/certs/ca-bundle.crt";

impureEnvVars = stdenv.lib.fetchers.proxyImpureEnvVars ++ [
"GIT_PROXY_COMMAND" "SOCKS_SERVER"
];

buildInputs = [git gitRepo cacert] ++ optional (gnupg != null) [gnupg] ;
outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = sha256;

preferLocalBuild = true;
enableParallelBuilding = true;
inherit name cacert manifest rev repoRepoURL repoRepoRev referenceDir;
}

0 comments on commit 50ce8ab

Please sign in to comment.