Merge pull request #193734 from dit7ya/microbin

microbin: init at 1.1.0
This commit is contained in:
figsoda 2022-09-30 14:32:38 -04:00 committed by GitHub
commit d3853783ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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

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