lol

rome: remove

rome is no longer maintained.
A fork called biome is available in nixpkgs.

authored by

Felix Schröter and committed by
Anderson Torres
5365ecb4 1bc7024a

+3 -60
+2
nixos/doc/manual/release-notes/rl-2311.section.md
··· 222 222 223 223 - `networking.networkmanager.firewallBackend` was removed as NixOS is now using iptables-nftables-compat even when using iptables, therefore Networkmanager now uses the nftables backend unconditionally. 224 224 225 + - `rome` was removed because it is no longer maintained and is succeeded by `biome`. 226 + 225 227 ## Other Notable Changes {#sec-release-23.11-notable-changes} 226 228 227 229 - The Cinnamon module now enables XDG desktop integration by default. If you are experiencing collisions related to xdg-desktop-portal-gtk you can safely remove `xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];` from your NixOS configuration.
-58
pkgs/development/tools/rome/default.nix
··· 1 - { lib 2 - , rustPlatform 3 - , fetchFromGitHub 4 - , pkg-config 5 - , stdenv 6 - , darwin 7 - , nix-update-script 8 - }: 9 - 10 - rustPlatform.buildRustPackage rec { 11 - pname = "rome"; 12 - version = "12.1.3"; 13 - 14 - src = fetchFromGitHub { 15 - owner = "rome"; 16 - repo = "tools"; 17 - rev = "cli/v${version}"; 18 - hash = "sha256-BlHpdfbyx6nU44vasEw0gRZ0ickyD2eUXPfeFZHSCbI="; 19 - }; 20 - 21 - cargoHash = "sha256-jHdoRymKPjBonT4TvAiTNzGBuTcNoPsvdFKEf33dpVc="; 22 - 23 - cargoBuildFlags = [ "--package" "rome_cli" ]; 24 - 25 - env = { 26 - RUSTFLAGS = "-C strip=symbols"; 27 - ROME_VERSION = version; 28 - }; 29 - 30 - buildInputs = 31 - lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.Security ]; 32 - 33 - nativeBuildInputs = [ pkg-config ]; 34 - 35 - # need to manually unset the ROME_VERSION before checkPhase otherwise some tests fail 36 - preCheck = '' 37 - unset ROME_VERSION; 38 - ''; 39 - 40 - # these test fail 41 - checkFlags = [ 42 - "--skip parser::tests::uncompleted_markers_panic" 43 - "--skip commands::check::fs_error_infinite_symlink_exapansion" 44 - "--skip commands::check::fs_error_dereferenced_symlink" 45 - ]; 46 - 47 - passthru.updateScript = nix-update-script { 48 - extraArgs = [ "--version-regex" "cli%2Fv(.*)" ]; 49 - }; 50 - 51 - meta = with lib; { 52 - description = "A formatter, linter, bundler, and more for JavaScript, TypeScript, JSON, HTML, Markdown, and CSS"; 53 - homepage = "https://rome.tools"; 54 - changelog = "https://github.com/rome/tools/blob/${src.rev}/CHANGELOG.md"; 55 - license = licenses.mit; 56 - maintainers = with maintainers; [ dit7ya felschr ]; 57 - }; 58 - }
+1
pkgs/top-level/aliases.nix
··· 1580 1580 robomongo = throw "'robomongo' has been renamed to/replaced by 'robo3t'"; # Converted to throw 2022-02-22 1581 1581 rockbox_utility = rockbox-utility; # Added 2022-03-17 1582 1582 rocm-runtime-ext = throw "rocm-runtime-ext has been removed, since its functionality was added to rocm-runtime"; #added 2020-08-21 1583 + rome = throw "rome is no longer maintained, consider using biome instead"; # Added 2023-09-12 1583 1584 rpiboot-unstable = rpiboot; # Added 2021-07-30 1584 1585 rr-unstable = rr; # Added 2022-09-17 1585 1586 rssglx = throw "'rssglx' has been renamed to/replaced by 'rss-glx'"; # Converted to throw 2022-02-22
-2
pkgs/top-level/all-packages.nix
··· 20160 20160 20161 20161 rolespec = callPackage ../development/tools/misc/rolespec { }; 20162 20162 20163 - rome = callPackage ../development/tools/rome { }; 20164 - 20165 20163 rr = callPackage ../development/tools/analysis/rr { }; 20166 20164 20167 20165 rsass = callPackage ../development/tools/misc/rsass { };