Skip to content

Commit

Permalink
dotnet-repl: init at 0.1.216
Browse files Browse the repository at this point in the history
  • Loading branch information
TomaSajt committed Aug 31, 2024
1 parent 83d01be commit bc7a970
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/by-name/do/dotnet-repl/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
lib,
buildDotnetGlobalTool,
dotnetCorePackages,
}:

buildDotnetGlobalTool {
pname = "dotnet-repl";
version = "0.1.216";

dotnet-sdk = dotnetCorePackages.sdk_8_0;
dotnet-runtime = dotnetCorePackages.runtime_8_0;

nugetHash = "sha256-JHatCW+hl2792S+HYeEbbYbCIS+N4DmOctqXB/56/HU=";

meta = {
description = "A polyglot REPL built on .NET Interactive";
homepage = "https://github.com/jonsequitur/dotnet-repl";
license = lib.licenses.mit;
mainProgram = "dotnet-repl";
maintainers = with lib.maintainers; [ tomasajt ];
};
}

0 comments on commit bc7a970

Please sign in to comment.