nixpkgs/pkgs/servers/etcd/3.3.nix

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

36 lines
885 B
Nix
Raw Normal View History

2023-05-23 20:54:43 +00:00
{ lib, buildGoPackage, fetchFromGitHub, stdenv }:
2016-09-03 12:02:53 +00:00
2016-06-04 06:40:17 +00:00
buildGoPackage rec {
pname = "etcd";
2021-11-13 23:12:19 +00:00
version = "3.3.27";
2016-08-24 12:45:08 +00:00
2016-06-04 06:40:17 +00:00
goPackagePath = "github.com/coreos/etcd";
src = fetchFromGitHub {
2020-04-26 05:42:50 +00:00
owner = "etcd-io";
repo = "etcd";
2020-04-26 05:42:50 +00:00
rev = "v${version}";
2021-11-13 23:12:19 +00:00
sha256 = "sha256-zO+gwzaTgeFHhlkY/3AvRTEA4Yltlp+NqdlDe4dLJYg=";
2016-06-04 06:40:17 +00:00
};
2020-04-26 05:42:50 +00:00
buildPhase = ''
cd go/src/${goPackagePath}
patchShebangs .
./build
./functional/build
'';
installPhase = ''
install -Dm755 bin/* bin/functional/cmd/* -t $out/bin
2020-04-26 05:42:50 +00:00
'';
2016-06-04 06:40:17 +00:00
2020-04-26 05:42:50 +00:00
meta = with lib; {
2016-09-03 12:02:53 +00:00
description = "Distributed reliable key-value store for the most critical data of a distributed system";
license = licenses.asl20;
2020-04-26 05:42:50 +00:00
homepage = "https://etcd.io/";
2020-05-20 03:27:36 +00:00
maintainers = with maintainers; [ offline zowoq ];
2022-08-02 21:36:14 +00:00
broken = stdenv.isDarwin; # outdated golang.org/x/sys
knownVulnerabilities = [ "CVE-2023-32082" ];
2016-09-03 12:02:53 +00:00
};
2016-06-04 06:40:17 +00:00
}