about summary refs log tree commit diff
path: root/pkgs/tools/compression/xdelta/default.nix
diff options
context:
space:
mode:
authorAnselm Schüler <mail@anselmschueler.com>2024-07-11 16:18:34 +0200
committerGitHub <noreply@github.com>2024-07-11 22:18:34 +0800
commit70db6560b15015420ada3038a1a912521dd1ce35 (patch)
tree6fd0fa2fa4658a8ff6c379c624b4e3421d902d1c /pkgs/tools/compression/xdelta/default.nix
parent6987cda22e111a8e65d86958e7d7ff41c8b3aab0 (diff)
xdelta: change meta.homepage (#325491)
* xdelta: remove meta.homepage

the website is unavailable and the domain is used by a gambling website at the moment

* xdelta: set homepage to GitHub repo

---------

Co-authored-by: Aleksana <alexander.huang.y@gmail.com>
Diffstat (limited to 'pkgs/tools/compression/xdelta/default.nix')
-rw-r--r--pkgs/tools/compression/xdelta/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/compression/xdelta/default.nix b/pkgs/tools/compression/xdelta/default.nix
index 27d0141ff75b3..7ce9417d40cc3 100644
--- a/pkgs/tools/compression/xdelta/default.nix
+++ b/pkgs/tools/compression/xdelta/default.nix
@@ -54,7 +54,8 @@ in stdenv.mkDerivation rec {
       file differences. This is similar to diff and patch, but it is targeted
       for binary files and does not generate human readable output.
     '';
-    homepage = "http://xdelta.org/";
+    # The dedicated homepage pointed to a gambling website
+    homepage = "https://github.com/jmacd/xdelta";
     license = licenses.gpl2Plus;
     mainProgram = "xdelta3";
     platforms = platforms.unix;