depot/pkgs/by-name/ma/majima/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

22 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";
};
}