nixpkgs/pkgs/applications/networking/dnscontrol/default.nix

27 lines
672 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2020-03-24 12:46:57 +00:00
2020-09-07 20:20:00 +01:00
buildGoModule rec {
2020-03-24 10:11:15 +00:00
pname = "dnscontrol";
2021-12-18 09:00:49 +00:00
version = "3.13.1";
2020-03-24 10:11:15 +00:00
src = fetchFromGitHub {
owner = "StackExchange";
repo = pname;
rev = "v${version}";
2021-12-18 09:00:49 +00:00
sha256 = "sha256-S3/uxtrCFU9HbNhYKqOYy1ytSVi2DU/lXIlhBgNnaPg=";
2020-03-24 10:11:15 +00:00
};
2021-12-18 09:00:49 +00:00
vendorSha256 = "sha256-OwiZL+MBmAFtV8Vg2Wl9yAeTG3AzMSmCjefxObU7lfQ=";
2020-03-24 12:46:57 +00:00
subPackages = [ "." ];
2021-08-26 07:45:51 +01:00
ldflags = [ "-s" "-w" ];
2021-02-14 07:56:15 +00:00
meta = with lib; {
2020-03-24 10:11:15 +00:00
description = "Synchronize your DNS to multiple providers from a simple DSL";
homepage = "https://stackexchange.github.io/dnscontrol/";
license = licenses.mit;
maintainers = with maintainers; [ mmahut SuperSandro2000 ];
2020-03-24 10:11:15 +00:00
};
}