about summary refs log tree commit diff
path: root/pkgs/servers/microbin
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2023-03-26 16:49:50 -0400
committerfigsoda <figsoda@pm.me>2023-03-26 16:56:38 -0400
commit5c7757b10b1347c23d141a5a0c5672a81f48fda7 (patch)
tree23d8f57be8087b6fd03cdf419a599bf6b6e19bab /pkgs/servers/microbin
parenta0be54df4cd0992896d34ff12264a1c9faff7dc5 (diff)
microbin: 1.1.0 -> 1.2.1, add figsoda as a maintainer
Changelog: https://github.com/szabodanika/microbin/releases/tag/v1.2.1
Diffstat (limited to 'pkgs/servers/microbin')
-rw-r--r--pkgs/servers/microbin/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/servers/microbin/default.nix b/pkgs/servers/microbin/default.nix
index 82e30b57c3c8f..d1048d107e2e3 100644
--- a/pkgs/servers/microbin/default.nix
+++ b/pkgs/servers/microbin/default.nix
@@ -5,20 +5,21 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "microbin";
-  version = "1.1.0";
+  version = "1.2.1";
 
-  # GitHub sources do not have Cargo.lock
+  # The GitHub source is outdated
   src = fetchCrate {
     inherit pname version;
-    sha256 = "sha256-gfEO7Rrzc4KSnSXFrMmGLrTXuZIUCdumt2N429nHPi8=";
+    hash = "sha256-OLg0ejs9nanMNlY0lcnJ/RoRwefrXEaaROwx5aPx4u8=";
   };
 
-  cargoSha256 = "sha256-k/5CG8bf5RuO6K9mEj6seqV6AuWMqatBRDaSS0guhi0=";
+  cargoHash = "sha256-XdHP0XruqtyLyGbLHielnmTAc3ZgeIyyZnknO+5k4Xo=";
 
   meta = with lib; {
     description = "A tiny, self-contained, configurable paste bin and URL shortener written in Rust";
     homepage = "https://github.com/szabodanika/microbin";
+    changelog = "https://github.com/szabodanika/microbin/releases/tag/v${version}";
     license = licenses.bsd3;
-    maintainers = with maintainers; [ dit7ya ];
+    maintainers = with maintainers; [ dit7ya figsoda ];
   };
 }