mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
74 lines
2.0 KiB
Nix
74 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
buildDotnetModule,
|
|
fetchFromGitHub,
|
|
dotnetCorePackages,
|
|
nixosTests,
|
|
}:
|
|
let
|
|
technitium-library = buildDotnetModule rec {
|
|
pname = "TechnitiumLibrary";
|
|
version = "13.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TechnitiumSoftware";
|
|
repo = "TechnitiumLibrary";
|
|
rev = "refs/tags/dns-server-v${version}";
|
|
hash = "sha256-mMNZZvM/UvQTiyeOgPHXXFxmsiGPe4Jal1aSEMEM5Xc=";
|
|
name = "${pname}-${version}";
|
|
};
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
|
|
|
nugetDeps = ./library-nuget-deps.nix;
|
|
|
|
projectFile = [
|
|
"TechnitiumLibrary.ByteTree/TechnitiumLibrary.ByteTree.csproj"
|
|
"TechnitiumLibrary.Net/TechnitiumLibrary.Net.csproj"
|
|
];
|
|
};
|
|
in
|
|
buildDotnetModule rec {
|
|
pname = "technitium-dns-server";
|
|
version = "13.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TechnitiumSoftware";
|
|
repo = "DnsServer";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-2dFjr3f4ZlLBJzuObSYIkSdtcyZ8dC6M7/S1p7WoG0c=";
|
|
name = "${pname}-${version}";
|
|
};
|
|
|
|
dotnet-sdk = dotnetCorePackages.sdk_8_0;
|
|
dotnet-runtime = dotnetCorePackages.aspnetcore_8_0;
|
|
|
|
nugetDeps = ./nuget-deps.nix;
|
|
|
|
projectFile = [ "DnsServerApp/DnsServerApp.csproj" ];
|
|
|
|
# move dependencies from TechnitiumLibrary to the expected directory
|
|
preBuild = ''
|
|
mkdir -p ../TechnitiumLibrary/bin
|
|
cp -r ${technitium-library}/lib/TechnitiumLibrary/* ../TechnitiumLibrary/bin/
|
|
'';
|
|
|
|
postFixup = ''
|
|
mv $out/bin/DnsServerApp $out/bin/technitium-dns-server
|
|
'';
|
|
|
|
passthru.tests = {
|
|
inherit (nixosTests) technitium-dns-server;
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/TechnitiumSoftware/DnsServer/blob/master/CHANGELOG.md";
|
|
description = "Authorative and Recursive DNS server for Privacy and Security";
|
|
homepage = "https://github.com/TechnitiumSoftware/DnsServer";
|
|
license = lib.licenses.gpl3Only;
|
|
mainProgram = "technitium-dns-server";
|
|
maintainers = with lib.maintainers; [ fabianrig ];
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|