mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
23 lines
643 B
Nix
23 lines
643 B
Nix
{ lib, fetchFromSourcehut, rustPlatform }:
|
|
rustPlatform.buildRustPackage {
|
|
pname = "majima";
|
|
version = "0.5.0";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~cucumber-zoom";
|
|
repo = "majima";
|
|
rev = "0f32dceeaf09c082cf33ab31b40d3bfc45aaa6f8";
|
|
hash = "sha256-P5E0Wiy3mNPRCQ/bsIW4fG7LnPSPRXmW7pnbgl0/lBQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-sblSlmXkiJkVGbrMU6HgtvYnAd48SlUOgDwB6ASMFsQ=";
|
|
|
|
meta = {
|
|
description = "Generate random usernames quickly and in various formats";
|
|
homepage = "https://majima.matte.fyi/";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.ufUNnxagpM ];
|
|
mainProgram = "majima";
|
|
};
|
|
}
|