mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
3a635da857
switched to the new official launcher, renamed to minecraft-launcher, and added an update script
8 lines
295 B
Bash
Executable file
8 lines
295 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p curl jq gnugrep common-updater-scripts
|
|
|
|
set -eu -o pipefail
|
|
|
|
version=$(curl -s 'https://aur.archlinux.org/rpc/?v=5&type=info&arg[]=minecraft-launcher' | jq '.results[0].Version' | grep -Po '[.\d]*(?=-)')
|
|
update-source-version minecraft "$version"
|