Skip to content

Commit

Permalink
vencord: add update script
Browse files Browse the repository at this point in the history
Signed-off-by: Sefa Eyeoglu <[email protected]>
  • Loading branch information
Scrumplex authored and yayayayaka committed Oct 24, 2023
1 parent 587aeb8 commit afda201
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkgs/misc/vencord/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ buildNpmPackage rec {
cp -r dist/ $out
'';

passthru.updateScript = ./update.sh;

meta = with lib; {
description = "Vencord web extension";
homepage = "https://github.com/Vendicated/Vencord";
Expand Down
24 changes: 24 additions & 0 deletions pkgs/misc/vencord/update.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#!/usr/bin/env nix-shell
#! nix-shell -I nixpkgs=../../.. -i bash -p curl jq common-updater-scripts prefetch-npm-deps nodejs
set -eou pipefail

tempDir=$(mktemp -d)

ghTags=$(curl ${GITHUB_TOKEN:+" -u \":$GITHUB_TOKEN\""} "https://api.github.com/repos/Vendicated/Vencord/tags")
latestTag=$(echo "$ghTags" | jq -r .[0].name)
gitHash=$(echo "$ghTags" | jq -r .[0].commit.sha)

pushd "$tempDir"
curl "https://raw.githubusercontent.com/Vendicated/Vencord/$latestTag/package.json" -o package.json
npm install --legacy-peer-deps -f

npmDepsHash=$(prefetch-npm-deps ./package-lock.json)
popd

pushd ../../..
update-source-version vencord "${latestTag#v}"
popd

sed -E 's#\bgitHash = ".*?"#gitHash = "'"${gitHash:0:7}"'"#' -i default.nix
sed -E 's#\bnpmDepsHash = ".*?"#npmDepsHash = "'"$npmDepsHash"'"#' -i default.nix
cp "$tempDir/package-lock.json" package-lock.json

0 comments on commit afda201

Please sign in to comment.