nixpkgs/pkgs/servers/adguardhome/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
932 B
Nix
Raw Normal View History

2022-01-17 00:39:27 +00:00
{ lib, stdenv, fetchurl, fetchzip, nixosTests }:
2020-04-05 19:39:30 +00:00
let
inherit (stdenv.hostPlatform) system;
sources = import ./bins.nix { inherit fetchurl fetchzip; };
in
2020-04-05 19:39:30 +00:00
stdenv.mkDerivation rec {
pname = "adguardhome";
2023-08-05 17:03:42 +00:00
version = "0.107.36";
src = sources.${system} or (throw "Source for ${pname} is not available for ${system}");
2020-04-05 19:39:30 +00:00
installPhase = ''
install -m755 -D ./AdGuardHome $out/bin/adguardhome
'';
2021-05-22 12:09:35 +00:00
passthru = {
updateScript = ./update.sh;
2023-07-14 16:03:18 +00:00
schema_version = 24;
2022-01-17 00:39:27 +00:00
tests.adguardhome = nixosTests.adguardhome;
2021-05-22 12:09:35 +00:00
};
meta = with lib; {
2020-04-05 19:39:30 +00:00
homepage = "https://github.com/AdguardTeam/AdGuardHome";
description = "Network-wide ads & trackers blocking DNS server";
platforms = builtins.attrNames sources;
2022-11-08 16:55:09 +00:00
maintainers = with maintainers; [ numkem iagoq rhoriguchi ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
2021-05-22 12:09:35 +00:00
license = licenses.gpl3Only;
2023-11-27 01:17:53 +00:00
mainProgram = "adguardhome";
2020-04-05 19:39:30 +00:00
};
}