2023-06-09 16:23:44 +02:00
|
|
|
#!/usr/bin/env nix-shell
|
|
|
|
#!nix-shell -i bash -p coreutils common-updater-scripts git
|
|
|
|
|
|
|
|
tmpdir="$(mktemp -d)"
|
2023-11-28 04:34:50 +01:00
|
|
|
git clone --bare --depth=1 --branch=mobile-shell https://gitlab.gnome.org/verdre/mobile-shell.git "$tmpdir"
|
2023-06-09 16:23:44 +02:00
|
|
|
pushd "$tmpdir"
|
|
|
|
new_version="unstable-$(git show -s --pretty='format:%cs')"
|
|
|
|
commit_sha="$(git show -s --pretty='format:%H')"
|
|
|
|
popd
|
|
|
|
update-source-version "gnome.gnome-shell" --file=overlay.nix "$new_version" --rev="$commit_sha"
|
|
|
|
|
|
|
|
tmpdir="$(mktemp -d)"
|
2023-11-28 04:34:50 +01:00
|
|
|
git clone --bare --depth=1 --branch=mobile-shell https://gitlab.gnome.org/verdre/mobile-mutter.git "$tmpdir"
|
2023-06-09 16:23:44 +02:00
|
|
|
pushd "$tmpdir"
|
|
|
|
new_version="unstable-$(git show -s --pretty='format:%cs')"
|
|
|
|
commit_sha="$(git show -s --pretty='format:%H')"
|
|
|
|
popd
|
|
|
|
update-source-version "gnome.mutter" --file=overlay.nix "$new_version" --rev="$commit_sha"
|