Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
557 B
Nix
Raw Permalink Normal View History

2024-03-28 21:46:18 +01:00
{
lib,
buildDotnetGlobalTool,
dotnetCorePackages,
}:
buildDotnetGlobalTool {
pname = "dotnet-repl";
2025-06-18 04:59:14 +00:00
version = "0.3.250";
2024-03-28 21:46:18 +01:00
2025-01-29 09:07:38 +01:00
dotnet-sdk = dotnetCorePackages.sdk_9_0;
dotnet-runtime = dotnetCorePackages.runtime_9_0;
2024-03-28 21:46:18 +01:00
2025-06-18 04:59:14 +00:00
nugetHash = "sha256-Tja6kIr9nHMrFY76vdFvS3ig2Tfrjus8mJb+2OC8fnk=";
2024-03-28 21:46:18 +01:00
meta = {
2025-05-28 05:10:37 +00:00
description = "Polyglot REPL built on .NET Interactive";
2024-03-28 21:46:18 +01:00
homepage = "https://github.com/jonsequitur/dotnet-repl";
license = lib.licenses.mit;
mainProgram = "dotnet-repl";
maintainers = with lib.maintainers; [ tomasajt ];
};
}