summary refs log tree commit diff
path: root/nixos/modules/config/no-x-libs.nix
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2023-03-09 20:57:06 +0200
committerArtturin <Artturin@artturin.com>2023-03-09 21:16:03 +0200
commit2cbbef006b5b48dc9428d3caa99f853fedc6bfe7 (patch)
tree507f3d58a639ac2c4b8e415bcfa50d2cfa0498eb /nixos/modules/config/no-x-libs.nix
parent7d8b42a553f3fa2f76e1b754b424d1c3c23bd7d0 (diff)
downloadnixpkgs-2cbbef006b5b48dc9428d3caa99f853fedc6bfe7.tar
nixpkgs-2cbbef006b5b48dc9428d3caa99f853fedc6bfe7.tar.gz
nixpkgs-2cbbef006b5b48dc9428d3caa99f853fedc6bfe7.tar.bz2
nixpkgs-2cbbef006b5b48dc9428d3caa99f853fedc6bfe7.tar.lz
nixpkgs-2cbbef006b5b48dc9428d3caa99f853fedc6bfe7.tar.xz
nixpkgs-2cbbef006b5b48dc9428d3caa99f853fedc6bfe7.tar.zst
nixpkgs-2cbbef006b5b48dc9428d3caa99f853fedc6bfe7.zip
qt5: use makeScopeWithSplicing
if there is more than one qt5 attr and this file is copied then the arg
to generateSplicesForMkScope should be changed
Diffstat (limited to 'nixos/modules/config/no-x-libs.nix')
-rw-r--r--nixos/modules/config/no-x-libs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix
index 763c2038f6d..3ebe2fa9f16 100644
--- a/nixos/modules/config/no-x-libs.nix
+++ b/nixos/modules/config/no-x-libs.nix
@@ -61,7 +61,7 @@ with lib;
       pinentry = super.pinentry.override { enabledFlavors = [ "curses" "tty" "emacs" ]; withLibsecret = false; };
       qemu = super.qemu.override { gtkSupport = false; spiceSupport = false; sdlSupport = false; };
       qrencode = super.qrencode.overrideAttrs (_: { doCheck = false; });
-      qt5 = super.qt5.overrideScope' (const (super': {
+      qt5 = super.qt5.overrideScope (const (super': {
         qtbase = super'.qtbase.override { withGtk3 = false; };
       }));
       stoken = super.stoken.override { withGTK3 = false; };