33 lines
733 B
Nix
33 lines
733 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
stdenv,
|
|
darwin,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "gimoji";
|
|
version = "1.1.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zeenix";
|
|
repo = "gimoji";
|
|
rev = version;
|
|
hash = "sha256-X1IiDnnRXiZBL/JBDfioKc/724TnVKaEjZLrNwX5SoA=";
|
|
};
|
|
|
|
cargoHash = "sha256-4B+IRYnqwIqkxjRjlxER8O414Zd/8Are4fu1OxA+dWI=";
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
darwin.apple_sdk.frameworks.AppKit
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Easily add emojis to your git commit messages";
|
|
homepage = "https://github.com/zeenix/gimoji";
|
|
license = licenses.mit;
|
|
mainProgram = "gimoji";
|
|
maintainers = with maintainers; [ a-kenji ];
|
|
};
|
|
}
|