about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-01-17 10:43:18 -0500
committerGitHub <noreply@github.com>2024-01-17 10:43:18 -0500
commitb19d5067d05067e11b422894fdf3fc1096337cbd (patch)
tree62f2db21de6b81aba8a8c373cd00f659023b7e96 /pkgs/applications
parent015bcd8ec2c119d2a9583d27de914566efc87eb4 (diff)
parent290031a530772b607395237b340802681ace5a5a (diff)
Merge pull request #281431 from chuangzhu/komikku
komikku: 1.33.0 -> 1.35.0
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/komikku/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/applications/graphics/komikku/default.nix b/pkgs/applications/graphics/komikku/default.nix
index bbce1b15a19a3..bbe7bd88c9c4d 100644
--- a/pkgs/applications/graphics/komikku/default.nix
+++ b/pkgs/applications/graphics/komikku/default.nix
@@ -1,5 +1,5 @@
 { lib
-, fetchFromGitLab
+, fetchFromGitea
 , desktop-file-utils
 , gettext
 , glib
@@ -19,15 +19,16 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "komikku";
-  version = "1.33.0";
+  version = "1.35.0";
 
   format = "other";
 
-  src = fetchFromGitLab {
+  src = fetchFromGitea {
+    domain = "codeberg.org";
     owner = "valos";
     repo = "Komikku";
     rev = "v${version}";
-    hash = "sha256-59RkynW02gxVPz48diC1Th+vtru+oHMeuArfdA2a1IU=";
+    hash = "sha256-oyXeh+/9tzykt2fhsKNrk1iaO8556LyCHGVxAxRojLw=";
   };
 
   nativeBuildInputs = [
@@ -87,9 +88,9 @@ python3.pkgs.buildPythonApplication rec {
 
   meta = with lib; {
     description = "Manga reader for GNOME";
-    homepage = "https://valos.gitlab.io/Komikku/";
+    homepage = "https://apps.gnome.org/Komikku/";
     license = licenses.gpl3Plus;
-    changelog = "https://gitlab.com/valos/Komikku/-/releases/v${version}";
+    changelog = "https://codeberg.org/valos/Komikku/releases/tag/v${version}";
     maintainers = with maintainers; [ chuangzhu infinitivewitch ];
   };
 }