1{
2 buildGoModule,
3 fetchFromGitHub,
4 lib,
5}:
6
7buildGoModule {
8 pname = "dnss";
9 version = "0-unstable-2024-03-17";
10 src = fetchFromGitHub {
11 owner = "albertito";
12 repo = "dnss";
13 rev = "da8986dd432870f5710e3e8652c92c95f34b830b";
14 hash = "sha256-YjBt+22fc9yHcORRmd//rejNVvf6eK+FAYAcT0fABuI=";
15 };
16
17 vendorHash = "sha256-d9aGSBRblkvH5Ixw3jpbgC8lMW/qEYNJfLTVeUlos7A=";
18
19 meta = with lib; {
20 description = "Daemon for using DNS over HTTPS";
21 homepage = "https://blitiri.com.ar/git/r/dnss/";
22 license = licenses.asl20;
23 mainProgram = "dnss";
24 maintainers = with maintainers; [ raspher ];
25 };
26}