mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-26 14:04:52 +00:00
pidginPackages: move __attrsFailEvaluation to allow deeper evaluation
The test (`nix-build pkgs/test/release/default.nix`) continues to pass.
This commit is contained in:
parent
b1afdbff75
commit
3abc5f7093
@ -14,7 +14,8 @@ lib.makeScope newScope (self:
|
||||
plugins = [];
|
||||
};
|
||||
|
||||
pidginPackages = self;
|
||||
# Prevent `pkgs/top-level/release-attrpaths-superset.nix` from recursing here.
|
||||
pidginPackages = self // { pidginPackages = self.pidginPackages // { __attrsFailEvaluation = true; }; };
|
||||
|
||||
pidgin-indicator = callPackage ./pidgin-indicator { };
|
||||
|
||||
|
@ -33436,10 +33436,7 @@ with pkgs;
|
||||
|
||||
picosnitch = callPackage ../tools/networking/picosnitch { };
|
||||
|
||||
pidginPackages =
|
||||
let pidgin-plugins =
|
||||
recurseIntoAttrs (callPackage ../applications/networking/instant-messengers/pidgin/pidgin-plugins { });
|
||||
in pidgin-plugins // { pidginPackages = pidgin-plugins.pidginPackages // { __attrsFailEvaluation = true; }; };
|
||||
pidginPackages = callPackage ../applications/networking/instant-messengers/pidgin/pidgin-plugins { };
|
||||
|
||||
inherit (pidginPackages) pidgin;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user