zaphyra's git: tgcNUR

fork of https://git.transgirl.cafe/zaphoid/tgc-nix-user-repository

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 
23 
24 
25 
26 
27 
28 
29 
30 
{
  tgcMaintainers,
  lib,
  rustPlatform,
  fetchFromGitHub,
  ...
}:

rustPlatform.buildRustPackage (finalAttrs: {
  pname = "anyrun-emoji";
  version = "0.0.0-unstable-2024-06-20";
  rev = "651059a0e6efc22f9c1883439be7751d83f2a4c4";
  srcHash = "sha256-/HKAoHBEXiCokRu5Ma/esP6KoAQuwBUdQhnyCgppkxY=";
  cargoHash = "sha256-LCDUFD1FDYHSIBtz8tvDbgJLaT4Dwebhf/ZTnLefriA=";

  src = fetchFromGitHub {
    owner = "Shadorain";
    repo = finalAttrs.pname;
    hash = finalAttrs.srcHash;
    inherit (finalAttrs) rev;
  };

  meta = {
    description = "Emoji picker for the Wayland popular launcher Anyrun.";
    homepage = "https://github.com/Shadorain/anyrun-emoji";
    license = [ lib.licenses.mit ];
    platforms = lib.platforms.linux;
    maintainers = [ tgcMaintainers.zaphyra ];
  };
})