Add webone package
This commit is contained in:
parent
26f031dea8
commit
90fe03e7c8
2 changed files with 106 additions and 0 deletions
29
packages/webone/default.nix
Normal file
29
packages/webone/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
fetchFromGitHub,
|
||||
buildDotnetModule,
|
||||
dotnetCorePackages,
|
||||
...
|
||||
}:
|
||||
|
||||
buildDotnetModule rec {
|
||||
pname = "webone";
|
||||
version = "0.17.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "atauenis";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Dybm0Yl3f6Q7bjDRZHn7hCIYBryS93PtzFLC2V+LzXg=";
|
||||
};
|
||||
|
||||
projectFile = "WebOne.csproj";
|
||||
nugetDeps = ./deps.nix;
|
||||
|
||||
dotnet-sdk = dotnetCorePackages.sdk_6_0;
|
||||
dotnet-runtime = dotnetCorePackages.runtime_6_0;
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/atauenis/webone";
|
||||
description = "HTTP 1.x proxy that makes old web browsers usable again in the Web 2.0 world.";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue