From eea3dedaf462ebb32775167f4206a5b4e6f9e673 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Thu, 16 Jul 2020 14:07:25 -0700 Subject: [PATCH] dotnetCorePackages: rename files --- .../compilers/dotnet/{buildDotnet.nix => build-dotnet.nix} | 0 .../dotnet/{combinePackages.nix => combine-packages.nix} | 0 pkgs/development/compilers/dotnet/default.nix | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename pkgs/development/compilers/dotnet/{buildDotnet.nix => build-dotnet.nix} (100%) rename pkgs/development/compilers/dotnet/{combinePackages.nix => combine-packages.nix} (100%) diff --git a/pkgs/development/compilers/dotnet/buildDotnet.nix b/pkgs/development/compilers/dotnet/build-dotnet.nix similarity index 100% rename from pkgs/development/compilers/dotnet/buildDotnet.nix rename to pkgs/development/compilers/dotnet/build-dotnet.nix diff --git a/pkgs/development/compilers/dotnet/combinePackages.nix b/pkgs/development/compilers/dotnet/combine-packages.nix similarity index 100% rename from pkgs/development/compilers/dotnet/combinePackages.nix rename to pkgs/development/compilers/dotnet/combine-packages.nix diff --git a/pkgs/development/compilers/dotnet/default.nix b/pkgs/development/compilers/dotnet/default.nix index b14c7b40f7ec..e04f7a03f942 100644 --- a/pkgs/development/compilers/dotnet/default.nix +++ b/pkgs/development/compilers/dotnet/default.nix @@ -4,13 +4,13 @@ dotnetCombined = with dotnetCorePackages; combinePackages [ sdk_3_1 sdk_2_2 sdk_ */ { callPackage }: let - buildDotnet = attrs: callPackage (import ./buildDotnet.nix attrs) {}; + buildDotnet = attrs: callPackage (import ./build-dotnet.nix attrs) {}; buildAspNetCore = attrs: buildDotnet (attrs // { type = "aspnetcore"; }); buildNetCore = attrs: buildDotnet (attrs // { type = "netcore"; }); buildNetCoreSdk = attrs: buildDotnet (attrs // { type = "sdk"; }); in rec { - combinePackages = attrs: callPackage (import ./combinePackages.nix attrs) {}; + combinePackages = attrs: callPackage (import ./combine-packages.nix attrs) {}; # v2.1.15 (LTS)