mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
7 lines
214 B
Nix
7 lines
214 B
Nix
|
{ lib, callPackage }:
|
||
|
|
||
|
lib.recurseIntoAttrs {
|
||
|
withStructuredAttrs = callPackage ./package.nix { __structuredAttrs = true; };
|
||
|
withoutStructuredAttrs = callPackage ./package.nix { __structuredAttrs = false; };
|
||
|
}
|