about summary refs log tree commit diff
path: root/pkgs/tools/archivers/p7zip/update.sh
diff options
context:
space:
mode:
authorKasper Gałkowski <k@galkowski.xyz>2023-03-14 17:03:07 +0100
committerKasper Gałkowski <k@galkowski.xyz>2023-03-14 17:07:39 +0100
commite5eb0322a2f7c235c64662b4dce720b62111fc88 (patch)
tree71ebb5b481e62b15362414a03c7f3fe1bfc1e67c /pkgs/tools/archivers/p7zip/update.sh
parent97ec9764a4c2a23eef5c505183c858a3ae80606c (diff)
parent9e91539bb454af74b2e8f012e1aae08cb8abd9ff (diff)
merge master
Diffstat (limited to 'pkgs/tools/archivers/p7zip/update.sh')
-rwxr-xr-xpkgs/tools/archivers/p7zip/update.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/archivers/p7zip/update.sh b/pkgs/tools/archivers/p7zip/update.sh
index 0d4b91e56e800..9ba67894b8067 100755
--- a/pkgs/tools/archivers/p7zip/update.sh
+++ b/pkgs/tools/archivers/p7zip/update.sh
@@ -7,7 +7,7 @@ DRV_DIR="$PWD"
 
 OLD_VERSION="$(sed -nE 's/\s*version = "(.*)".*/\1/p' ./default.nix)"
 
-NEW_VERSION="$(curl https://api.github.com/repos/jinfeihan57/p7zip/releases/latest | jq .tag_name -r | tr -d 'v')"
+NEW_VERSION="$(curl https://api.github.com/repos/p7zip-project/p7zip/releases/latest | jq .tag_name -r | tr -d 'v')"
 
 echo "comparing versions $OLD_VERSION => $NEW_VERSION"
 if [[ "$OLD_VERSION" == "$NEW_VERSION" ]]; then