mirror of
https://github.com/Smaug123/AdventOfCode2022
synced 2025-10-05 01:28:39 +00:00
Fix flake after nixpkgs upgrade (#92)
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -8,3 +8,4 @@ riderModule.iml
|
||||
.vs/
|
||||
*.log
|
||||
result
|
||||
.direnv/
|
||||
|
10
flake.nix
10
flake.nix
@@ -16,7 +16,7 @@
|
||||
projectFile = "./AdventOfCode2022.App/AdventOfCode2022.App.fsproj";
|
||||
testProjectFile = "./AdventOfCode2022.Test/AdventOfCode2022.Test.fsproj";
|
||||
pname = "AdventOfCode2022";
|
||||
dotnet-sdk = pkgs.dotnet-sdk_8;
|
||||
dotnet-sdk = pkgs.dotnetCorePackages.sdk_8_0;
|
||||
dotnet-runtime = pkgs.dotnetCorePackages.runtime_8_0;
|
||||
version = "0.0.1";
|
||||
dotnetTool = toolName: toolVersion: hash:
|
||||
@@ -54,13 +54,7 @@
|
||||
};
|
||||
};
|
||||
devShell = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
(with dotnetCorePackages;
|
||||
combinePackages [
|
||||
dotnet-sdk_8
|
||||
dotnetPackages.Nuget
|
||||
])
|
||||
];
|
||||
buildInputs = [dotnet-sdk];
|
||||
packages = [
|
||||
pkgs.alejandra
|
||||
pkgs.nodePackages.markdown-link-check
|
||||
|
Reference in New Issue
Block a user