nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDotnetGlobalTool,
4 dotnetCorePackages,
5}:
6
7buildDotnetGlobalTool {
8 pname = "dotnet-repl";
9 version = "0.3.250";
10
11 dotnet-sdk = dotnetCorePackages.sdk_9_0;
12 dotnet-runtime = dotnetCorePackages.runtime_9_0;
13
14 nugetHash = "sha256-Tja6kIr9nHMrFY76vdFvS3ig2Tfrjus8mJb+2OC8fnk=";
15
16 meta = {
17 description = "Polyglot REPL built on .NET Interactive";
18 homepage = "https://github.com/jonsequitur/dotnet-repl";
19 license = lib.licenses.mit;
20 mainProgram = "dotnet-repl";
21 maintainers = with lib.maintainers; [ tomasajt ];
22 };
23}