2024-11-08 17:32:22 +00:00
|
|
|
{
|
|
|
|
buildDotnetGlobalTool,
|
|
|
|
dotnetCorePackages,
|
|
|
|
lib,
|
|
|
|
}:
|
2024-01-28 23:05:17 +00:00
|
|
|
|
|
|
|
buildDotnetGlobalTool {
|
|
|
|
pname = "csharprepl";
|
|
|
|
nugetName = "CSharpRepl";
|
2024-11-08 17:40:27 +00:00
|
|
|
version = "0.6.7";
|
2024-01-28 23:05:17 +00:00
|
|
|
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
2024-11-08 17:38:00 +00:00
|
|
|
# We're using an SDK here because it's a REPL, and it requires an SDK instaed of a runtime
|
|
|
|
dotnet-runtime = dotnetCorePackages.sdk_8_0;
|
2024-01-28 23:05:17 +00:00
|
|
|
|
2024-11-08 17:40:27 +00:00
|
|
|
nugetHash = "sha256-a0CiU3D6RZp1FF459NIUUry5TFRDgm4FRhqJZNAGYWs=";
|
2024-01-28 23:05:17 +00:00
|
|
|
|
2024-11-08 17:32:54 +00:00
|
|
|
meta = {
|
2024-01-28 23:05:17 +00:00
|
|
|
description = "C# REPL with syntax highlighting";
|
|
|
|
homepage = "https://fuqua.io/CSharpRepl";
|
|
|
|
changelog = "https://github.com/waf/CSharpRepl/blob/main/CHANGELOG.md";
|
2024-11-08 17:32:54 +00:00
|
|
|
license = lib.licenses.mpl20;
|
|
|
|
platforms = lib.platforms.unix;
|
|
|
|
maintainers = with lib.maintainers; [ donteatoreo ];
|
2024-01-28 23:05:17 +00:00
|
|
|
mainProgram = "csharprepl";
|
|
|
|
};
|
|
|
|
}
|