From f06519bd9700d7300607baa5fa3701b00ed701b3 Mon Sep 17 00:00:00 2001 From: David McFarland Date: Thu, 15 Sep 2022 19:40:42 -0300 Subject: [PATCH] dotnet-sdk: use lib.attrNames --- pkgs/development/compilers/dotnet/build-dotnet.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/dotnet/build-dotnet.nix b/pkgs/development/compilers/dotnet/build-dotnet.nix index 91b02f527d00..75d1be9deede 100644 --- a/pkgs/development/compilers/dotnet/build-dotnet.nix +++ b/pkgs/development/compilers/dotnet/build-dotnet.nix @@ -148,6 +148,6 @@ stdenv.mkDerivation (finalAttrs: rec { license = licenses.mit; maintainers = with maintainers; [ kuznero mdarocha ]; mainProgram = "dotnet"; - platforms = builtins.attrNames srcs; + platforms = attrNames srcs; }; })