about summary refs log tree commit diff
path: root/pkgs/servers/web-apps/vikunja
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-03 01:51:59 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-02-03 01:52:59 +0100
commit505da9e6370e942e4baa833c40a259cdb917243d (patch)
tree0c756133a26b324fe11af745d3820eef8ef6bec1 /pkgs/servers/web-apps/vikunja
parentbf17e9e866920121dca4842e02a62851fdc536e7 (diff)
vikunja-frontend: 0.20.2 -> 0.20.3
https://kolaente.dev/vikunja/frontend/src/tag/v0.20.3/CHANGELOG.md
Diffstat (limited to 'pkgs/servers/web-apps/vikunja')
-rw-r--r--pkgs/servers/web-apps/vikunja/frontend.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/servers/web-apps/vikunja/frontend.nix b/pkgs/servers/web-apps/vikunja/frontend.nix
index 6cbca199ea621..14787835f79f3 100644
--- a/pkgs/servers/web-apps/vikunja/frontend.nix
+++ b/pkgs/servers/web-apps/vikunja/frontend.nix
@@ -2,10 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "vikunja-frontend";
-  version = "0.20.2";
+  version = "0.20.3";
+
   src = fetchurl {
     url = "https://dl.vikunja.io/frontend/${pname}-${version}.zip";
-    sha256 = "sha256-7WvitR40eJPPdqwZm8C7spvEIdFIY3SGc/w4VY7spgk=";
+    sha256 = "sha256-+VtdgbJaXcPlO70Gqsur6osBb7iAvVnPv2iaHbs2Rmk=";
   };
 
   nativeBuildInputs = [ unzip ];
@@ -24,6 +25,7 @@ stdenv.mkDerivation rec {
   passthru.tests.vikunja = nixosTests.vikunja;
 
   meta = {
+    changelog = "https://kolaente.dev/vikunja/frontend/src/tag/v${version}/CHANGELOG.md";
     description = "Frontend of the Vikunja to-do list app";
     homepage = "https://vikunja.io/";
     license = lib.licenses.agpl3Plus;