mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
fcitx5-nord: init at unstable-2021-07-27
Co-authored-by: h7x4 <h7x4@nani.wtf>
This commit is contained in:
parent
8a9d735e42
commit
29e19d0aba
33
pkgs/by-name/fc/fcitx5-nord/package.nix
Normal file
33
pkgs/by-name/fc/fcitx5-nord/package.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ stdenvNoCC
|
||||
, fetchFromGitHub
|
||||
, lib
|
||||
}:
|
||||
|
||||
stdenvNoCC.mkDerivation {
|
||||
pname = "fcitx5-nord";
|
||||
version = "unstable-2021-07-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tonyfettes";
|
||||
repo = "fcitx5-nord";
|
||||
rev = "bdaa8fb723b8d0b22f237c9a60195c5f9c9d74d1";
|
||||
hash = "sha256-qVo/0ivZ5gfUP17G29CAW0MrRFUO0KN1ADl1I/rvchE=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -pv $out/share/fcitx5/themes/
|
||||
cp -rv Nord* $out/share/fcitx5/themes/
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fcitx5 theme based on Nord color";
|
||||
homepage = "https://github.com/tonyfettes/fcitx5-nord";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ Cryolitia ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user