summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-10-15 09:42:51 +0200
committerGitHub <noreply@github.com>2023-10-15 09:42:51 +0200
commit567547a0e8d19ca17501ed1cc8316995c5655daa (patch)
tree9dfc190a24f8fb13ac242c59081baa79289bbe2e /pkgs/servers/web-apps
parent0432ccf6710562a77d86b83d34df38099e75c5e5 (diff)
downloadnixpkgs-567547a0e8d19ca17501ed1cc8316995c5655daa.tar
nixpkgs-567547a0e8d19ca17501ed1cc8316995c5655daa.tar.gz
nixpkgs-567547a0e8d19ca17501ed1cc8316995c5655daa.tar.bz2
nixpkgs-567547a0e8d19ca17501ed1cc8316995c5655daa.tar.lz
nixpkgs-567547a0e8d19ca17501ed1cc8316995c5655daa.tar.xz
nixpkgs-567547a0e8d19ca17501ed1cc8316995c5655daa.tar.zst
nixpkgs-567547a0e8d19ca17501ed1cc8316995c5655daa.zip
changedetection-io: add changelog to meta
Diffstat (limited to 'pkgs/servers/web-apps')
-rw-r--r--pkgs/servers/web-apps/changedetection-io/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/servers/web-apps/changedetection-io/default.nix b/pkgs/servers/web-apps/changedetection-io/default.nix
index 9ba86de2c61..29d8eb1fdfc 100644
--- a/pkgs/servers/web-apps/changedetection-io/default.nix
+++ b/pkgs/servers/web-apps/changedetection-io/default.nix
@@ -11,8 +11,8 @@ python3.pkgs.buildPythonApplication rec {
   src = fetchFromGitHub {
     owner = "dgtlmoon";
     repo = "changedetection.io";
-    rev = version;
-    sha256 = "sha256-QTkkMFGyEGSakvFCiJ36Xr3IiG9K7GDy2dpNGWjUngs=";
+    rev = "refs/tags/${version}";
+    hash = "sha256-QTkkMFGyEGSakvFCiJ36Xr3IiG9K7GDy2dpNGWjUngs=";
   };
 
   postPatch = ''
@@ -71,8 +71,9 @@ python3.pkgs.buildPythonApplication rec {
   ];
 
   meta = with lib; {
+    description = "Self-hosted free open source website change detection tracking, monitoring and notification service";
     homepage = "https://github.com/dgtlmoon/changedetection.io";
-    description = "Simplest self-hosted free open source website change detection tracking, monitoring and notification service";
+    changelog = "https://github.com/dgtlmoon/changedetection.io/releases/tag/${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ ];
   };