diff options
| author | seth <[email protected]> | 2023-10-07 10:10:55 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-10-07 10:18:46 -0400 |
| commit | 519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch) | |
| tree | 441a3b0cbf33a15ac052a1fd6a6894cf169f493b /pkgs/klassy.nix | |
| parent | 62a26a94a11774b7c14ea10cde0ca2294990fb9b (diff) | |
treewide!: remove flake-parts
while i love flake parts, i want to keep dependencies for this project as small as possible
Diffstat (limited to 'pkgs/klassy.nix')
| -rw-r--r-- | pkgs/klassy.nix | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/pkgs/klassy.nix b/pkgs/klassy.nix deleted file mode 100644 index b5a5c0f..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 rec { - name = "klassy"; - version = "4.3.breeze5.27.5"; - - src = fetchFromGitHub { - owner = "paulmcauley"; - repo = "klassy"; - rev = 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]; - }; -} |
