technitium-dns-server: 13.6.0 -> 14.0.0
This commit is contained in:
@@ -1,7 +1,22 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"pname": "BouncyCastle.Cryptography",
|
"pname": "BouncyCastle.Cryptography",
|
||||||
"version": "2.5.1",
|
"version": "2.6.2",
|
||||||
"hash": "sha256-ISDd8fS6/cIJIXBFDd7F3FQ0wzWkAo4r8dvycb8iT6c="
|
"hash": "sha256-Yjk2+x/RcVeccGOQOQcRKCiYzyx1mlFnhS5auCII+Ms="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "Microsoft.Win32.SystemEvents",
|
||||||
|
"version": "6.0.0",
|
||||||
|
"hash": "sha256-N9EVZbl5w1VnMywGXyaVWzT9lh84iaJ3aD48hIBk1zA="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "QRCoder",
|
||||||
|
"version": "1.7.0",
|
||||||
|
"hash": "sha256-sssSQBTHf1cUWNQYFEEJ8PRLs486ciDsXtrwL+ozZIU="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "System.Drawing.Common",
|
||||||
|
"version": "6.0.0",
|
||||||
|
"hash": "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo="
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -7,23 +7,24 @@
|
|||||||
}:
|
}:
|
||||||
buildDotnetModule rec {
|
buildDotnetModule rec {
|
||||||
pname = "technitium-dns-server-library";
|
pname = "technitium-dns-server-library";
|
||||||
version = "dns-server-v13.6.0";
|
version = "dns-server-v14.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "TechnitiumSoftware";
|
owner = "TechnitiumSoftware";
|
||||||
repo = "TechnitiumLibrary";
|
repo = "TechnitiumLibrary";
|
||||||
tag = version;
|
tag = version;
|
||||||
hash = "sha256-P1LVn//4xL/MZoy7thw+zYlAZVTfjSivyAiuhixAoHs=";
|
hash = "sha256-vQAYNXSXWWuEMLj+zWQIM5A4BYcyiUlfp7+Ttk4R+MA=";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
};
|
};
|
||||||
|
|
||||||
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
dotnet-sdk = dotnetCorePackages.sdk_9_0;
|
||||||
|
|
||||||
nugetDeps = ./nuget-deps.json;
|
nugetDeps = ./nuget-deps.json;
|
||||||
|
|
||||||
projectFile = [
|
projectFile = [
|
||||||
"TechnitiumLibrary.ByteTree/TechnitiumLibrary.ByteTree.csproj"
|
"TechnitiumLibrary.ByteTree/TechnitiumLibrary.ByteTree.csproj"
|
||||||
"TechnitiumLibrary.Net/TechnitiumLibrary.Net.csproj"
|
"TechnitiumLibrary.Net/TechnitiumLibrary.Net.csproj"
|
||||||
|
"TechnitiumLibrary.Security.OTP/TechnitiumLibrary.Security.OTP.csproj"
|
||||||
];
|
];
|
||||||
|
|
||||||
passthru.updateScript = nix-update-script { };
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|||||||
@@ -1,7 +1,22 @@
|
|||||||
[
|
[
|
||||||
{
|
{
|
||||||
"pname": "BouncyCastle.Cryptography",
|
"pname": "BouncyCastle.Cryptography",
|
||||||
"version": "2.5.1",
|
"version": "2.6.2",
|
||||||
"hash": "sha256-ISDd8fS6/cIJIXBFDd7F3FQ0wzWkAo4r8dvycb8iT6c="
|
"hash": "sha256-Yjk2+x/RcVeccGOQOQcRKCiYzyx1mlFnhS5auCII+Ms="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "Microsoft.Win32.SystemEvents",
|
||||||
|
"version": "6.0.0",
|
||||||
|
"hash": "sha256-N9EVZbl5w1VnMywGXyaVWzT9lh84iaJ3aD48hIBk1zA="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "QRCoder",
|
||||||
|
"version": "1.7.0",
|
||||||
|
"hash": "sha256-sssSQBTHf1cUWNQYFEEJ8PRLs486ciDsXtrwL+ozZIU="
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"pname": "System.Drawing.Common",
|
||||||
|
"version": "6.0.0",
|
||||||
|
"hash": "sha256-/9EaAbEeOjELRSMZaImS1O8FmUe8j4WuFUw1VOrPyAo="
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -10,18 +10,18 @@
|
|||||||
}:
|
}:
|
||||||
buildDotnetModule rec {
|
buildDotnetModule rec {
|
||||||
pname = "technitium-dns-server";
|
pname = "technitium-dns-server";
|
||||||
version = "13.6.0";
|
version = "14.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "TechnitiumSoftware";
|
owner = "TechnitiumSoftware";
|
||||||
repo = "DnsServer";
|
repo = "DnsServer";
|
||||||
tag = "v${version}";
|
tag = "v${version}";
|
||||||
hash = "sha256-2OSuLGWdaiiPxyW0Uvq736wHKa7S3CHv79cmZZ86GRE=";
|
hash = "sha256-h7lcm9gKaCIPccg4Mxp78qSgygAuFyRPd1jPfmkoarU=";
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
};
|
};
|
||||||
|
|
||||||
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
dotnet-sdk = dotnetCorePackages.sdk_9_0;
|
||||||
dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
|
dotnet-runtime = dotnetCorePackages.aspnetcore_9_0;
|
||||||
|
|
||||||
nugetDeps = ./nuget-deps.json;
|
nugetDeps = ./nuget-deps.json;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user