fcitx5-tokyonight: init at unstable-2024-01-28
im a fucking moron https://github.com/ch3n9w/fcitx5-Tokyonight/issues/1
This commit is contained in:
parent
9aefa3acfa
commit
79df0364c3
2 changed files with 40 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
pkgs: {
|
||||
fcitx5-tokyonight = pkgs.callPackage ./fcitx5-tokyonight {};
|
||||
metacubexd = pkgs.callPackage ./metacubexd {};
|
||||
mpvScripts.modernx = pkgs.callPackage ./mpvScripts/modernx {};
|
||||
}
|
||||
|
|
39
pkgs/fcitx5-tokyonight/default.nix
Normal file
39
pkgs/fcitx5-tokyonight/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "fcitx5-tokyonight";
|
||||
version = "unstable-2024-01-28";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ch3n9w";
|
||||
repo = "fcitx5-Tokyonight";
|
||||
rev = "f7454ab387d6b071ee12ff7ee819f0c7030fdf2c";
|
||||
hash = "sha256-swOy0kDZUdqtC2sPSZEBLnHSs8dpQ/QfFMObI6BARfo=";
|
||||
};
|
||||
|
||||
dontConfigure = true;
|
||||
dontBuild = true;
|
||||
|
||||
installPhase = ''
|
||||
install -Dm644 Tokyonight-Day/{arrow.png,panel.png,radio.png} -t $out/share/${finalAttrs.pname}/
|
||||
for _variant in Tokyonight-Day Tokyonight-Storm; do
|
||||
mkdir -p $out/share/fcitx5/themes/$_variant/
|
||||
ln -s $out/share/${finalAttrs.pname}/arrow.png $out/share/fcitx5/themes/$_variant/arrow.png
|
||||
ln -s $out/share/${finalAttrs.pname}/radio.png $out/share/fcitx5/themes/$_variant/radio.png
|
||||
install -Dm644 $_variant/theme.conf $out/share/fcitx5/themes/$_variant/theme.conf
|
||||
done
|
||||
'';
|
||||
|
||||
passthru.updateScript = nix-update-script {};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Fcitx5 theme using TokyoNight colorscheme";
|
||||
homepage = "https://github.com/ch3n9w/fcitx5-Tokyonight";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
})
|
Loading…
Reference in a new issue