nixpkgs/pkgs/servers/mesos-dns/default.nix

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

29 lines
747 B
Nix
Raw Normal View History

2024-03-29 06:58:18 +03:00
{ lib, buildGoModule, fetchFromGitHub }:
2016-06-03 20:40:02 +03:00
2024-03-29 06:58:18 +03:00
buildGoModule rec {
pname = "mesos-dns";
2024-03-29 06:58:18 +03:00
version = "0.9.0";
2016-06-03 20:40:02 +03:00
src = fetchFromGitHub {
2024-03-29 06:58:18 +03:00
owner = "m3scluster";
repo = "mesos-dns";
2024-03-29 06:58:18 +03:00
rev = "v${version}";
hash = "sha256-lURD0WAHC4klRdV6/YhKNtXh03zcVuDzTj/LvKYomLk=";
2016-06-03 20:40:02 +03:00
};
2024-03-29 06:58:18 +03:00
vendorHash = "sha256-OILARWv9CDQEzzn7He/P8Z2Ug7m05AqOndoeM1sUpII=";
subPackages = [ "." ];
ldflags = [ "-s" "-w" ];
meta = with lib; {
homepage = "https://m3scluster.github.io/mesos-dns/";
changelog = "https://github.com/m3scluster/mesos-dns/releases/tag/v${version}";
description = "DNS-based service discovery for Mesos";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
mainProgram = "mesos-dns";
};
2016-06-03 20:40:02 +03:00
}