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

25 lines
587 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2016-09-21 15:44:32 -07:00
2019-12-16 04:05:23 -08:00
buildGoModule rec {
pname = "coredns";
2021-02-25 00:19:10 -08:00
version = "1.8.3";
2016-09-21 15:44:32 -07:00
src = fetchFromGitHub {
2019-01-30 03:50:31 -08:00
owner = "coredns";
2016-09-21 15:44:32 -07:00
repo = "coredns";
rev = "v${version}";
2021-02-25 00:19:10 -08:00
sha256 = "sha256-aE+kw854/wjFJqiRC/1gLzRpaVa6EPJPJaKqXtFM+Sw=";
2016-09-21 15:44:32 -07:00
};
2021-02-25 00:19:10 -08:00
vendorSha256 = "sha256-1+WgBsknyPcZhvQLffhlWBH1o0pYTFoOG5BviUJYxyA=";
2016-09-21 15:44:32 -07:00
doCheck = false;
meta = with lib; {
2019-12-16 04:05:23 -08:00
homepage = "https://coredns.io";
2016-09-21 15:44:32 -07:00
description = "A DNS server that runs middleware";
license = licenses.asl20;
2019-12-16 04:05:23 -08:00
maintainers = with maintainers; [ rushmorem rtreffer deltaevo ];
2016-09-21 15:44:32 -07:00
};
}