Hyprland/nix/update-inputs.sh

22 lines
717 B
Bash
Raw Normal View History

2022-12-24 01:20:02 +01:00
#!/usr/bin/env -S nix shell nixpkgs#gawk nixpkgs#git nixpkgs#moreutils nixpkgs#jq nixpkgs#ripgrep -c bash
set -ex
# get wlroots revision from submodule
2022-12-24 01:20:02 +01:00
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
2022-06-01 23:42:05 +02:00
# update nixpkgs to latest version
nix flake lock --update-input nixpkgs
# update wlroots to submodule revision
2022-06-22 22:23:46 +02:00
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
else
echo "wlroots is up to date!"
fi