From 9006db54aaa812f2c02c3777aef47f03d6d47de3 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 17 Dec 2022 21:06:39 +0000 Subject: [PATCH] overrides: drop unused pkgs.xlibsWrapper package `xlibsWrapper` was a transitional package to move from monolithic xorg package to modules. `nixpkgs` `python3Packages.pycairo` already removed `pkgs.xlibsWrapper`. This change follow the same change. Bug: https://github.com/NixOS/nixpkgs/issues/194054 Closes: https://github.com/nix-community/poetry2nix/issues/863 --- overrides/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/overrides/default.nix b/overrides/default.nix index c6eb59128..bd3299742 100644 --- a/overrides/default.nix +++ b/overrides/default.nix @@ -1682,7 +1682,6 @@ lib.composeManyExtensions [ propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [ pkgs.cairo - pkgs.xlibsWrapper ]; mesonFlags = [ "-Dpython=${if self.isPy3k then "python3" else "python"}" ];