https://bugs.kde.org/show_bug.cgi?id=485496

--- Comment #11 from Florian RICHER <florian.ric...@protonmail.com> ---
Tested with

{
  description = "Kwin Test";

  inputs = {
    nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    flake-utils.url = "github:numtide/flake-utils";
  };

  outputs = { self, nixpkgs, flake-utils }:
    flake-utils.lib.eachSystem flake-utils.lib.allSystems (system:
      let
        pkgs = import nixpkgs { 
         inherit system;
          overlays = [
            (self: super: {
              kdePackages = super.kdePackages.overrideScope (kde-self:
kde-super: rec {
                kwin = kde-super.kwin.overrideAttrs (oldAttrs: rec {
                  patches = oldAttrs.patches ++ [
                   ./5741.patch
                  ];
                });
              });
            })
          ];
        };
      in
      {
        devShells = rec {
          default = pkgs.mkShell {
            buildInputs = with pkgs; [
             kdePackages.kwin
            ];
          };
        };
      });
}

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to