nixpkgs/pkgs/servers/dns/coredns/default.nix

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

25 lines
587 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-09-22 00:44:32 +02:00
2019-12-16 13:05:23 +01:00
buildGoModule rec {
pname = "coredns";
2022-02-11 07:04:23 +01:00
version = "1.9.0";
2016-09-22 00:44:32 +02:00
src = fetchFromGitHub {
2019-01-30 12:50:31 +01:00
owner = "coredns";
2016-09-22 00:44:32 +02:00
repo = "coredns";
rev = "v${version}";
2022-02-11 07:04:23 +01:00
sha256 = "sha256-8IYJxb+HssS2xTboBRo3lz9czklt/Sn098ATlDaO7Gs=";
2016-09-22 00:44:32 +02:00
};
2022-02-11 07:04:23 +01:00
vendorSha256 = "sha256-Vxs+k4WF55xwjgdlW/1NM4NWnYqj2EOLOONflj+BoY4=";
2016-09-22 00:44:32 +02:00
doCheck = false;
meta = with lib; {
2019-12-16 13:05:23 +01:00
homepage = "https://coredns.io";
2016-09-22 00:44:32 +02:00
description = "A DNS server that runs middleware";
license = licenses.asl20;
2019-12-16 13:05:23 +01:00
maintainers = with maintainers; [ rushmorem rtreffer deltaevo ];
2016-09-22 00:44:32 +02:00
};
}