chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / gi / gimoji / package.nix
blob02fe472ab39e52265b82ce34e66b1ed1329b556d
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 , stdenv
5 , darwin
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "gimoji";
10   version = "1.1.1";
12   src = fetchFromGitHub {
13     owner = "zeenix";
14     repo = "gimoji";
15     rev = version;
16     hash = "sha256-X1IiDnnRXiZBL/JBDfioKc/724TnVKaEjZLrNwX5SoA=";
17   };
19   cargoHash = "sha256-4B+IRYnqwIqkxjRjlxER8O414Zd/8Are4fu1OxA+dWI=";
21   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
22     darwin.apple_sdk.frameworks.AppKit
23   ];
25   meta = with lib; {
26     description = "Easily add emojis to your git commit messages";
27     homepage = "https://github.com/zeenix/gimoji";
28     license = licenses.mit;
29     mainProgram = "gimoji";
30     maintainers = with maintainers; [ a-kenji ];
31   };