github: Respect default branch

This commit is contained in:
Eelco Dolstra 2020-06-18 13:25:08 +02:00
parent 5d69bbf3fe
commit 3d492199bb
2 changed files with 4 additions and 4 deletions

View file

@ -137,7 +137,7 @@ struct GitArchiveInputScheme : InputScheme
{
Input input(_input);
if (!maybeGetStrAttr(input.attrs, "ref")) input.attrs.insert_or_assign("ref", "master");
if (!maybeGetStrAttr(input.attrs, "ref")) input.attrs.insert_or_assign("ref", "HEAD");
auto rev = input.getRev();
if (!rev) rev = getRevFromRef(store, input);
@ -217,7 +217,7 @@ struct GitHubInputScheme : GitArchiveInputScheme
auto host_url = maybeGetStrAttr(input.attrs, "url").value_or("github.com");
Input::fromURL(fmt("git+ssh://git@%s/%s/%s.git",
host_url, getStrAttr(input.attrs, "owner"), getStrAttr(input.attrs, "repo")))
.applyOverrides(input.getRef().value_or("master"), input.getRev())
.applyOverrides(input.getRef().value_or("HEAD"), input.getRev())
.clone(destDir);
}
};
@ -262,7 +262,7 @@ struct GitLabInputScheme : GitArchiveInputScheme
// FIXME: get username somewhere
Input::fromURL(fmt("git+ssh://git@%s/%s/%s.git",
host_url, getStrAttr(input.attrs, "owner"), getStrAttr(input.attrs, "repo")))
.applyOverrides(input.getRef().value_or("master"), input.getRev())
.applyOverrides(input.getRef().value_or("HEAD"), input.getRev())
.clone(destDir);
}
};

View file

@ -56,7 +56,7 @@ let
tar cfz $out/tarball/${nixpkgs.rev} $dir --hard-dereference
mkdir -p $out/commits
echo '{"sha": "${nixpkgs.rev}"}' > $out/commits/master
echo '{"sha": "${nixpkgs.rev}"}' > $out/commits/HEAD
'';
in