nltk-data: fix searchability
nltk-data is an attribute set, which leads to nixos search omitting it. Wrapping it in `recurseIntoAttrs` remedies this.
This commit is contained in:
@@ -2344,7 +2344,7 @@ with pkgs;
|
||||
|
||||
mpd-sima = python3Packages.callPackage ../tools/audio/mpd-sima { };
|
||||
|
||||
nltk-data = callPackage ../tools/text/nltk-data { };
|
||||
nltk-data = lib.recurseIntoAttrs (callPackage ../tools/text/nltk-data { });
|
||||
|
||||
seabios-coreboot = seabios.override { ___build-type = "coreboot"; };
|
||||
seabios-csm = seabios.override { ___build-type = "csm"; };
|
||||
|
||||
Reference in New Issue
Block a user