about summary refs log tree commit diff
path: root/pkgs/by-name/ca
diff options
context:
space:
mode:
authorLeah Amelia Chen <hi@pluie.me>2024-01-02 18:15:23 +0100
committerLeah Amelia Chen <hi@pluie.me>2024-06-10 22:31:50 +0200
commitdfa880f77f7d1bffbd42ecd25ae45c331b61ed73 (patch)
tree560cfe7e595f2c1e65508e77071b3065aba8ebc4 /pkgs/by-name/ca
parentd26fb519dbe1f3eb616bb76c8a6ff0131af1c30d (diff)
catppuccin-fcitx5: init at 2022-10-05
Diffstat (limited to 'pkgs/by-name/ca')
-rw-r--r--pkgs/by-name/ca/catppuccin-fcitx5/package.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/by-name/ca/catppuccin-fcitx5/package.nix b/pkgs/by-name/ca/catppuccin-fcitx5/package.nix
new file mode 100644
index 0000000000000..879b14960b2a5
--- /dev/null
+++ b/pkgs/by-name/ca/catppuccin-fcitx5/package.nix
@@ -0,0 +1,31 @@
+{
+  lib,
+  stdenvNoCC,
+  fetchFromGitHub,
+}:
+stdenvNoCC.mkDerivation {
+  pname = "catppuccin-fcitx5";
+  version = "0-unstable-2022-10-05";
+
+  src = fetchFromGitHub {
+    owner = "catppuccin";
+    repo = "fcitx5";
+    rev = "ce244cfdf43a648d984719fdfd1d60aab09f5c97";
+    hash = "sha256-uFaCbyrEjv4oiKUzLVFzw+UY54/h7wh2cntqeyYwGps=";
+  };
+
+  installPhase = ''
+    runHook preInstall
+    mkdir -p $out/share/fcitx5
+    cp -r src $out/share/fcitx5/themes
+    runHook postInstall
+  '';
+
+  meta = {
+    description = "Soothing pastel theme for Fcitx5";
+    homepage = "https://github.com/catppuccin/fcitx5";
+    license = lib.licenses.mit;
+    maintainers = with lib.maintainers; [ pluiedev ];
+    platforms = lib.platforms.all;
+  };
+}