mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-10 03:26:59 +00:00

This change refactors internal hooks used by buildDotnetModule to support derivations with structured attributes. Note that this changes variable names that the internal hooks expect.
8 lines
254 B
Nix
8 lines
254 B
Nix
{ lib, callPackage }:
|
|
|
|
{
|
|
project-references = callPackage ./project-references { };
|
|
use-dotnet-from-env = lib.recurseIntoAttrs (callPackage ./use-dotnet-from-env { });
|
|
structured-attrs = lib.recurseIntoAttrs (callPackage ./structured-attrs { });
|
|
}
|