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

30 lines
666 B
Nix
Raw Normal View History

2024-08-10 16:49:43 +03:00
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "mekuteriya";
version = "0.1.5";
src = fetchFromGitHub {
owner = "frectonz";
repo = "mek-ut-er-ya";
rev = version;
2024-08-10 16:49:43 +03:00
hash = "sha256-bWp2UNrhCHY2DQWusGS9L9/jI2r23F34yLpuE6nuOD0=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-YIsM2IVtV1jG/JzCR9gQPqnKhtxJYdCWdTw4FlK3Y9w=";
2024-08-10 16:49:43 +03:00
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;
};
}