Commit ed66c817 authored by Aaron Jheng's avatar Aaron Jheng Committed by Anderson Torres
Browse files

etcd_3_3: remove

parent 3c3ef901
Loading
Loading
Loading
Loading

pkgs/servers/etcd/3.3.nix

deleted100644 → 0
+0 −35
Original line number Diff line number Diff line
{ lib, buildGoPackage, fetchFromGitHub, stdenv }:

buildGoPackage rec {
  pname = "etcd";
  version = "3.3.27";

  goPackagePath = "github.com/coreos/etcd";

  src = fetchFromGitHub {
    owner = "etcd-io";
    repo = "etcd";
    rev = "v${version}";
    sha256 = "sha256-zO+gwzaTgeFHhlkY/3AvRTEA4Yltlp+NqdlDe4dLJYg=";
  };

  buildPhase = ''
    cd go/src/${goPackagePath}
    patchShebangs .
    ./build
    ./functional/build
  '';

  installPhase = ''
    install -Dm755 bin/* bin/functional/cmd/* -t $out/bin
  '';

  meta = with lib; {
    description = "Distributed reliable key-value store for the most critical data of a distributed system";
    license = licenses.asl20;
    homepage = "https://etcd.io/";
    maintainers = with maintainers; [ offline ];
    broken = stdenv.isDarwin; # outdated golang.org/x/sys
    knownVulnerabilities = [ "CVE-2023-32082" ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -496,6 +496,7 @@ mapAliases ({
  erlang_23 = throw "erlangR23 has been removed in favor of newer versions."; # added 2023-09-11
  erlangR23 = erlang_23;
  esniper = throw "esniper has been removed because upstream no longer maintains it (and it no longer works)"; # Added 2021-04-12
  etcd_3_3 = throw "etcd_3_3 has been removed because upstream no longer maintains it"; # Added 2023-09-29
  etcdctl = throw "'etcdctl' has been renamed to/replaced by 'etcd'"; # Converted to throw 2022-02-22
  eterm = throw "eterm was removed because it is still insecure: https://github.com/mej/Eterm/issues/7"; # Added 2023-09-10
  eteroj.lv2 = throw "'eteroj.lv2' has been renamed to/replaced by 'open-music-kontrollers.eteroj'"; # Added 2022-03-09
+0 −1
Original line number Diff line number Diff line
@@ -26525,7 +26525,6 @@ with pkgs;
  ergochat = callPackage ../servers/irc/ergochat { };
  etcd = etcd_3_5;
  etcd_3_3 = callPackage ../servers/etcd/3.3.nix { };
  etcd_3_4 = callPackage ../servers/etcd/3.4.nix { };
  etcd_3_5 = callPackage ../servers/etcd/3.5.nix { };