Created
May 29, 2020 03:23
-
-
Save kalbasit/f0edb9a34cab2dfef66755ca5838d778 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
while evaluating the attribute 'xorg' at /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/pkgs/top-level/all-packages.nix:14990:3: | |
while evaluating 'recurseIntoAttrs' at /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/pkgs/top-level/all-packages.nix:67:22, called from /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/pkgs/top-level/all-packages.nix:14990:10: | |
while evaluating 'callPackageWith' at /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/lib/customisation.nix:108:35, called from /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/pkgs/top-level/all-packages.nix:14990:29: | |
while evaluating 'makeOverridable' at /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/lib/customisation.nix:67:24, called from /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/lib/customisation.nix:112:8: | |
while evaluating anonymous function at /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/pkgs/servers/x11/xorg/default.nix:2:1, called from /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/lib/customisation.nix:69:12: | |
attribute 'makeScope' missing, at /nix/store/rdsir7xmi2fgyk64idk2zxir0bcj6w41-nixpkgs-base-0419d983480a3dbc8583ac55c3dc849d2f65ccc2/pkgs/servers/x11/xorg/default.nix:4:1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
(self: super: { | |
lib.mkOption = { auto-enable ? true, ... }@attrs: | |
let | |
attrs' = builtins.removeAttrs attrs [ "auto-enable" ]; | |
in | |
(super.lib.mkOption attrs') // { inherit auto-enable; }; | |
}) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment