summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-05-22 03:38:39 -0400
committerseth <[email protected]>2024-05-22 16:21:31 -0600
commitdd17592efc03628a758a23fd9afc1cc47d128b32 (patch)
treec1c9da8f15e5cd77cbdd14e904810ecb26153103
parent0f636010f34fb8bdfa1015d779c2ce86bda47251 (diff)
klassy: drop
i don't care to maintain this anymore
-rw-r--r--overlay.nix2
-rw-r--r--pkgs/klassy.nix48
2 files changed, 0 insertions, 50 deletions
diff --git a/overlay.nix b/overlay.nix
index 7e0e548..9a796aa 100644
--- a/overlay.nix
+++ b/overlay.nix
@@ -14,7 +14,5 @@ in
flat-manager = callPackage ./pkgs/flat-manager.nix {inherit (final) flat-manager;};
flat-manager-client = callPackage ./pkgs/flat-manager-client.nix {inherit (final) flat-manager;};
- klassy = prev.libsForQt5.callPackage ./pkgs/klassy.nix {};
-
papa = callPackage ./pkgs/papa/package.nix {inherit (final) papa;};
}
diff --git a/pkgs/klassy.nix b/pkgs/klassy.nix
deleted file mode 100644
index f4c809a..0000000
--- a/pkgs/klassy.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-{
- lib,
- stdenv,
- fetchFromGitHub,
- cmake,
- ninja,
- extra-cmake-modules,
- kcmutils,
- kdecoration,
- kirigami2,
- wrapQtAppsHook,
-}:
-stdenv.mkDerivation (finalAttrs: {
- pname = "klassy";
- version = "4.3.breeze5.27.5";
-
- src = fetchFromGitHub {
- owner = "paulmcauley";
- repo = "klassy";
- rev = finalAttrs.version;
- hash = "sha256-2qs30L7U5kf1Yf+4Pgsjsyaqf9iIaeuRK25Xtn47AYI=";
- };
-
- buildInputs = [
- kcmutils
- kdecoration
- kirigami2
- ];
-
- nativeBuildInputs = [
- cmake
- ninja
- extra-cmake-modules
- wrapQtAppsHook
- ];
-
- meta = with lib; {
- description = "a highly customizable binary Window Decoration and Application Style plugin";
- longDescription = ''
- Klassy is a highly customizable binary Window Decoration and Application
- Style plugin for recent versions of the KDE Plasma desktop. It provides
- the Klassy, Kite, Oxygen/Breeze, and Redmond icon styles.
- '';
- homepage = "https://github.com/paulmcauley/klassy";
- platforms = platforms.linux;
- maintainers = with maintainers; [getchoo];
- };
-})