aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/krohnkite.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/krohnkite.nix')
-rw-r--r--nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/krohnkite.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/krohnkite.nix b/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/krohnkite.nix
deleted file mode 100644
index abd655db375..00000000000
--- a/nixpkgs/pkgs/desktops/plasma-5/kwin/scripts/krohnkite.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib, mkDerivation, fetchFromGitHub
-, kcoreaddons, kwindowsystem, plasma-framework, systemsettings }:
-
-mkDerivation rec {
- pname = "krohnkite";
- version = "0.7";
-
- src = fetchFromGitHub {
- owner = "esjeon";
- repo = "krohnkite";
- rev = "v${version}";
- sha256 = "0j3rm1w6d545qlmx02xs72b5zsigm48hp7lp7yh30z3cjqm00aap";
- };
-
- buildInputs = [
- kcoreaddons kwindowsystem plasma-framework systemsettings
- ];
-
- dontBuild = true;
-
- # 1. --global still installs to $HOME/.local/share so we use --packageroot
- # 2. plasmapkg2 doesn't copy metadata.desktop into place, so we do that manually
- installPhase = ''
- runHook preInstall
-
- plasmapkg2 --type kwinscript --install ${src}/res/ --packageroot $out/share/kwin/scripts
- install -Dm644 ${src}/res/metadata.desktop $out/share/kservices5/krohnkite.desktop
-
- runHook postInstalll
- '';
-
- meta = with lib; {
- description = "A dynamic tiling extension for KWin";
- license = licenses.mit;
- maintainers = with maintainers; [ seqizz ];
- inherit (src.meta) homepage;
- inherit (kwindowsystem.meta) platforms;
- };
-}