mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
f7d8046fb8
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 { });
|
|
}
|