Skip to content

Commit

Permalink
omekasy: init at 1.2.3 (#325744)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksanaa authored Sep 9, 2024
2 parents 2eb0e64 + 2d22740 commit cd470bb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions pkgs/by-name/om/omekasy/package.nix
Original file line number Diff line number Diff line change
@@ -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";
};
}

0 comments on commit cd470bb

Please sign in to comment.