Merge pull request #269405 from ufUNnxagpM/init-majima

majima: init at 0.4.0
This commit is contained in:
Peder Bergebakken Sundt 2023-12-03 20:45:28 +01:00 committed by GitHub
commit c2273e116f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -18808,6 +18808,11 @@
githubId = 347983;
name = "Udo Spallek";
};
ufUNnxagpM = {
github = "ufUNnxagpM";
githubId = 12422133;
name = "Chromo-residuum-opec";
};
ulrikstrid = {
email = "ulrik.strid@outlook.com";
github = "ulrikstrid";

View File

@ -0,0 +1,22 @@
{ lib, fetchFromGitLab, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "majima";
version = "0.4.0";
src = fetchFromGitLab {
owner = "gumball-overall";
repo = "majima";
rev = version;
hash = "sha256-S62DQfvZFg8C26YG+fIVJj5cJ6mz73JXSgdu5yoK0Yo=";
};
cargoHash = "sha256-zMQO6McnnGbp52A9n/h6yZTU9VH7vak2TSP0HLqDlKw=";
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";
};
}