nixpkgs/pkgs/servers/consul/default.nix

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

47 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
2016-06-04 21:40:56 +03:00
buildGoModule rec {
pname = "consul";
2022-04-20 21:17:20 +03:00
version = "1.12.0";
2016-06-04 21:40:56 +03:00
rev = "v${version}";
2020-05-07 19:07:05 +03:00
# Note: Currently only release tags are supported, because they have the Consul UI
# vendored. See
# https://github.com/NixOS/nixpkgs/pull/48714#issuecomment-433454834
# If you want to use a non-release commit as `src`, you probably want to improve
# this derivation so that it can build the UI's JavaScript from source.
# See https://github.com/NixOS/nixpkgs/pull/49082 for something like that.
# Or, if you want to patch something that doesn't touch the UI, you may want
# to apply your changes as patches on top of a release commit.
2016-06-05 00:24:19 +03:00
src = fetchFromGitHub {
owner = "hashicorp";
2019-08-31 17:46:45 +03:00
repo = pname;
2016-06-04 21:40:56 +03:00
inherit rev;
2022-04-20 21:17:20 +03:00
sha256 = "sha256-O47s9eNZsqg0zpgoK2S4JvuOEqqVWvx8YmbQTvCw0Co=";
2016-06-04 21:40:56 +03:00
};
2020-05-07 19:06:46 +03:00
passthru.tests.consul = nixosTests.consul;
# This corresponds to paths with package main - normally unneeded but consul
# has a split module structure in one repo
subPackages = ["." "connect/certgen"];
2022-04-20 21:17:20 +03:00
vendorSha256 = "sha256-NRFGt8YA179C/OvyMGXYaZMUH685pJfdGB0AhMrCixs=";
doCheck = false;
2021-08-05 05:32:48 +03:00
ldflags = [
"-X github.com/hashicorp/consul/version.GitDescribe=v${version}"
"-X github.com/hashicorp/consul/version.Version=${version}"
"-X github.com/hashicorp/consul/version.VersionPrerelease="
];
meta = with lib; {
2017-02-16 21:54:08 +03:00
description = "Tool for service discovery, monitoring and configuration";
homepage = "https://www.consul.io/";
2017-02-16 21:54:08 +03:00
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
2022-01-05 00:35:32 +03:00
maintainers = with maintainers; [ pradeepchhetri vdemeester nh2 techknowlogick];
2017-02-16 21:54:08 +03:00
};
2016-06-04 21:40:56 +03:00
}