etcd_3_3: remove

authored by

Aaron Jheng and committed by
Anderson Torres
ed66c817 3c3ef901

+1 -36
-35
pkgs/servers/etcd/3.3.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub, stdenv }: 2 - 3 - buildGoPackage rec { 4 - pname = "etcd"; 5 - version = "3.3.27"; 6 - 7 - goPackagePath = "github.com/coreos/etcd"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "etcd-io"; 11 - repo = "etcd"; 12 - rev = "v${version}"; 13 - sha256 = "sha256-zO+gwzaTgeFHhlkY/3AvRTEA4Yltlp+NqdlDe4dLJYg="; 14 - }; 15 - 16 - buildPhase = '' 17 - cd go/src/${goPackagePath} 18 - patchShebangs . 19 - ./build 20 - ./functional/build 21 - ''; 22 - 23 - installPhase = '' 24 - install -Dm755 bin/* bin/functional/cmd/* -t $out/bin 25 - ''; 26 - 27 - meta = with lib; { 28 - description = "Distributed reliable key-value store for the most critical data of a distributed system"; 29 - license = licenses.asl20; 30 - homepage = "https://etcd.io/"; 31 - maintainers = with maintainers; [ offline ]; 32 - broken = stdenv.isDarwin; # outdated golang.org/x/sys 33 - knownVulnerabilities = [ "CVE-2023-32082" ]; 34 - }; 35 - }
+1
pkgs/top-level/aliases.nix
··· 496 496 erlang_23 = throw "erlangR23 has been removed in favor of newer versions."; # added 2023-09-11 497 497 erlangR23 = erlang_23; 498 498 esniper = throw "esniper has been removed because upstream no longer maintains it (and it no longer works)"; # Added 2021-04-12 499 + etcd_3_3 = throw "etcd_3_3 has been removed because upstream no longer maintains it"; # Added 2023-09-29 499 500 etcdctl = throw "'etcdctl' has been renamed to/replaced by 'etcd'"; # Converted to throw 2022-02-22 500 501 eterm = throw "eterm was removed because it is still insecure: https://github.com/mej/Eterm/issues/7"; # Added 2023-09-10 501 502 eteroj.lv2 = throw "'eteroj.lv2' has been renamed to/replaced by 'open-music-kontrollers.eteroj'"; # Added 2022-03-09
-1
pkgs/top-level/all-packages.nix
··· 26525 26525 ergochat = callPackage ../servers/irc/ergochat { }; 26526 26526 26527 26527 etcd = etcd_3_5; 26528 - etcd_3_3 = callPackage ../servers/etcd/3.3.nix { }; 26529 26528 etcd_3_4 = callPackage ../servers/etcd/3.4.nix { }; 26530 26529 etcd_3_5 = callPackage ../servers/etcd/3.5.nix { }; 26531 26530