about summary refs log tree commit diff
path: root/pkgs/tools/text/mdbook-emojicodes
diff options
context:
space:
mode:
authorDavid Arnold <david.arnold@iohk.io>2023-08-16 19:38:44 +0200
committerDavid Arnold <david.arnold@iohk.io>2023-08-16 19:38:44 +0200
commit8a9eb199071f671ae5f9d87e6b5d804145654a7b (patch)
treec2ed970cf14f585a968a4812d615b6872797ab4e /pkgs/tools/text/mdbook-emojicodes
parentd28fdbe9742c680ec410bd70bf2962b90a374d36 (diff)
downloadnixlib-8a9eb199071f671ae5f9d87e6b5d804145654a7b.tar
nixlib-8a9eb199071f671ae5f9d87e6b5d804145654a7b.tar.gz
nixlib-8a9eb199071f671ae5f9d87e6b5d804145654a7b.tar.bz2
nixlib-8a9eb199071f671ae5f9d87e6b5d804145654a7b.tar.lz
nixlib-8a9eb199071f671ae5f9d87e6b5d804145654a7b.tar.xz
nixlib-8a9eb199071f671ae5f9d87e6b5d804145654a7b.tar.zst
nixlib-8a9eb199071f671ae5f9d87e6b5d804145654a7b.zip
mdbook-emojicodes: 0.1.3.1 -> 0.2.2
Diffstat (limited to 'pkgs/tools/text/mdbook-emojicodes')
-rw-r--r--pkgs/tools/text/mdbook-emojicodes/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/text/mdbook-emojicodes/default.nix b/pkgs/tools/text/mdbook-emojicodes/default.nix
index 01ce8fb3e9db..63bf0dc6daf1 100644
--- a/pkgs/tools/text/mdbook-emojicodes/default.nix
+++ b/pkgs/tools/text/mdbook-emojicodes/default.nix
@@ -7,16 +7,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "mdbook-emojicodes";
-  version = "0.1.3";
+  version = "0.2.2";
 
   src = fetchFromGitHub {
     owner = "blyxyas";
     repo = "mdbook-emojicodes";
-    rev = "${version}.1";
-    hash = "sha256-SWT01R/+FuzkkOUd/2wpRo0HIaPEtzDelTSh7ewo9gQ=";
+    rev = "${version}";
+    hash = "sha256-wj3WVDDJmRh1g4E1iqxqmu6QNNVi9pOqZDnnDX3AnFo=";
   };
 
-  cargoHash = "sha256-z9UKBBCr8R1I9k48JsEBnVokQDfaj9lt+qfIUvJ/5lE=";
+  cargoHash = "sha256-Ia7GdMadx1Jb1BB040eRmyIpK98CsN3yjruUxUNh3co=";
 
   buildInputs = lib.optionals stdenv.isDarwin [
     darwin.apple_sdk.frameworks.CoreFoundation
@@ -25,6 +25,7 @@ rustPlatform.buildRustPackage rec {
   meta = with lib; {
     description = "MDBook preprocessor for converting emojicodes (e.g. `: cat :`) into emojis 🐱";
     homepage = "https://github.com/blyxyas/mdbook-emojicodes";
+    changelog = "https://github.com/blyxyas/mdbook-emojicodes/releases/tag/${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ blaggacao ];
   };