Merge pull request #97394 from SuperSandro2000/dnscontrol-3.3.0

dnscontrol: 3.2.0 -> 3.3.0, add me as maintainer
This commit is contained in:
ehmry 2020-09-17 17:45:18 +02:00 committed by GitHub
commit 2a14d21224
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 8 deletions

View File

@ -1,24 +1,24 @@
{ stdenv, fetchFromGitHub, buildGoPackage}: { lib, fetchFromGitHub, buildGoModule }:
buildGoPackage rec { buildGoModule rec {
pname = "dnscontrol"; pname = "dnscontrol";
version = "3.2.0"; version = "3.3.0";
goPackagePath = "github.com/StackExchange/dnscontrol";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "StackExchange"; owner = "StackExchange";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1lrn1whmx9zkyvs505zxrsmnr5s6kpj3kjkr6rblfwdlnadkgfj7"; sha256 = "0lldkx906imwm8mxcfafpanbgaqh0sdm3zdkwkn7j0nmngyncx9p";
}; };
vendorSha256 = "16cc6hb2iwh1zwrrnb7s4dqxqhaj67gq3gfr5xvh5kqafd685hvx";
subPackages = [ "." ]; subPackages = [ "." ];
meta = with stdenv.lib; { meta = with lib; {
description = "Synchronize your DNS to multiple providers from a simple DSL"; description = "Synchronize your DNS to multiple providers from a simple DSL";
homepage = "https://stackexchange.github.io/dnscontrol/"; homepage = "https://stackexchange.github.io/dnscontrol/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ mmahut ]; maintainers = with maintainers; [ mmahut SuperSandro2000 ];
}; };
} }