mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
13 lines
432 B
Bash
Executable File
13 lines
432 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl yq
|
|
set -eu -o pipefail
|
|
|
|
target="$(dirname "$(readlink -f "$0")")/package.nix"
|
|
host="https://launcherupdates.lunarclientcdn.com"
|
|
metadata=$(curl "$host/latest-linux.yml")
|
|
version=$(echo "$metadata" | yq .version -r)
|
|
hash=$(echo "$metadata" | yq .sha512 -r)
|
|
|
|
sed -i "s@version = .*;@version = \"$version\";@g" "$target"
|
|
sed -i "s@hash.* = .*;@hash = \"sha512-$hash\";@g" "$target"
|