From fe1b72557af3d1e264b7b79b798692ee29c70bfb Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Mon, 24 Jun 2024 03:21:34 -0300 Subject: [PATCH] chore: remove unused file --- theming/catppuccin-qt5ct.nix | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 theming/catppuccin-qt5ct.nix diff --git a/theming/catppuccin-qt5ct.nix b/theming/catppuccin-qt5ct.nix deleted file mode 100644 index 29932d2..0000000 --- a/theming/catppuccin-qt5ct.nix +++ /dev/null @@ -1,34 +0,0 @@ -{ fetchFromGitHub, flavor ? "Mocha", lib, stdenvNoCC }: -let - validFlavors = [ "Frappe" "Latte" "Macchiato" "Mocha" ]; - pname = "catppucin-qt5ct"; -in -lib.checkListOfEnum "${pname}: flavors" validFlavors [ flavor ] - - stdenvNoCC.mkDerivation -{ - inherit pname; - version = "unstable-2023-10-24"; - - src = fetchFromGitHub { - owner = "catppuccin"; - repo = "qt5ct"; - rev = "89ee948e72386b816c7dad72099855fb0d46d41e"; - sha256 = "sha256-t/uyK0X7qt6qxrScmkTU2TvcVJH97hSQuF0yyvSO/qQ="; - }; - - nativeBuildInputs = [ ]; - buildInputs = [ ]; - - postPatch = '' - export HOME=$(mktemp -d) - cp -r themes/* $HOME/.config/qt5ct/colors/ - ''; - - meta = with lib; { - description = "Catppuccin for qt5ct"; - homepage = "https://github.com/catppuccin/qt5ct"; - license = licenses.mit; - maintainers = with maintainers; [ ]; - }; -}