mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 14:26:00 +01:00
1d902a4621
revision gets updated to the previous one, not current.
24 lines
810 B
Bash
Executable file
24 lines
810 B
Bash
Executable file
#!/usr/bin/env -S nix shell nixpkgs#gawk nixpkgs#git nixpkgs#gnused nixpkgs#moreutils nixpkgs#jq nixpkgs#ripgrep -c bash
|
|
|
|
set -ex
|
|
|
|
# get wlroots revision from submodule
|
|
SUB_REV=$(git submodule status | rg wlroots | awk '{ print substr($1,2)}')
|
|
# and from lockfile
|
|
CRT_REV=$(jq <flake.lock '.nodes.wlroots.locked.rev' -r)
|
|
|
|
if [ "$SUB_REV" != "$CRT_REV" ]; then
|
|
# update inputs to latest versions
|
|
nix flake update
|
|
|
|
# update wlroots to submodule revision
|
|
nix flake lock --override-input wlroots "gitlab:wlroots/wlroots/$SUB_REV?host=gitlab.freedesktop.org"
|
|
|
|
# remove "dirty" mark from lockfile
|
|
jq <flake.lock 'del(.nodes.wlroots.original.rev)' | sponge flake.lock
|
|
|
|
# fix revision in wlroots.wrap
|
|
sed -Ei "s/[a-z0-9]{40}/$SUB_REV/g" subprojects/wlroots.wrap
|
|
else
|
|
echo "wlroots is up to date!"
|
|
fi
|