mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 06:03:40 +00:00
18 lines
626 B
Bash
18 lines
626 B
Bash
|
#!/usr/bin/env nix-shell
|
||
|
#!nix-shell -I nixpkgs=../../../../../ -i bash -p wget yarn2nix-moretea.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-web/$1"
|
||
|
|
||
|
wget "$RIOT_WEB_SRC/electron_app/package.json" -O riot-desktop-package.json
|
||
|
wget "$RIOT_WEB_SRC/electron_app/yarn.lock" -O riot-desktop-yarndeps.lock
|
||
|
yarn2nix --lockfile=riot-desktop-yarndeps.lock > riot-desktop-yarndeps.nix
|
||
|
rm riot-desktop-yarndeps.lock
|