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
35 lines
758 B
Nix
35 lines
758 B
Nix
{
|
|
stdenvNoCC,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation {
|
|
pname = "fcitx5-rose-pine";
|
|
version = "0-unstable-2024-03-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rose-pine";
|
|
repo = "fcitx5";
|
|
rev = "148de09929c2e2f948376bb23bc25d72006403bc";
|
|
hash = "sha256-SpQ5ylHSDF5KCwKttAlXgrte3GA1cCCy/0OKNT1a3D8=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -pv $out/share/fcitx5/themes/
|
|
cp -rv rose-pine* $out/share/fcitx5/themes/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Fcitx5 themes based on Rosé Pine";
|
|
homepage = "https://github.com/rose-pine/fcitx5";
|
|
maintainers = with lib.maintainers; [ rosehobgoblin ];
|
|
platforms = lib.platforms.all;
|
|
license = lib.licenses.unfree;
|
|
};
|
|
}
|