-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101083 from fgaz/unstable-updater
- Loading branch information
Showing
4 changed files
with
74 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ stdenv | ||
, writeShellScript | ||
, coreutils | ||
, git | ||
, nix | ||
, common-updater-scripts | ||
}: | ||
|
||
# This is an updater for unstable packages that should always use the latest | ||
# commit. | ||
{ url ? null # The git url, if empty it will be set to src.url | ||
}: | ||
|
||
let | ||
updateScript = writeShellScript "unstable-update-script.sh" '' | ||
set -ex | ||
url="$1" | ||
# By default we set url to src.url | ||
if [[ -z "$url" ]]; then | ||
url="$(${nix}/bin/nix-instantiate $systemArg --eval -E \ | ||
"with import ./. {}; $UPDATE_NIX_ATTR_PATH.src.url" \ | ||
| tr -d '"')" | ||
fi | ||
# Get info about HEAD from a shallow git clone | ||
tmpdir="$(${coreutils}/bin/mktemp -d)" | ||
${git}/bin/git clone --bare --depth=1 "$url" "$tmpdir" | ||
pushd "$tmpdir" | ||
commit_date="$(${git}/bin/git show -s --pretty='format:%cs')" | ||
commit_sha="$(${git}/bin/git show -s --pretty='format:%H')" | ||
popd | ||
${coreutils}/bin/rm -rf "$tmpdir" | ||
# update the nix expression | ||
${common-updater-scripts}/bin/update-source-version \ | ||
"$UPDATE_NIX_ATTR_PATH" \ | ||
"unstable-$commit_date" \ | ||
--rev="$commit_sha" | ||
''; | ||
|
||
in [ updateScript url ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters