evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fc / fcitx5-nord / package.nix
blob6ab7fc15f0a20de9c43ccbacbca9bbc517bb4f5d
1 { stdenvNoCC
2 , fetchFromGitHub
3 , lib
4 }:
6 stdenvNoCC.mkDerivation {
7   pname = "fcitx5-nord";
8   version = "unstable-2021-07-27";
10   src = fetchFromGitHub {
11     owner = "tonyfettes";
12     repo = "fcitx5-nord";
13     rev = "bdaa8fb723b8d0b22f237c9a60195c5f9c9d74d1";
14     hash = "sha256-qVo/0ivZ5gfUP17G29CAW0MrRFUO0KN1ADl1I/rvchE=";
15   };
17   installPhase = ''
18     runHook preInstall
20     mkdir -pv $out/share/fcitx5/themes/
21     cp -rv Nord* $out/share/fcitx5/themes/
23     runHook postInstall
24   '';
26   meta = with lib; {
27     description = "Fcitx5 theme based on Nord color";
28     homepage = "https://github.com/tonyfettes/fcitx5-nord";
29     license = licenses.mit;
30     maintainers = with maintainers; [ Cryolitia ];
31     platforms = platforms.all;
32   };