1
0
Fork 0

package(technitium-dns-server): switch module to own package override

This commit is contained in:
Philipp 2025-07-03 11:30:12 +02:00
parent 751d47feea
commit 3fb1c730ce
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
2 changed files with 30 additions and 10 deletions

View file

@ -0,0 +1,22 @@
{
channels,
inputs,
...
}:
final: prev: {
awesome-flake = (prev.awesome-flake or { }) // {
technitium-dns-server = prev.technitium-dns-server.overrideAttrs (_old: rec {
pname = "technitium-dns-server";
version = "13.6.0";
src = final.fetchFromGitHub {
owner = "TechnitiumSoftware";
repo = "DnsServer";
tag = "v${version}";
hash = "sha256-2OSuLGWdaiiPxyW0Uvq736wHKa7S3CHv79cmZZ86GRE=";
name = "${pname}-${version}";
};
});
};
}