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

28 lines
607 B
Nix
Raw Permalink Normal View History

2023-06-29 00:12:29 +02:00
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "gimoji";
2024-10-01 21:50:57 +02:00
version = "1.1.1";
2023-06-29 00:12:29 +02:00
src = fetchFromGitHub {
owner = "zeenix";
repo = "gimoji";
rev = version;
2024-10-01 21:50:57 +02:00
hash = "sha256-X1IiDnnRXiZBL/JBDfioKc/724TnVKaEjZLrNwX5SoA=";
2023-06-29 00:12:29 +02:00
};
cargoHash = "sha256-vAhHCNsViYyNSKeSGUL2oIp8bp5UCm8HReyDuoFvfqs=";
2023-06-29 00:12:29 +02:00
meta = with lib; {
description = "Easily add emojis to your git commit messages";
homepage = "https://github.com/zeenix/gimoji";
license = licenses.mit;
2023-10-29 17:01:17 +01:00
mainProgram = "gimoji";
2023-06-29 00:12:29 +02:00
maintainers = with maintainers; [ a-kenji ];
};
}