microbin: 1.1.0 -> 1.2.1, add figsoda as a maintainer

Changelog: https://github.com/szabodanika/microbin/releases/tag/v1.2.1
This commit is contained in:
figsoda 2023-03-26 16:49:50 -04:00
parent a0be54df4c
commit 5c7757b10b

View File

@ -5,20 +5,21 @@
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "microbin"; pname = "microbin";
version = "1.1.0"; version = "1.2.1";
# GitHub sources do not have Cargo.lock # The GitHub source is outdated
src = fetchCrate { src = fetchCrate {
inherit pname version; inherit pname version;
sha256 = "sha256-gfEO7Rrzc4KSnSXFrMmGLrTXuZIUCdumt2N429nHPi8="; hash = "sha256-OLg0ejs9nanMNlY0lcnJ/RoRwefrXEaaROwx5aPx4u8=";
}; };
cargoSha256 = "sha256-k/5CG8bf5RuO6K9mEj6seqV6AuWMqatBRDaSS0guhi0="; cargoHash = "sha256-XdHP0XruqtyLyGbLHielnmTAc3ZgeIyyZnknO+5k4Xo=";
meta = with lib; { meta = with lib; {
description = "A tiny, self-contained, configurable paste bin and URL shortener written in Rust"; description = "A tiny, self-contained, configurable paste bin and URL shortener written in Rust";
homepage = "https://github.com/szabodanika/microbin"; homepage = "https://github.com/szabodanika/microbin";
changelog = "https://github.com/szabodanika/microbin/releases/tag/v${version}";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ dit7ya ]; maintainers = with maintainers; [ dit7ya figsoda ];
}; };
} }