Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
639 B
Nix
Raw Permalink Normal View History

2024-05-22 02:02:11 -07:00
{
lib,
fetchFromSourcehut,
rustPlatform,
}:
rustPlatform.buildRustPackage {
2023-11-23 01:46:15 -08:00
pname = "majima";
2025-05-24 14:05:00 -07:00
version = "0.5.1";
2023-11-23 01:46:15 -08:00
2024-05-22 02:02:11 -07:00
src = fetchFromSourcehut {
2025-05-24 14:05:00 -07:00
owner = "~wq";
2023-11-23 01:46:15 -08:00
repo = "majima";
2025-05-24 14:05:00 -07:00
rev = "630427fcd158ccbaafe8bc3f7368fa8577b03548";
hash = "sha256-znlJY/U7H+BvBM7n4IqE5x9ek1/QVxYkptsAnODz/Q0=";
2023-11-23 01:46:15 -08:00
};
2025-05-24 14:05:00 -07:00
cargoHash = "sha256-I0txA41rmTZ3AHllRVsJzmZXbrm5+GSdd08EatxKCzk=";
2023-11-23 01:46:15 -08:00
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";
};
}