forked from mirrors/nixpkgs
307dfd90dc
https://github.com/vector-im/riot-desktop/releases/tag/v1.6.1 Also updated the package since `riot-desktop` has been moved to its own repository (`github.com/vector-im/riot-desktop`).
18 lines
587 B
Bash
Executable file
18 lines
587 B
Bash
Executable file
#!/usr/bin/env nix-shell
|
|
#!nix-shell -I nixpkgs=../../../../../ -i bash -p wget yarn2nix
|
|
|
|
set -euo pipefail
|
|
|
|
if [ "$#" -ne 1 ] || [[ "$1" == -* ]]; then
|
|
echo "Regenerates the Yarn dependency lock files for the riot-desktop package."
|
|
echo "Usage: $0 <git release tag>"
|
|
exit 1
|
|
fi
|
|
|
|
RIOT_WEB_SRC="https://raw.githubusercontent.com/vector-im/riot-desktop/$1"
|
|
|
|
wget "$RIOT_WEB_SRC/package.json" -O riot-desktop-package.json
|
|
wget "$RIOT_WEB_SRC/yarn.lock" -O riot-desktop-yarndeps.lock
|
|
yarn2nix --lockfile=riot-desktop-yarndeps.lock > riot-desktop-yarndeps.nix
|
|
rm riot-desktop-yarndeps.lock
|