about summary refs log tree commit diff
path: root/pkgs/by-name/dn/dnss/package.nix
blob: 00796cf8df1798a563d4801d1234d6273e7b5de4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ buildGoModule
, fetchFromGitHub
, lib
}:

buildGoModule {
  pname = "dnss";
  version = "0-unstable-2024-03-17";
  src = fetchFromGitHub {
    owner = "albertito";
    repo = "dnss";
    rev = "da8986dd432870f5710e3e8652c92c95f34b830b";
    hash = "sha256-YjBt+22fc9yHcORRmd//rejNVvf6eK+FAYAcT0fABuI=";
  };

  vendorHash = "sha256-d9aGSBRblkvH5Ixw3jpbgC8lMW/qEYNJfLTVeUlos7A=";

  meta = with lib; {
    description = "A daemon for using DNS over HTTPS";
    homepage = "https://blitiri.com.ar/git/r/dnss/";
    license = licenses.asl20;
    mainProgram = "dnss";
    maintainers = with maintainers; [ raspher ];
  };
}