2021-04-16 14:22:13 +02:00
|
|
|
|
{ lib
|
|
|
|
|
, writeShellScript
|
2020-10-19 19:57:12 +02:00
|
|
|
|
, 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
|
2021-04-16 14:22:13 +02:00
|
|
|
|
, branch ? null
|
2020-10-19 19:57:12 +02:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
updateScript = writeShellScript "unstable-update-script.sh" ''
|
|
|
|
|
set -ex
|
|
|
|
|
|
2022-02-18 08:12:44 +01:00
|
|
|
|
url=""
|
|
|
|
|
branch=""
|
|
|
|
|
|
|
|
|
|
while (( $# > 0 )); do
|
|
|
|
|
flag="$1"
|
|
|
|
|
shift 1
|
|
|
|
|
case "$flag" in
|
|
|
|
|
--url=*)
|
|
|
|
|
url="''${flag#*=}"
|
|
|
|
|
;;
|
|
|
|
|
--branch=*)
|
|
|
|
|
branch="''${flag#*=}"
|
|
|
|
|
;;
|
|
|
|
|
*)
|
|
|
|
|
echo "$0: unknown option ‘''${flag}’"
|
|
|
|
|
exit 1
|
|
|
|
|
;;
|
|
|
|
|
esac
|
|
|
|
|
done
|
2020-10-19 19:57:12 +02:00
|
|
|
|
|
|
|
|
|
# By default we set url to src.url
|
|
|
|
|
if [[ -z "$url" ]]; then
|
|
|
|
|
url="$(${nix}/bin/nix-instantiate $systemArg --eval -E \
|
2022-02-18 07:58:54 +01:00
|
|
|
|
"with import ./. {}; $UPDATE_NIX_ATTR_PATH.src.url or $UPDATE_NIX_ATTR_PATH.src.meta.homepage" \
|
2020-10-19 19:57:12 +02:00
|
|
|
|
| tr -d '"')"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Get info about HEAD from a shallow git clone
|
|
|
|
|
tmpdir="$(${coreutils}/bin/mktemp -d)"
|
2022-02-18 08:12:44 +01:00
|
|
|
|
|
|
|
|
|
cloneArgs=(
|
|
|
|
|
--bare
|
|
|
|
|
--depth=1
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
if [[ -n "$branch" ]]; then
|
|
|
|
|
cloneArgs+=(--branch="$branch")
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
${git}/bin/git clone "''${cloneArgs[@]}" "$url" "$tmpdir"
|
|
|
|
|
|
2020-10-19 19:57:12 +02:00
|
|
|
|
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"
|
|
|
|
|
'';
|
|
|
|
|
|
2022-02-18 08:12:44 +01:00
|
|
|
|
in [
|
|
|
|
|
updateScript
|
|
|
|
|
"--url=${builtins.toString url}"
|
|
|
|
|
] ++ lib.optionals (branch != null) [
|
|
|
|
|
"--branch=${branch}"
|
|
|
|
|
]
|
2020-10-19 19:57:12 +02:00
|
|
|
|
|