about summary refs log tree commit diff
path: root/pkgs/development/libraries/libzim
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-04 10:30:57 +0100
committerGitHub <noreply@github.com>2022-12-04 10:30:57 +0100
commitbd7d06ed30e83b0c8e53127f43e9d5f763b2665b (patch)
treea7c8f26ca191d88e70308d310efdbc41318af815 /pkgs/development/libraries/libzim
parentfe49c3168000bbbe59d89c273e98f1d289d06d0c (diff)
libzim: add changelog to meta
Diffstat (limited to 'pkgs/development/libraries/libzim')
-rw-r--r--pkgs/development/libraries/libzim/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libzim/default.nix b/pkgs/development/libraries/libzim/default.nix
index f54f84f70d133..23c3e902608a8 100644
--- a/pkgs/development/libraries/libzim/default.nix
+++ b/pkgs/development/libraries/libzim/default.nix
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
   src = fetchFromGitHub {
     owner = "openzim";
     repo = pname;
-    rev = version;
-    sha256 = "sha256-ab7UUF+I0/xaGChvdjylEQRHLOjmtg/wk+/JEGehGLE=";
+    rev = "refs/tags/${version}";
+    hash = "sha256-ab7UUF+I0/xaGChvdjylEQRHLOjmtg/wk+/JEGehGLE=";
   };
 
   nativeBuildInputs = [
@@ -42,6 +42,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Reference implementation of the ZIM specification";
     homepage = "https://github.com/openzim/libzim";
+    changelog = "https://github.com/openzim/libzim/releases/tag/${version}";
     license = licenses.gpl2Plus;
     maintainers = with maintainers; [ fab ];
   };