Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
39 lines
896 B
Nix
39 lines
896 B
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
jdupes,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "fcitx5-fluent";
|
|
version = "0.4.0-unstable-2024-03-30";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Reverier-Xu";
|
|
repo = "Fluent-fcitx5";
|
|
rev = "dc98bc13e8eadabed7530a68706f0a2a0a07340e";
|
|
hash = "sha256-d1Y0MUOofBxwyeoXxUzQHrngL1qnL3TMa5DhDki7Pk8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ jdupes ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/fcitx5/themes
|
|
cp -r FluentDark FluentDark-solid FluentLight FluentLight-solid $out/share/fcitx5/themes
|
|
jdupes --quiet --link-soft --recurse $out/share
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Fluent-design theme with blur effect and shadow";
|
|
homepage = "https://github.com/Reverier-Xu/Fluent-fcitx5";
|
|
license = licenses.mpl20;
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|