summary refs log tree commit diff
path: root/pkgs/applications/misc/zathura/core
diff options
context:
space:
mode:
authorSam Doshi <sam@metal-fish.co.uk>2019-10-06 15:21:38 +0100
committerSam Doshi <sam@metal-fish.co.uk>2019-10-06 15:21:38 +0100
commit2678b8e8f60b42b9d8c23524bb9b124b83e8420d (patch)
tree74521e5bd34e2d41c37d7b7251e048809cb42065 /pkgs/applications/misc/zathura/core
parent1aa3e67c57c4bac158463e2c067067f87377aee4 (diff)
downloadnixpkgs-2678b8e8f60b42b9d8c23524bb9b124b83e8420d.tar
nixpkgs-2678b8e8f60b42b9d8c23524bb9b124b83e8420d.tar.gz
nixpkgs-2678b8e8f60b42b9d8c23524bb9b124b83e8420d.tar.bz2
nixpkgs-2678b8e8f60b42b9d8c23524bb9b124b83e8420d.tar.lz
nixpkgs-2678b8e8f60b42b9d8c23524bb9b124b83e8420d.tar.xz
nixpkgs-2678b8e8f60b42b9d8c23524bb9b124b83e8420d.tar.zst
nixpkgs-2678b8e8f60b42b9d8c23524bb9b124b83e8420d.zip
zathura: 0.4.3 -> 0.4.4
Source URL and homepage also updated.
Diffstat (limited to 'pkgs/applications/misc/zathura/core')
-rw-r--r--pkgs/applications/misc/zathura/core/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix
index 8afba9353ce..99729125b63 100644
--- a/pkgs/applications/misc/zathura/core/default.nix
+++ b/pkgs/applications/misc/zathura/core/default.nix
@@ -10,11 +10,11 @@ with stdenv.lib;
 
 stdenv.mkDerivation rec {
   pname = "zathura-core";
-  version = "0.4.3";
+  version = "0.4.4";
 
   src = fetchurl {
-    url = "https://pwmt.org/projects/zathura/download/zathura-${version}.tar.xz";
-    sha256 = "0hgx5x09i6d0z45llzdmh4l348fxh1y102sb1w76f2fp4r21j4ky";
+    url = "https://git.pwmt.org/pwmt/zathura/-/archive/${version}/zathura-${version}.tar.gz";
+    sha256 = "0v5klgr009rsxi41h73k0398jbgmgh37asvwz2w15i4fzmw89jgb";
   };
 
   outputs = [ "bin" "man" "dev" "out" ];
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
   doCheck = true;
 
   meta = {
-    homepage = https://pwmt.org/projects/zathura/;
+    homepage = "https://git.pwmt.org/pwmt/zathura";
     description = "A core component for zathura PDF viewer";
     license = licenses.zlib;
     platforms = platforms.unix;