Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

nodePackages.rollup: drop

It fails to execute with

Error: Cannot find module '@rollup/rollup-linux-x64-gnu'

+1 -22
+1
pkgs/development/node-packages/aliases.nix
··· 187 187 remod-cli = pkgs.remod; # added 2024-12-04 188 188 "reveal.js" = throw "reveal.js was removed because it provides no executable"; # added 2025-03-23 189 189 reveal-md = pkgs.reveal-md; # added 2023-07-31 190 + rollup = throw "rollup has been removed because it was broken"; # added 2025-04-28 190 191 inherit (pkgs) rtlcss; # added 2023-08-29 191 192 s3http = throw "s3http was removed because it was abandoned upstream"; # added 2023-08-18 192 193 inherit (pkgs) serverless; # Added 2023-11-29
-1
pkgs/development/node-packages/node-packages.json
··· 138 138 , "purs-tidy" 139 139 , "purty" 140 140 , "rimraf" 141 - , "rollup" 142 141 , "sass" 143 142 , "semver" 144 143 , "serve"
-21
pkgs/development/node-packages/node-packages.nix
··· 62086 62086 bypassCache = true; 62087 62087 reconstructLock = true; 62088 62088 }; 62089 - rollup = nodeEnv.buildNodePackage { 62090 - name = "rollup"; 62091 - packageName = "rollup"; 62092 - version = "4.35.0"; 62093 - src = fetchurl { 62094 - url = "https://registry.npmjs.org/rollup/-/rollup-4.35.0.tgz"; 62095 - sha512 = "kg6oI4g+vc41vePJyO6dHt/yl0Rz3Thv0kJeVQ3D1kS3E5XSuKbPc29G4IpT/Kv1KQwgHVcN+HtyS+HYLNSvQg=="; 62096 - }; 62097 - dependencies = [ 62098 - sources."@types/estree-1.0.6" 62099 - ]; 62100 - buildInputs = globalBuildInputs; 62101 - meta = { 62102 - description = "Next-generation ES module bundler"; 62103 - homepage = "https://rollupjs.org/"; 62104 - license = "MIT"; 62105 - }; 62106 - production = true; 62107 - bypassCache = true; 62108 - reconstructLock = true; 62109 - }; 62110 62089 sass = nodeEnv.buildNodePackage { 62111 62090 name = "sass"; 62112 62091 packageName = "sass";