chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / me / mesos-dns / package.nix
blob52f6ba74fd8951d6f3173e0c7b4749c2646798fc
1 { lib, buildGoModule, fetchFromGitHub }:
3 buildGoModule rec {
4   pname = "mesos-dns";
5   version = "0.9.2";
7   src = fetchFromGitHub {
8     owner = "m3scluster";
9     repo = "mesos-dns";
10     rev = "v${version}";
11     hash = "sha256-6uuaSCPBY+mKfU2Xku9M1oF5jwxogR2Rki4AIdsjLr0=";
12   };
14   vendorHash = "sha256-k47kxdkwhf9b8DdvWzwhj12ebvPYezxyIJ8w1Zn+Xew=";
16   subPackages = [ "." ];
18   ldflags = [ "-s" "-w" ];
20   meta = with lib; {
21     homepage = "https://m3scluster.github.io/mesos-dns/";
22     changelog = "https://github.com/m3scluster/mesos-dns/releases/tag/v${version}";
23     description = "DNS-based service discovery for Mesos";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ aaronjheng ];
26     mainProgram = "mesos-dns";
27   };