pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / adguardhome / default.nix
blob9e74d06cbc5df64a4ff71a5753e94c8edf85dc5d
1 { lib, stdenv, fetchurl, fetchzip, nixosTests }:
3 let
4   inherit (stdenv.hostPlatform) system;
5   sources = import ./bins.nix { inherit fetchurl fetchzip; };
6 in
8 stdenv.mkDerivation rec {
9   pname = "adguardhome";
10   version = "0.107.53";
11   src = sources.${system} or (throw "Source for ${pname} is not available for ${system}");
13   installPhase = ''
14     install -m755 -D ./AdGuardHome $out/bin/adguardhome
15   '';
17   passthru = {
18     updateScript = ./update.sh;
19     schema_version = 29;
20     tests.adguardhome = nixosTests.adguardhome;
21   };
23   meta = with lib; {
24     homepage = "https://github.com/AdguardTeam/AdGuardHome";
25     description = "Network-wide ads & trackers blocking DNS server";
26     platforms = builtins.attrNames sources;
27     maintainers = with maintainers; [ numkem iagoq rhoriguchi ];
28     sourceProvenance = with sourceTypes; [ binaryNativeCode ];
29     license = licenses.gpl3Only;
30     mainProgram = "adguardhome";
31   };