ieda: init at 0-unstable-2024-10-11 (#338769)
[NixPkgs.git] / pkgs / by-name / fc / fcitx5-nord / package.nix
blobcec74a607153c5b449f220f56f1eac7036fe30df
2   stdenvNoCC,
3   fetchFromGitHub,
4   lib,
5 }:
7 stdenvNoCC.mkDerivation {
8   pname = "fcitx5-nord";
9   version = "unstable-2021-07-27";
11   src = fetchFromGitHub {
12     owner = "tonyfettes";
13     repo = "fcitx5-nord";
14     rev = "bdaa8fb723b8d0b22f237c9a60195c5f9c9d74d1";
15     hash = "sha256-qVo/0ivZ5gfUP17G29CAW0MrRFUO0KN1ADl1I/rvchE=";
16   };
18   installPhase = ''
19     runHook preInstall
21     mkdir -pv $out/share/fcitx5/themes/
22     cp -rv Nord* $out/share/fcitx5/themes/
24     runHook postInstall
25   '';
27   meta = with lib; {
28     description = "Fcitx5 theme based on Nord color";
29     homepage = "https://github.com/tonyfettes/fcitx5-nord";
30     license = licenses.mit;
31     maintainers = with maintainers; [ Cryolitia ];
32     platforms = platforms.all;
33   };