mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
10 lines
392 B
Nix
10 lines
392 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 { });
|
|
final-attrs = lib.recurseIntoAttrs (callPackage ./final-attrs { });
|
|
nuget-deps = lib.recurseIntoAttrs (callPackage ./nuget-deps { });
|
|
}
|