mirror of
https://github.com/chuangzhu/nixpkgs-gnome-mobile.git
synced 2024-12-26 06:56:05 +01:00
19 lines
787 B
Bash
19 lines
787 B
Bash
|
#!/usr/bin/env nix-shell
|
||
|
#!nix-shell -i bash -p coreutils common-updater-scripts git
|
||
|
|
||
|
tmpdir="$(mktemp -d)"
|
||
|
git clone --bare --depth=1 --branch=mobile-shell https://gitlab.gnome.org/verdre/gnome-shell.git "$tmpdir"
|
||
|
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)"
|
||
|
git clone --bare --depth=1 --branch=mobile-shell https://gitlab.gnome.org/verdre/mutter.git "$tmpdir"
|
||
|
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"
|