phlare: remove

Upstream project is archived, doesn't build anymore with supported Go toolchains.
Successor is pyroscope, which currently isn't packaged (https://github.com/NixOS/nixpkgs/pull/271139 still open).

Signed-off-by: Paul Meyer <katexochen0@gmail.com>

Paul Meyer bfc4ad96 7f51f360

+1 -48
-48
pkgs/by-name/ph/phlare/package.nix
··· 1 - { 2 - lib, 3 - buildGo122Module, 4 - fetchFromGitHub, 5 - }: 6 - # breaks in go 1.23 with `invalid reference to runtime.aeskeysched` 7 - # won't be fixed upstream since the repository is archived. 8 - buildGo122Module rec { 9 - pname = "phlare"; 10 - version = "0.6.1"; 11 - 12 - src = fetchFromGitHub { 13 - rev = "v${version}"; 14 - owner = "grafana"; 15 - repo = "phlare"; 16 - sha256 = "sha256-iaNwOV8XP6H8DDs2HcOIIl8sNM6Xi5VsRxSb80mvvLo="; 17 - }; 18 - 19 - proxyVendor = true; 20 - vendorHash = "sha256-l7+iDT9GAP9BX+xKvnx57iVF8wCM1YyHwq6dD9PbTDI="; 21 - 22 - ldflags = 23 - let 24 - prefix = "github.com/grafana/phlare/pkg/util/build"; 25 - in 26 - [ 27 - "-s" 28 - "-w" 29 - # https://github.com/grafana/phlare/blob/v0.6.1/Makefile#L32 30 - "-X ${prefix}.Version=${version}" 31 - "-X ${prefix}.Branch=v${version}" 32 - "-X ${prefix}.Revision=v${version}" 33 - "-X ${prefix}.BuildUser=nix" 34 - "-X ${prefix}.BuildDate=1980-01-01T00:00:00Z" 35 - ]; 36 - 37 - subPackages = [ 38 - "cmd/phlare" 39 - "cmd/profilecli" 40 - ]; 41 - 42 - meta = with lib; { 43 - description = "Grafana Phlare is an open source database that provides fast, scalable, highly available, and efficient storage and querying of profiling data"; 44 - license = licenses.agpl3Only; 45 - homepage = "https://grafana.com/oss/phlare"; 46 - maintainers = with maintainers; [ cathalmullan ]; 47 - }; 48 - }
+1
pkgs/top-level/aliases.nix
··· 1347 1347 pg-gvm = throw "pg-gvm has been moved to postgresql.pkgs.pg-gvm to make it work with all versions of PostgreSQL"; # added 2024-11-30 1348 1348 pgadmin = pgadmin4; 1349 1349 pharo-spur64 = pharo; # Added 2022-08-03 1350 + phlare = throw "'phlare' has been removed as the upstream project was archived."; # Added 2025-03-27 1350 1351 picom-next = picom; # Added 2024-02-13 1351 1352 pict-rs_0_3 = throw "pict-rs_0_3 has been removed, as it was an outdated version and no longer compiled"; # Added 2024-08-20 1352 1353