ripasso-cursive: cosmetic changes (#361736)
[NixPkgs.git] / pkgs / by-name / ca / catppuccin-fcitx5 / package.nix
blob804dd90b6ab15478c3ef0465e02ccbdca34752e3
2   lib,
3   stdenvNoCC,
4   fetchFromGitHub,
5   unstableGitUpdater,
6 }:
7 stdenvNoCC.mkDerivation {
8   pname = "catppuccin-fcitx5";
9   version = "0-unstable-2024-09-01";
11   src = fetchFromGitHub {
12     owner = "catppuccin";
13     repo = "fcitx5";
14     rev = "3471b918d4b5aab2d3c3dd9f2c3b9c18fb470e8e";
15     hash = "sha256-1IqFVTEY6z8yNjpi5C+wahMN1kpt0OJATy5echjPXmc=";
16   };
18   dontConfigure = true;
19   dontBuild = true;
21   installPhase = ''
22     runHook preInstall
23     mkdir -p $out/share/fcitx5
24     cp -r src $out/share/fcitx5/themes
25     runHook postInstall
26   '';
28   passthru.updateScript = unstableGitUpdater { };
30   meta = {
31     description = "Soothing pastel theme for Fcitx5";
32     homepage = "https://github.com/catppuccin/fcitx5";
33     license = lib.licenses.mit;
34     maintainers = with lib.maintainers; [ pluiedev Guanran928 ];
35     platforms = lib.platforms.all;
36   };