microbin: init at 1.1.0

This commit is contained in:
Mostly Void 2022-09-30 21:30:07 +05:30
parent b881869205
commit 711e539d21
No known key found for this signature in database
GPG Key ID: E2B7342D0CAA82C2
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "microbin";
version = "1.1.0";
# GitHub sources do not have Cargo.lock
src = fetchCrate {
inherit pname version;
sha256 = "sha256-gfEO7Rrzc4KSnSXFrMmGLrTXuZIUCdumt2N429nHPi8=";
};
cargoSha256 = "sha256-k/5CG8bf5RuO6K9mEj6seqV6AuWMqatBRDaSS0guhi0=";
meta = with lib; {
description = "A tiny, self-contained, configurable paste bin and URL shortener written in Rust";
homepage = "https://github.com/szabodanika/microbin";
license = licenses.bsd3;
maintainers = with maintainers; [ dit7ya ];
};
}

View File

@ -8995,6 +8995,8 @@ with pkgs;
mfoc = callPackage ../tools/security/mfoc { };
microbin = callPackage ../servers/microbin { };
microdnf = callPackage ../tools/package-management/microdnf { };
microplane = callPackage ../tools/misc/microplane { };