omekasy: init at 1.2.3

This commit is contained in:
Julius Michaelis 2024-07-09 13:46:45 +09:00
parent 5219e205c6
commit 2d22740568

View File

@ -0,0 +1,29 @@
{
stdenv,
rustPlatform,
fetchFromGitHub,
lib,
}:
rustPlatform.buildRustPackage rec {
pname = "omekasy";
version = "1.2.3";
src = fetchFromGitHub {
owner = "ikanago";
repo = "omekasy";
rev = "v${version}";
hash = "sha256-oPhO+gRWrwgABc+gGXnIC519F5XVvewUHo2y54RoE4U=";
};
cargoHash = "sha256-6GjNn7FAcAihqNhPD18sUFe40ZQwXmFEQmoZNZL2trQ=";
buildNoDefaultFeatures = stdenv.targetPlatform.isWasi;
meta = {
description = "Command line application that converts alphanumeric characters to various styles defined in Unicode";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.jcaesar ];
homepage = "https://github.com/ikanago/omekasy";
mainProgram = "omekasy";
};
}