Merge pull request #333690 from frectonz/mekuteriya

mekuteriya: init at 0.1.5
This commit is contained in:
Aleksana 2024-08-26 16:58:32 +08:00 committed by GitHub
commit 621d3afa88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 34 additions and 0 deletions

View File

@ -6991,6 +6991,12 @@
githubId = 14952658;
name = "Tom Dohrmann";
};
frectonz = {
name = "Fraol Lemecha";
email = "fraol0912@gmail.com";
github = "frectonz";
githubId = 53809656;
};
fredeb = {
email = "im@fredeb.dev";
github = "FredeEB";

View File

@ -0,0 +1,28 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "mekuteriya";
version = "0.1.5";
src = fetchFromGitHub {
owner = "frectonz";
repo = "mek-ut-er-ya";
rev = version;
hash = "sha256-bWp2UNrhCHY2DQWusGS9L9/jI2r23F34yLpuE6nuOD0=";
};
cargoHash = "sha256-WkrlQbNTP3lNEtlnAMrTd9lBo2Q4dECqtV29kmV8F7A=";
meta = {
description = "Ethiopian Calendar CLI";
homepage = "https://github.com/frectonz/mek-ut-er-ya";
mainProgram = "mekuteriya";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.frectonz ];
platforms = lib.platforms.all;
};
}