lol

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
83a6ce5c bae9ba4a

+476 -715
+30 -2
nixos/lib/test-driver/test_driver/machine.py
··· 447 447 """ 448 448 449 449 def check_active(_: Any) -> bool: 450 - info = self.get_unit_info(unit, user) 451 - state = info["ActiveState"] 450 + state = self.get_unit_property(unit, "ActiveState", user) 452 451 if state == "failed": 453 452 raise Exception(f'unit "{unit}" reached state "{state}"') 454 453 ··· 490 489 for line in lines.split("\n") 491 490 if line_pattern.match(line) 492 491 ) 492 + 493 + def get_unit_property( 494 + self, 495 + unit: str, 496 + property: str, 497 + user: Optional[str] = None, 498 + ) -> str: 499 + status, lines = self.systemctl( 500 + f'--no-pager show "{unit}" --property="{property}"', 501 + user, 502 + ) 503 + if status != 0: 504 + raise Exception( 505 + f'retrieving systemctl property "{property}" for unit "{unit}"' 506 + + ("" if user is None else f' under user "{user}"') 507 + + f" failed with exit code {status}" 508 + ) 509 + 510 + invalid_output_message = ( 511 + f'systemctl show --property "{property}" "{unit}"' 512 + f"produced invalid output: {lines}" 513 + ) 514 + 515 + line_pattern = re.compile(r"^([^=]+)=(.*)$") 516 + match = line_pattern.match(lines) 517 + assert match is not None, invalid_output_message 518 + 519 + assert match[1] == property, invalid_output_message 520 + return match[2] 493 521 494 522 def systemctl(self, q: str, user: Optional[str] = None) -> Tuple[int, str]: 495 523 """
+1 -1
nixos/modules/config/users-groups.nix
··· 475 475 sdInitrdUidsAreUnique = idsAreUnique (filterAttrs (n: u: u.uid != null) config.boot.initrd.systemd.users) "uid"; 476 476 sdInitrdGidsAreUnique = idsAreUnique (filterAttrs (n: g: g.gid != null) config.boot.initrd.systemd.groups) "gid"; 477 477 groupNames = lib.mapAttrsToList (n: g: g.name) cfg.groups; 478 - usersWithoutExistingGroup = lib.filterAttrs (n: u: !lib.elem u.group groupNames) cfg.users; 478 + usersWithoutExistingGroup = lib.filterAttrs (n: u: u.group != "" && !lib.elem u.group groupNames) cfg.users; 479 479 480 480 spec = pkgs.writeText "users-groups.json" (builtins.toJSON { 481 481 inherit (cfg) mutableUsers;
+204 -204
pkgs/applications/editors/jetbrains/bin/versions.json
··· 3 3 "clion": { 4 4 "update-channel": "CLion RELEASE", 5 5 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.tar.gz", 6 - "version": "2023.3", 7 - "sha256": "0bfee58106140aeac826ee92faf7528ec30319c59a1c566d36f367a3251f2e70", 8 - "url": "https://download.jetbrains.com/cpp/CLion-2023.3.tar.gz", 9 - "build_number": "233.11799.238" 6 + "version": "2023.3.1", 7 + "sha256": "3cde2fc25c759d4e114c5a768547e1d3083710e0fbe2591084a4ad4934490fc9", 8 + "url": "https://download.jetbrains.com/cpp/CLion-2023.3.1.tar.gz", 9 + "build_number": "233.11799.287" 10 10 }, 11 11 "datagrip": { 12 12 "update-channel": "DataGrip RELEASE", 13 13 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.tar.gz", 14 - "version": "2023.3", 15 - "sha256": "04379c0b9c4b7dbb38bf90d163761890dbfb33b02d353accab2dd65657e7b493", 16 - "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3.tar.gz", 17 - "build_number": "233.11799.235" 14 + "version": "2023.3.1", 15 + "sha256": "4177882deb0380fba9b426c2580baea7dc4297bddefdd7bfb094433ff4cbb7b8", 16 + "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3.1.tar.gz", 17 + "build_number": "233.11799.296" 18 18 }, 19 19 "dataspell": { 20 20 "update-channel": "DataSpell RELEASE", 21 21 "url-template": "https://download.jetbrains.com/python/dataspell-{version}.tar.gz", 22 - "version": "2023.3", 23 - "sha256": "90e73da5236d3f60d6c7d45662981a4893243b3170866127e0ab8b5457ba52eb", 24 - "url": "https://download.jetbrains.com/python/dataspell-2023.3.tar.gz", 25 - "build_number": "233.11799.244" 22 + "version": "2023.3.1", 23 + "sha256": "0b5196dcc146cb163b1c9797986c46c651ad8132d3ee78dca92f9f9081f9f7e9", 24 + "url": "https://download.jetbrains.com/python/dataspell-2023.3.1.tar.gz", 25 + "build_number": "233.11799.285" 26 26 }, 27 27 "gateway": { 28 28 "update-channel": "Gateway RELEASE", ··· 35 35 "goland": { 36 36 "update-channel": "GoLand RELEASE", 37 37 "url-template": "https://download.jetbrains.com/go/goland-{version}.tar.gz", 38 - "version": "2023.3", 39 - "sha256": "9ec2ab3e4f0194e43493fd9ad9f8514f5c283b631bd2ec6106ee2ddc5ce5f870", 40 - "url": "https://download.jetbrains.com/go/goland-2023.3.tar.gz", 41 - "build_number": "233.11799.228" 38 + "version": "2023.3.1", 39 + "sha256": "2fafd8f76979b174c598e58b6e39d2d796eef8e69d28da28abcb7a5c260992d6", 40 + "url": "https://download.jetbrains.com/go/goland-2023.3.1.tar.gz", 41 + "build_number": "233.11799.286" 42 42 }, 43 43 "idea-community": { 44 44 "update-channel": "IntelliJ IDEA RELEASE", 45 45 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.tar.gz", 46 - "version": "2023.3", 47 - "sha256": "822dae9284a9432e110ee36a217d1da508061bf1fc17e38fb59c6912a9c8aef7", 48 - "url": "https://download.jetbrains.com/idea/ideaIC-2023.3.tar.gz", 49 - "build_number": "233.11799.241" 46 + "version": "2023.3.1", 47 + "sha256": "7afd70b71e1fcb8280393d59ec58ab72f2ccf369f5d6e0035e6b265600531e4a", 48 + "url": "https://download.jetbrains.com/idea/ideaIC-2023.3.1.tar.gz", 49 + "build_number": "233.11799.300" 50 50 }, 51 51 "idea-ultimate": { 52 52 "update-channel": "IntelliJ IDEA RELEASE", 53 53 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.tar.gz", 54 - "version": "2023.3", 55 - "sha256": "bbd3d84dc2df0b4c85850c6de1ef703892828b7cbb3fd2bdc251d32430c91f3b", 56 - "url": "https://download.jetbrains.com/idea/ideaIU-2023.3.tar.gz", 57 - "build_number": "233.11799.241" 54 + "version": "2023.3.1", 55 + "sha256": "0a80d971e430786492acfd04e4ba73eda2e4ee60f752e3f9494a4476c6cad761", 56 + "url": "https://download.jetbrains.com/idea/ideaIU-2023.3.1.tar.gz", 57 + "build_number": "233.11799.300" 58 58 }, 59 59 "mps": { 60 60 "update-channel": "MPS RELEASE", ··· 67 67 "phpstorm": { 68 68 "update-channel": "PhpStorm RELEASE", 69 69 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.tar.gz", 70 - "version": "2023.3", 71 - "sha256": "71ea19a11c1b62e83b4719160b2808f0de412910e3faf20690bfe53778785e2b", 72 - "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3.tar.gz", 73 - "build_number": "233.11799.232", 70 + "version": "2023.3.1", 71 + "sha256": "c8b034014e17c58def72aa351e44a441ca516403f795acef5325e964d5179983", 72 + "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3.1.tar.gz", 73 + "build_number": "233.11799.297", 74 74 "version-major-minor": "2022.3" 75 75 }, 76 76 "pycharm-community": { 77 77 "update-channel": "PyCharm RELEASE", 78 78 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.tar.gz", 79 - "version": "2023.3", 80 - "sha256": "8d182dac3aa65b465c5a57c87ffb258dbcad7c3c6dc4b8df9a734a3b6b4a2371", 81 - "url": "https://download.jetbrains.com/python/pycharm-community-2023.3.tar.gz", 82 - "build_number": "233.11799.259" 79 + "version": "2023.3.1", 80 + "sha256": "95a03ad8abf2400e9691bb10b13d47407abfcbc25192cf3773e1a2dab42c0499", 81 + "url": "https://download.jetbrains.com/python/pycharm-community-2023.3.1.tar.gz", 82 + "build_number": "233.11799.298" 83 83 }, 84 84 "pycharm-professional": { 85 85 "update-channel": "PyCharm RELEASE", 86 86 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.tar.gz", 87 - "version": "2023.3", 88 - "sha256": "cc4752cc185fc114121d2bab13eb8066e825cb6f0c1cf8027927355e9add8e53", 89 - "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3.tar.gz", 90 - "build_number": "233.11799.259" 87 + "version": "2023.3.1", 88 + "sha256": "f3a09cd2aebd2ffbc42f927467a613e55430d3ff76d57c263d31ccee3c1de110", 89 + "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3.1.tar.gz", 90 + "build_number": "233.11799.298" 91 91 }, 92 92 "rider": { 93 93 "update-channel": "Rider RELEASE", 94 94 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.tar.gz", 95 - "version": "2023.3", 96 - "sha256": "5c769632ba4d022e66d9e3f55a8561cb345d17f84752673703c072d3e34c05d7", 97 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3.tar.gz", 98 - "build_number": "233.11799.261" 95 + "version": "2023.3.1", 96 + "sha256": "07dfbdc277d2befdb2700f515167b9bcb6464dd6d9fe59f98147c03233b6aa75", 97 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3.1.tar.gz", 98 + "build_number": "233.11799.303" 99 99 }, 100 100 "ruby-mine": { 101 101 "update-channel": "RubyMine RELEASE", 102 102 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.tar.gz", 103 - "version": "2023.3", 104 - "sha256": "d4b061430c743cd5956b0ee3959b1f30d28c4ae18a38bb3ed691cb9d8ac80f72", 105 - "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3.tar.gz", 106 - "build_number": "233.11799.227" 103 + "version": "2023.3.1", 104 + "sha256": "35cd23c7a0f73add6ba05f246707e2f2550185033172f5d42a6b02e750253115", 105 + "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3.1.tar.gz", 106 + "build_number": "233.11799.290" 107 107 }, 108 108 "rust-rover": { 109 109 "update-channel": "RustRover EAP", 110 110 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.tar.gz", 111 111 "version": "2023.3 EAP", 112 - "sha256": "8f523786bcfb0f112d1112c7c65f2fbda0112952357c931f215b628530c550cf", 113 - "url": "https://download.jetbrains.com/rustrover/RustRover-233.10527.212.tar.gz", 114 - "build_number": "233.10527.212" 112 + "sha256": "07524c044de4565cbf052f9980044aa6c6e28064eefb3033587afa1e09ff69bf", 113 + "url": "https://download.jetbrains.com/rustrover/RustRover-233.11799.284.tar.gz", 114 + "build_number": "233.11799.284" 115 115 }, 116 116 "webstorm": { 117 117 "update-channel": "WebStorm RELEASE", 118 118 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.tar.gz", 119 - "version": "2023.3", 120 - "sha256": "f9f1356cf2a49516013a4a3ead18e0bf018973e0de8e6c8da5f6e29adb2c754b", 121 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3.tar.gz", 122 - "build_number": "233.11799.229" 119 + "version": "2023.3.1", 120 + "sha256": "26a3acc9864c2c7715d377059d3b52b1085b90b708b254ec2d52b80f625eb442", 121 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3.1.tar.gz", 122 + "build_number": "233.11799.293" 123 123 } 124 124 }, 125 125 "aarch64-linux": { 126 126 "clion": { 127 127 "update-channel": "CLion RELEASE", 128 128 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.tar.gz", 129 - "version": "2023.3", 130 - "sha256": "e83d3f9ebac39ee918d56d9611160bdb28eabe97b3cb1722f35ff5bc93e5f205", 131 - "url": "https://download.jetbrains.com/cpp/CLion-2023.3-aarch64.tar.gz", 132 - "build_number": "233.11799.238" 129 + "version": "2023.3.1", 130 + "sha256": "8aa207ee92f518fafc93b5a3bece67f15ce65ee18b8e6c28a393e8dbc0a5ef4f", 131 + "url": "https://download.jetbrains.com/cpp/CLion-2023.3.1-aarch64.tar.gz", 132 + "build_number": "233.11799.287" 133 133 }, 134 134 "datagrip": { 135 135 "update-channel": "DataGrip RELEASE", 136 136 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.tar.gz", 137 - "version": "2023.3", 138 - "sha256": "732eff9240d253fa616ba56bc92bdd1e25bb90aeb98ae45f06f043824a666027", 139 - "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3-aarch64.tar.gz", 140 - "build_number": "233.11799.235" 137 + "version": "2023.3.1", 138 + "sha256": "dd76187e8598fd0e450b76e54767ca321e3e61f11d745a191b9039f71914b003", 139 + "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3.1-aarch64.tar.gz", 140 + "build_number": "233.11799.296" 141 141 }, 142 142 "dataspell": { 143 143 "update-channel": "DataSpell RELEASE", 144 144 "url-template": "https://download.jetbrains.com/python/dataspell-{version}-aarch64.tar.gz", 145 - "version": "2023.3", 146 - "sha256": "95974bce1bc776658e0cb1cbccdcfb7fee9a51bbeb59972dbab443c99b684a8f", 147 - "url": "https://download.jetbrains.com/python/dataspell-2023.3-aarch64.tar.gz", 148 - "build_number": "233.11799.244" 145 + "version": "2023.3.1", 146 + "sha256": "ad49e53b159e321f07dc7b9f53a25a3a936cf49b5bffcf46357e5a80b1913ea9", 147 + "url": "https://download.jetbrains.com/python/dataspell-2023.3.1-aarch64.tar.gz", 148 + "build_number": "233.11799.285" 149 149 }, 150 150 "gateway": { 151 151 "update-channel": "Gateway RELEASE", ··· 158 158 "goland": { 159 159 "update-channel": "GoLand RELEASE", 160 160 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.tar.gz", 161 - "version": "2023.3", 162 - "sha256": "fe7fb133eda9c8608605bece69ead145cc00403d2b427ef4006daaadbb69a0c1", 163 - "url": "https://download.jetbrains.com/go/goland-2023.3-aarch64.tar.gz", 164 - "build_number": "233.11799.228" 161 + "version": "2023.3.1", 162 + "sha256": "87276008be7143efa3ad965194b4e5baf9528e59f9db5f6e5f856f0e0bb1554f", 163 + "url": "https://download.jetbrains.com/go/goland-2023.3.1-aarch64.tar.gz", 164 + "build_number": "233.11799.286" 165 165 }, 166 166 "idea-community": { 167 167 "update-channel": "IntelliJ IDEA RELEASE", 168 168 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.tar.gz", 169 - "version": "2023.3", 170 - "sha256": "6c0990d8b81d4c7c1e2783c0af5c01ff022ebac1a187036f413ef7572f77a9d2", 171 - "url": "https://download.jetbrains.com/idea/ideaIC-2023.3-aarch64.tar.gz", 172 - "build_number": "233.11799.241" 169 + "version": "2023.3.1", 170 + "sha256": "3a53972b56c9135c8ad1fb0c0d9d3ded2c79120f8e5461de272954f58c3637b4", 171 + "url": "https://download.jetbrains.com/idea/ideaIC-2023.3.1-aarch64.tar.gz", 172 + "build_number": "233.11799.300" 173 173 }, 174 174 "idea-ultimate": { 175 175 "update-channel": "IntelliJ IDEA RELEASE", 176 176 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.tar.gz", 177 - "version": "2023.3", 178 - "sha256": "a868d3e3aa86fa88036d933be0ab577fa5ad7b07e936cc26c73517c0fbacc7e4", 179 - "url": "https://download.jetbrains.com/idea/ideaIU-2023.3-aarch64.tar.gz", 180 - "build_number": "233.11799.241" 177 + "version": "2023.3.1", 178 + "sha256": "cf6e7dc7d6ba1a7e807d80316364e51ee2e23aa471ab19ada93aff8fc9b1627d", 179 + "url": "https://download.jetbrains.com/idea/ideaIU-2023.3.1-aarch64.tar.gz", 180 + "build_number": "233.11799.300" 181 181 }, 182 182 "mps": { 183 183 "update-channel": "MPS RELEASE", ··· 190 190 "phpstorm": { 191 191 "update-channel": "PhpStorm RELEASE", 192 192 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.tar.gz", 193 - "version": "2023.3", 194 - "sha256": "14b7203e089512b7d692068688ff59b8c8169f79111a929c94e91bdfdc36d6a0", 195 - "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3-aarch64.tar.gz", 196 - "build_number": "233.11799.232", 193 + "version": "2023.3.1", 194 + "sha256": "c3c04f463beb798da48d08188980cde1505795c6f2cfaf788c9bca94f0f3c2d7", 195 + "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3.1-aarch64.tar.gz", 196 + "build_number": "233.11799.297", 197 197 "version-major-minor": "2022.3" 198 198 }, 199 199 "pycharm-community": { 200 200 "update-channel": "PyCharm RELEASE", 201 201 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.tar.gz", 202 - "version": "2023.3", 203 - "sha256": "c4e41ea443e051f4129749d4514ca0415e8fb2dafe458f6ea36e68f368f72130", 204 - "url": "https://download.jetbrains.com/python/pycharm-community-2023.3-aarch64.tar.gz", 205 - "build_number": "233.11799.259" 202 + "version": "2023.3.1", 203 + "sha256": "1b9a0c950d232d4a0418203dbbff19ba73279cbc933789d11c2a81ce80d0b485", 204 + "url": "https://download.jetbrains.com/python/pycharm-community-2023.3.1-aarch64.tar.gz", 205 + "build_number": "233.11799.298" 206 206 }, 207 207 "pycharm-professional": { 208 208 "update-channel": "PyCharm RELEASE", 209 209 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.tar.gz", 210 - "version": "2023.3", 211 - "sha256": "49dbcf16b894d3e673105e64c07c69ffe6f07beb7ac4caab52370eefd39a95b1", 212 - "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3-aarch64.tar.gz", 213 - "build_number": "233.11799.259" 210 + "version": "2023.3.1", 211 + "sha256": "eb649602ebd2212575631db51569029e3683a9f4842b5e506c1f2b573a777749", 212 + "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3.1-aarch64.tar.gz", 213 + "build_number": "233.11799.298" 214 214 }, 215 215 "rider": { 216 216 "update-channel": "Rider RELEASE", 217 217 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.tar.gz", 218 - "version": "2023.3", 219 - "sha256": "bab897d57c11f874f157678fba89912cf5bbf981b9a4bb00fcd9971b977bed9f", 220 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3-aarch64.tar.gz", 221 - "build_number": "233.11799.261" 218 + "version": "2023.3.1", 219 + "sha256": "0a8328ce72821dc779724b4eb46ff8da98a374e178f5f0830141667371231ba6", 220 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3.1-aarch64.tar.gz", 221 + "build_number": "233.11799.303" 222 222 }, 223 223 "ruby-mine": { 224 224 "update-channel": "RubyMine RELEASE", 225 225 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.tar.gz", 226 - "version": "2023.3", 227 - "sha256": "fdd2f9d2000512c6a08b3fc646e2a9e33a04ed683bdc75bd2199a0ff1ca597e2", 228 - "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3-aarch64.tar.gz", 229 - "build_number": "233.11799.227" 226 + "version": "2023.3.1", 227 + "sha256": "6c77b39006410a580d9e46bb7a44b8a524414b1e38e61042be839eff10021fac", 228 + "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3.1-aarch64.tar.gz", 229 + "build_number": "233.11799.290" 230 230 }, 231 231 "rust-rover": { 232 232 "update-channel": "RustRover EAP", 233 233 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.tar.gz", 234 234 "version": "2023.3 EAP", 235 - "sha256": "6a3937bad6e5c5b9db477fad1baf891fff3701c9496e9d49a6d5407585a83969", 236 - "url": "https://download.jetbrains.com/rustrover/RustRover-233.10527.212-aarch64.tar.gz", 237 - "build_number": "233.10527.212" 235 + "sha256": "62b276acfb0c0233e84dd332cad95d84dc5d751e04e51cad6f0675e676674594", 236 + "url": "https://download.jetbrains.com/rustrover/RustRover-233.11799.284-aarch64.tar.gz", 237 + "build_number": "233.11799.284" 238 238 }, 239 239 "webstorm": { 240 240 "update-channel": "WebStorm RELEASE", 241 241 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.tar.gz", 242 - "version": "2023.3", 243 - "sha256": "8996ad43685c4804b3c79a848892f348967bc9912116a1ae035fb325fc442471", 244 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3-aarch64.tar.gz", 245 - "build_number": "233.11799.229" 242 + "version": "2023.3.1", 243 + "sha256": "2de348e4df2ce5fb4f9da1b2f17fa30c359a97aec499329aaea8d1bdf12fd4eb", 244 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3.1-aarch64.tar.gz", 245 + "build_number": "233.11799.293" 246 246 } 247 247 }, 248 248 "x86_64-darwin": { 249 249 "clion": { 250 250 "update-channel": "CLion RELEASE", 251 251 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}.dmg", 252 - "version": "2023.3", 253 - "sha256": "5d02a4c3502d830999bad4c72eabc5ce0d246009e74ba125f46d63f14e7fbfff", 254 - "url": "https://download.jetbrains.com/cpp/CLion-2023.3.dmg", 255 - "build_number": "233.11799.238" 252 + "version": "2023.3.1", 253 + "sha256": "199745463dee1f1a0c7f52b4fa5cc6a68121311d951a594cb4ce77fa4ed5ce2d", 254 + "url": "https://download.jetbrains.com/cpp/CLion-2023.3.1.dmg", 255 + "build_number": "233.11799.287" 256 256 }, 257 257 "datagrip": { 258 258 "update-channel": "DataGrip RELEASE", 259 259 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}.dmg", 260 - "version": "2023.3", 261 - "sha256": "ca92bc25ebdfca785eed74da713ffdd0c2cb9b1d4038b6e6db0044d71cc94e92", 262 - "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3.dmg", 263 - "build_number": "233.11799.235" 260 + "version": "2023.3.1", 261 + "sha256": "eb37ad83ecd5a74cbbdca5300e57e18ff9f946b0986b023921da07691b54498d", 262 + "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3.1.dmg", 263 + "build_number": "233.11799.296" 264 264 }, 265 265 "dataspell": { 266 266 "update-channel": "DataSpell RELEASE", 267 267 "url-template": "https://download.jetbrains.com/python/dataspell-{version}.dmg", 268 - "version": "2023.3", 269 - "sha256": "92c0c609a65577e5e74c6aff50ecee32480caf35adf91040f889a211ea0fa83b", 270 - "url": "https://download.jetbrains.com/python/dataspell-2023.3.dmg", 271 - "build_number": "233.11799.244" 268 + "version": "2023.3.1", 269 + "sha256": "4d6874a2bfecd3625808f1d6ce23c49974ce10cec482ed3a42e001bc6f7c720b", 270 + "url": "https://download.jetbrains.com/python/dataspell-2023.3.1.dmg", 271 + "build_number": "233.11799.285" 272 272 }, 273 273 "gateway": { 274 274 "update-channel": "Gateway RELEASE", ··· 281 281 "goland": { 282 282 "update-channel": "GoLand RELEASE", 283 283 "url-template": "https://download.jetbrains.com/go/goland-{version}.dmg", 284 - "version": "2023.3", 285 - "sha256": "fbaaf5172fbfa5a12611f089e95551594224a930a47cb1208652b68a4cdfdd36", 286 - "url": "https://download.jetbrains.com/go/goland-2023.3.dmg", 287 - "build_number": "233.11799.228" 284 + "version": "2023.3.1", 285 + "sha256": "56c2e20dcac8b86da4cd4d9a52c061fd9839b968ee0f2960084a52ac1c2dfbbf", 286 + "url": "https://download.jetbrains.com/go/goland-2023.3.1.dmg", 287 + "build_number": "233.11799.286" 288 288 }, 289 289 "idea-community": { 290 290 "update-channel": "IntelliJ IDEA RELEASE", 291 291 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}.dmg", 292 - "version": "2023.3", 293 - "sha256": "2457dabee48b0b4c7276b00d48c6fdf55990cd7feeecf3b6a4da8e38bd8566de", 294 - "url": "https://download.jetbrains.com/idea/ideaIC-2023.3.dmg", 295 - "build_number": "233.11799.241" 292 + "version": "2023.3.1", 293 + "sha256": "e65b75aa6fa957880f5e0b435d8eaea570a9f4408caa7e7475a90b5e1017cd2a", 294 + "url": "https://download.jetbrains.com/idea/ideaIC-2023.3.1.dmg", 295 + "build_number": "233.11799.300" 296 296 }, 297 297 "idea-ultimate": { 298 298 "update-channel": "IntelliJ IDEA RELEASE", 299 299 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}.dmg", 300 - "version": "2023.3", 301 - "sha256": "bfd3cdafc26c08a7a245498d5d711f04dae85d63050393dbe9e9510649510d1d", 302 - "url": "https://download.jetbrains.com/idea/ideaIU-2023.3.dmg", 303 - "build_number": "233.11799.241" 300 + "version": "2023.3.1", 301 + "sha256": "06cddba143c5e5c6fdf9a733a79d05e3f9c41eb96469000dbd7577d74686747c", 302 + "url": "https://download.jetbrains.com/idea/ideaIU-2023.3.1.dmg", 303 + "build_number": "233.11799.300" 304 304 }, 305 305 "mps": { 306 306 "update-channel": "MPS RELEASE", ··· 313 313 "phpstorm": { 314 314 "update-channel": "PhpStorm RELEASE", 315 315 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}.dmg", 316 - "version": "2023.3", 317 - "sha256": "5d27e955217e438806e4405f144330afd38e73e6105b6622ee07bdc5871e961f", 318 - "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3.dmg", 319 - "build_number": "233.11799.232", 316 + "version": "2023.3.1", 317 + "sha256": "dbf18efa0be9a029e09ecbc7f82f901643d81c2f96e75f73ec5ef12092c1008a", 318 + "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3.1.dmg", 319 + "build_number": "233.11799.297", 320 320 "version-major-minor": "2022.3" 321 321 }, 322 322 "pycharm-community": { 323 323 "update-channel": "PyCharm RELEASE", 324 324 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}.dmg", 325 - "version": "2023.3", 326 - "sha256": "8efb2617c2354e9f58b26651a3d55541311873d682c700dedc17eada1cc50b6d", 327 - "url": "https://download.jetbrains.com/python/pycharm-community-2023.3.dmg", 328 - "build_number": "233.11799.259" 325 + "version": "2023.3.1", 326 + "sha256": "48aabc8cc464c02a868527cda7a0fec7c3cb0339c1a6ad46590e2e2aa1530317", 327 + "url": "https://download.jetbrains.com/python/pycharm-community-2023.3.1.dmg", 328 + "build_number": "233.11799.298" 329 329 }, 330 330 "pycharm-professional": { 331 331 "update-channel": "PyCharm RELEASE", 332 332 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}.dmg", 333 - "version": "2023.3", 334 - "sha256": "6a9595e40cafe3575d0966d4b3b6005d4eb414ed82eaa9f15402cd6f76784a77", 335 - "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3.dmg", 336 - "build_number": "233.11799.259" 333 + "version": "2023.3.1", 334 + "sha256": "ddb6f52803e1774bcf1d965b0dece128d152579a8c773dc65b06b44b70a0b395", 335 + "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3.1.dmg", 336 + "build_number": "233.11799.298" 337 337 }, 338 338 "rider": { 339 339 "update-channel": "Rider RELEASE", 340 340 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}.dmg", 341 - "version": "2023.3", 342 - "sha256": "f4c74366b31db0853dd92364d3aeb866dbc49daee77f7d343ade960cd0bb9c12", 343 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3.dmg", 344 - "build_number": "233.11799.261" 341 + "version": "2023.3.1", 342 + "sha256": "b076dfca4fbe732190176d62defb0c5a99885861a1aeab72a6d105b66e4a47ca", 343 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3.1.dmg", 344 + "build_number": "233.11799.303" 345 345 }, 346 346 "ruby-mine": { 347 347 "update-channel": "RubyMine RELEASE", 348 348 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}.dmg", 349 - "version": "2023.3", 350 - "sha256": "1523f99ad685a47c02b53bedd58a3af0e9f299d44975b4eef2b79a5ff2686094", 351 - "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3.dmg", 352 - "build_number": "233.11799.227" 349 + "version": "2023.3.1", 350 + "sha256": "4cce817269f230684ff08318ace108d54b9dded525048faf4a1787eff8ba4dc0", 351 + "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3.1.dmg", 352 + "build_number": "233.11799.290" 353 353 }, 354 354 "rust-rover": { 355 355 "update-channel": "RustRover EAP", 356 356 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}.dmg", 357 357 "version": "2023.3 EAP", 358 - "sha256": "1573cb95ff2f8afcb5ac8c38ffdad68e9c49dbdaf3750bd19afe4081deafeb98", 359 - "url": "https://download.jetbrains.com/rustrover/RustRover-233.10527.212.dmg", 360 - "build_number": "233.10527.212" 358 + "sha256": "2ec2563a94abf3b873709c27cb81692fb0fbff44ee42b275cc38d0dc3c74e7af", 359 + "url": "https://download.jetbrains.com/rustrover/RustRover-233.11799.284.dmg", 360 + "build_number": "233.11799.284" 361 361 }, 362 362 "webstorm": { 363 363 "update-channel": "WebStorm RELEASE", 364 364 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}.dmg", 365 - "version": "2023.3", 366 - "sha256": "0813cf3e0677824c83bef46d7f04c08eece9538e323262bd29db45ea7f63877a", 367 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3.dmg", 368 - "build_number": "233.11799.229" 365 + "version": "2023.3.1", 366 + "sha256": "94cfc4db7574607555039c65a4bc6ecbb900192c19744bf9082ce9dfea5c7667", 367 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3.1.dmg", 368 + "build_number": "233.11799.293" 369 369 } 370 370 }, 371 371 "aarch64-darwin": { 372 372 "clion": { 373 373 "update-channel": "CLion RELEASE", 374 374 "url-template": "https://download.jetbrains.com/cpp/CLion-{version}-aarch64.dmg", 375 - "version": "2023.3", 376 - "sha256": "30dae459a21c346157c0412a0b99031445eeb90c466c25d44f60923042f7379e", 377 - "url": "https://download.jetbrains.com/cpp/CLion-2023.3-aarch64.dmg", 378 - "build_number": "233.11799.238" 375 + "version": "2023.3.1", 376 + "sha256": "d8b0dfeb8a4b15339f296c90b0535cdc5b0b25ba3cbbfe2601f04a24a4289b95", 377 + "url": "https://download.jetbrains.com/cpp/CLion-2023.3.1-aarch64.dmg", 378 + "build_number": "233.11799.287" 379 379 }, 380 380 "datagrip": { 381 381 "update-channel": "DataGrip RELEASE", 382 382 "url-template": "https://download.jetbrains.com/datagrip/datagrip-{version}-aarch64.dmg", 383 - "version": "2023.3", 384 - "sha256": "c6e9db660fd877c49587497ebfc03dd92621358aa23af5a9b358d55f0ce2026f", 385 - "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3-aarch64.dmg", 386 - "build_number": "233.11799.235" 383 + "version": "2023.3.1", 384 + "sha256": "c8a3d4c3679da1961f186d0d4fedc6510d8f967ceebe0cd34d867249f5729f34", 385 + "url": "https://download.jetbrains.com/datagrip/datagrip-2023.3.1-aarch64.dmg", 386 + "build_number": "233.11799.296" 387 387 }, 388 388 "dataspell": { 389 389 "update-channel": "DataSpell RELEASE", 390 390 "url-template": "https://download.jetbrains.com/python/dataspell-{version}-aarch64.dmg", 391 - "version": "2023.3", 392 - "sha256": "10ce5a942322b254791220c45f8ede74e693d6112ad3e48f3f8657bc291d7212", 393 - "url": "https://download.jetbrains.com/python/dataspell-2023.3-aarch64.dmg", 394 - "build_number": "233.11799.244" 391 + "version": "2023.3.1", 392 + "sha256": "0dbdfe1c24334dc2b4e27c0390862343041c07fb4abeb00b0eeb6db5b7171e83", 393 + "url": "https://download.jetbrains.com/python/dataspell-2023.3.1-aarch64.dmg", 394 + "build_number": "233.11799.285" 395 395 }, 396 396 "gateway": { 397 397 "update-channel": "Gateway RELEASE", ··· 404 404 "goland": { 405 405 "update-channel": "GoLand RELEASE", 406 406 "url-template": "https://download.jetbrains.com/go/goland-{version}-aarch64.dmg", 407 - "version": "2023.3", 408 - "sha256": "f5befd461b03cc1a6622c3d2cb8825a4d3ee6d3e66d365e7b12d9b742deec211", 409 - "url": "https://download.jetbrains.com/go/goland-2023.3-aarch64.dmg", 410 - "build_number": "233.11799.228" 407 + "version": "2023.3.1", 408 + "sha256": "b0e29f8a5470c7b5de7565faacf90f206e6a353f1afaecc239899d66dbae48d8", 409 + "url": "https://download.jetbrains.com/go/goland-2023.3.1-aarch64.dmg", 410 + "build_number": "233.11799.286" 411 411 }, 412 412 "idea-community": { 413 413 "update-channel": "IntelliJ IDEA RELEASE", 414 414 "url-template": "https://download.jetbrains.com/idea/ideaIC-{version}-aarch64.dmg", 415 - "version": "2023.3", 416 - "sha256": "16bd80724fdf92384e388add0c5aeaf7ad1b1114b4d5bab7105f039496886992", 417 - "url": "https://download.jetbrains.com/idea/ideaIC-2023.3-aarch64.dmg", 418 - "build_number": "233.11799.241" 415 + "version": "2023.3.1", 416 + "sha256": "0630913d6730073f8f06a26ef51a6b2e0599d93a5809718e74046bfea3023a86", 417 + "url": "https://download.jetbrains.com/idea/ideaIC-2023.3.1-aarch64.dmg", 418 + "build_number": "233.11799.300" 419 419 }, 420 420 "idea-ultimate": { 421 421 "update-channel": "IntelliJ IDEA RELEASE", 422 422 "url-template": "https://download.jetbrains.com/idea/ideaIU-{version}-aarch64.dmg", 423 - "version": "2023.3", 424 - "sha256": "c72a95df4476fa79aaff75b3a135444a32c35eb3639c2d1116768af482c818ee", 425 - "url": "https://download.jetbrains.com/idea/ideaIU-2023.3-aarch64.dmg", 426 - "build_number": "233.11799.241" 423 + "version": "2023.3.1", 424 + "sha256": "3f9bb300298dc900da342ee437e9475e762997095408c8b725ab499fec49e7bf", 425 + "url": "https://download.jetbrains.com/idea/ideaIU-2023.3.1-aarch64.dmg", 426 + "build_number": "233.11799.300" 427 427 }, 428 428 "mps": { 429 429 "update-channel": "MPS RELEASE", ··· 436 436 "phpstorm": { 437 437 "update-channel": "PhpStorm RELEASE", 438 438 "url-template": "https://download.jetbrains.com/webide/PhpStorm-{version}-aarch64.dmg", 439 - "version": "2023.3", 440 - "sha256": "42312418f029dcb88ef1453f0bd3549846fe11f87a226b742c4f3c5063bae7bb", 441 - "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3-aarch64.dmg", 442 - "build_number": "233.11799.232", 439 + "version": "2023.3.1", 440 + "sha256": "15cc0735cd2073d9e5a9bbbefa8d973cf05eabfd8fab0f77bd137e72cfd7f31c", 441 + "url": "https://download.jetbrains.com/webide/PhpStorm-2023.3.1-aarch64.dmg", 442 + "build_number": "233.11799.297", 443 443 "version-major-minor": "2022.3" 444 444 }, 445 445 "pycharm-community": { 446 446 "update-channel": "PyCharm RELEASE", 447 447 "url-template": "https://download.jetbrains.com/python/pycharm-community-{version}-aarch64.dmg", 448 - "version": "2023.3", 449 - "sha256": "e39b65d012ebce438b77a271645472c112046ae32502b92b3c16ece0ca58284b", 450 - "url": "https://download.jetbrains.com/python/pycharm-community-2023.3-aarch64.dmg", 451 - "build_number": "233.11799.259" 448 + "version": "2023.3.1", 449 + "sha256": "d4c425bb640dd8984706abd1e875db037feec5828737bf050e09f0ee7af4732c", 450 + "url": "https://download.jetbrains.com/python/pycharm-community-2023.3.1-aarch64.dmg", 451 + "build_number": "233.11799.298" 452 452 }, 453 453 "pycharm-professional": { 454 454 "update-channel": "PyCharm RELEASE", 455 455 "url-template": "https://download.jetbrains.com/python/pycharm-professional-{version}-aarch64.dmg", 456 - "version": "2023.3", 457 - "sha256": "1c1549915ee1ae93008d0c1e672f5aa8cae791f3cc4b101351495472e0574dac", 458 - "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3-aarch64.dmg", 459 - "build_number": "233.11799.259" 456 + "version": "2023.3.1", 457 + "sha256": "c57ebac6ab0d7b01b53a600da675a16c8eb853d7bba9c9324d16f99f5a198874", 458 + "url": "https://download.jetbrains.com/python/pycharm-professional-2023.3.1-aarch64.dmg", 459 + "build_number": "233.11799.298" 460 460 }, 461 461 "rider": { 462 462 "update-channel": "Rider RELEASE", 463 463 "url-template": "https://download.jetbrains.com/rider/JetBrains.Rider-{version}-aarch64.dmg", 464 - "version": "2023.3", 465 - "sha256": "a2d271e9f76924404ad3fafc1c8ed605bf4aefcf0b23260837b38cdd3487ba80", 466 - "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3-aarch64.dmg", 467 - "build_number": "233.11799.261" 464 + "version": "2023.3.1", 465 + "sha256": "ddb85ddf7636c45f911848a76daa92a6ba7cd3c428f28d7d89ecf44db2b93bdc", 466 + "url": "https://download.jetbrains.com/rider/JetBrains.Rider-2023.3.1-aarch64.dmg", 467 + "build_number": "233.11799.303" 468 468 }, 469 469 "ruby-mine": { 470 470 "update-channel": "RubyMine RELEASE", 471 471 "url-template": "https://download.jetbrains.com/ruby/RubyMine-{version}-aarch64.dmg", 472 - "version": "2023.3", 473 - "sha256": "bdadf38bd459436b0d221bc91d6bcd4020487fd5118010070c09e6aa6787cf30", 474 - "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3-aarch64.dmg", 475 - "build_number": "233.11799.227" 472 + "version": "2023.3.1", 473 + "sha256": "5999eefdce0738a5599ce7f35455e228e5c964b26924f947c6839a9aee561204", 474 + "url": "https://download.jetbrains.com/ruby/RubyMine-2023.3.1-aarch64.dmg", 475 + "build_number": "233.11799.290" 476 476 }, 477 477 "rust-rover": { 478 478 "update-channel": "RustRover EAP", 479 479 "url-template": "https://download.jetbrains.com/rustrover/RustRover-{version}-aarch64.dmg", 480 480 "version": "2023.3 EAP", 481 - "sha256": "d98eb787a95dcf35ab8948e7b98dca4e769ed3d08405ed69376c33e7e33f4085", 482 - "url": "https://download.jetbrains.com/rustrover/RustRover-233.10527.212-aarch64.dmg", 483 - "build_number": "233.10527.212" 481 + "sha256": "beff1ad500e58cb150ef05ab66de69dab2b609ff7da836a4ee04d701d9d41e76", 482 + "url": "https://download.jetbrains.com/rustrover/RustRover-233.11799.284-aarch64.dmg", 483 + "build_number": "233.11799.284" 484 484 }, 485 485 "webstorm": { 486 486 "update-channel": "WebStorm RELEASE", 487 487 "url-template": "https://download.jetbrains.com/webstorm/WebStorm-{version}-aarch64.dmg", 488 - "version": "2023.3", 489 - "sha256": "f3090bc7218d8e24403e8e8c0b2035d8200991f6600e9958afe7c9608ca4d050", 490 - "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3-aarch64.dmg", 491 - "build_number": "233.11799.229" 488 + "version": "2023.3.1", 489 + "sha256": "daca106f82dcefe66f00c1d34ed628f7b03db596c8852d855a1dfdd7066fd659", 490 + "url": "https://download.jetbrains.com/webstorm/WebStorm-2023.3.1-aarch64.dmg", 491 + "build_number": "233.11799.293" 492 492 } 493 493 } 494 494 }
+1 -1
pkgs/applications/editors/jetbrains/default.nix
··· 129 129 ''; 130 130 }); 131 131 132 - datagrip = mkJetBrainsProduct { pname = "datagrip"; }; 132 + datagrip = mkJetBrainsProduct { pname = "datagrip"; extraBuildInputs = [ stdenv.cc.cc ]; }; 133 133 134 134 dataspell = let 135 135 libr = runCommand "libR" {} ''
+143 -147
pkgs/applications/editors/jetbrains/plugins/plugins.json
··· 18 18 ], 19 19 "builds": { 20 20 "232.10072.781": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 21 - "233.10527.212": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 22 - "233.11799.227": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 23 - "233.11799.228": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 24 - "233.11799.229": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 25 - "233.11799.232": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 26 - "233.11799.235": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 27 - "233.11799.238": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 28 - "233.11799.241": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 29 - "233.11799.259": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 30 - "233.11799.261": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip" 21 + "233.11799.284": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 22 + "233.11799.286": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 23 + "233.11799.287": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 24 + "233.11799.290": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 25 + "233.11799.293": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 26 + "233.11799.296": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 27 + "233.11799.297": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 28 + "233.11799.298": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 29 + "233.11799.300": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip", 30 + "233.11799.303": "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip" 31 31 }, 32 32 "name": "ideavim" 33 33 }, ··· 36 36 "idea-ultimate" 37 37 ], 38 38 "builds": { 39 - "233.11799.241": "https://plugins.jetbrains.com/files/631/448205/python-233.11799.241.zip" 39 + "233.11799.300": "https://plugins.jetbrains.com/files/631/453254/python-233.11799.300.zip" 40 40 }, 41 41 "name": "python" 42 42 }, ··· 48 48 ], 49 49 "builds": { 50 50 "232.10072.781": "https://plugins.jetbrains.com/files/6954/442937/kotlin-plugin-232-1.9.21-release-633-IJ10072.27.zip", 51 - "233.11799.241": null 51 + "233.11799.300": null 52 52 }, 53 53 "name": "kotlin" 54 54 }, ··· 70 70 ], 71 71 "builds": { 72 72 "232.10072.781": null, 73 - "233.10527.212": "https://plugins.jetbrains.com/files/6981/433032/ini-233.10527.39.zip", 74 - "233.11799.227": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 75 - "233.11799.228": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 76 - "233.11799.229": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 77 - "233.11799.232": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 78 - "233.11799.235": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 79 - "233.11799.238": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 80 - "233.11799.241": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 81 - "233.11799.259": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip", 82 - "233.11799.261": "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip" 73 + "233.11799.284": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 74 + "233.11799.286": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 75 + "233.11799.287": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 76 + "233.11799.290": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 77 + "233.11799.293": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 78 + "233.11799.296": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 79 + "233.11799.297": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 80 + "233.11799.298": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 81 + "233.11799.300": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip", 82 + "233.11799.303": "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip" 83 83 }, 84 84 "name": "ini" 85 85 }, ··· 89 89 "phpstorm" 90 90 ], 91 91 "builds": { 92 - "233.11799.232": "https://plugins.jetbrains.com/files/7219/447835/Symfony_Plugin-2022.1.261.zip", 93 - "233.11799.241": "https://plugins.jetbrains.com/files/7219/447835/Symfony_Plugin-2022.1.261.zip" 92 + "233.11799.297": "https://plugins.jetbrains.com/files/7219/447835/Symfony_Plugin-2022.1.261.zip", 93 + "233.11799.300": "https://plugins.jetbrains.com/files/7219/447835/Symfony_Plugin-2022.1.261.zip" 94 94 }, 95 95 "name": "symfony-support" 96 96 }, ··· 100 100 "phpstorm" 101 101 ], 102 102 "builds": { 103 - "233.11799.232": "https://plugins.jetbrains.com/files/7320/346181/PHP_Annotations-9.4.0.zip", 104 - "233.11799.241": "https://plugins.jetbrains.com/files/7320/346181/PHP_Annotations-9.4.0.zip" 103 + "233.11799.297": "https://plugins.jetbrains.com/files/7320/346181/PHP_Annotations-9.4.0.zip", 104 + "233.11799.300": "https://plugins.jetbrains.com/files/7320/346181/PHP_Annotations-9.4.0.zip" 105 105 }, 106 106 "name": "php-annotations" 107 107 }, ··· 114 114 "rust-rover" 115 115 ], 116 116 "builds": { 117 - "233.10527.212": "https://plugins.jetbrains.com/files/7322/423134/python-ce-233.10527.20.zip", 118 - "233.11799.228": "https://plugins.jetbrains.com/files/7322/448211/python-ce-233.11799.241.zip", 119 - "233.11799.235": "https://plugins.jetbrains.com/files/7322/448211/python-ce-233.11799.241.zip", 120 - "233.11799.241": "https://plugins.jetbrains.com/files/7322/448211/python-ce-233.11799.241.zip", 121 - "233.11799.261": "https://plugins.jetbrains.com/files/7322/448211/python-ce-233.11799.241.zip" 117 + "233.11799.284": "https://plugins.jetbrains.com/files/7322/453268/python-ce-233.11799.300.zip", 118 + "233.11799.286": "https://plugins.jetbrains.com/files/7322/453268/python-ce-233.11799.300.zip", 119 + "233.11799.296": "https://plugins.jetbrains.com/files/7322/453268/python-ce-233.11799.300.zip", 120 + "233.11799.300": "https://plugins.jetbrains.com/files/7322/453268/python-ce-233.11799.300.zip", 121 + "233.11799.303": "https://plugins.jetbrains.com/files/7322/453268/python-ce-233.11799.300.zip" 122 122 }, 123 123 "name": "python-community-edition" 124 124 }, ··· 139 139 ], 140 140 "builds": { 141 141 "232.10072.781": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 142 - "233.11799.227": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 143 - "233.11799.228": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 144 - "233.11799.229": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 145 - "233.11799.232": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 146 - "233.11799.235": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 147 - "233.11799.238": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 148 - "233.11799.241": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 149 - "233.11799.259": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip", 150 - "233.11799.261": "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip" 142 + "233.11799.286": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 143 + "233.11799.287": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 144 + "233.11799.290": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 145 + "233.11799.293": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 146 + "233.11799.296": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 147 + "233.11799.297": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 148 + "233.11799.298": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 149 + "233.11799.300": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip", 150 + "233.11799.303": "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip" 151 151 }, 152 152 "name": "-deprecated-rust" 153 153 }, ··· 168 168 ], 169 169 "builds": { 170 170 "232.10072.781": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 171 - "233.11799.227": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 172 - "233.11799.228": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 173 - "233.11799.229": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 174 - "233.11799.232": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 175 - "233.11799.235": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 176 - "233.11799.238": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 177 - "233.11799.241": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 178 - "233.11799.259": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 179 - "233.11799.261": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip" 171 + "233.11799.286": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 172 + "233.11799.287": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 173 + "233.11799.290": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 174 + "233.11799.293": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 175 + "233.11799.296": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 176 + "233.11799.297": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 177 + "233.11799.298": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 178 + "233.11799.300": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip", 179 + "233.11799.303": "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip" 180 180 }, 181 181 "name": "-deprecated-rust-beta" 182 182 }, ··· 191 191 "webstorm" 192 192 ], 193 193 "builds": { 194 - "233.11799.227": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 195 - "233.11799.228": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 196 - "233.11799.229": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 197 - "233.11799.241": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 198 - "233.11799.259": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip" 194 + "233.11799.286": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 195 + "233.11799.290": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 196 + "233.11799.293": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 197 + "233.11799.298": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip", 198 + "233.11799.300": "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip" 199 199 }, 200 200 "name": "ide-features-trainer" 201 201 }, ··· 217 217 ], 218 218 "builds": { 219 219 "232.10072.781": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 220 - "233.10527.212": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 221 - "233.11799.227": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 222 - "233.11799.228": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 223 - "233.11799.229": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 224 - "233.11799.232": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 225 - "233.11799.235": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 226 - "233.11799.238": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 227 - "233.11799.241": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 228 - "233.11799.259": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 229 - "233.11799.261": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip" 220 + "233.11799.284": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 221 + "233.11799.286": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 222 + "233.11799.287": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 223 + "233.11799.290": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 224 + "233.11799.293": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 225 + "233.11799.296": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 226 + "233.11799.297": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 227 + "233.11799.298": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 228 + "233.11799.300": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip", 229 + "233.11799.303": "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip" 230 230 }, 231 231 "name": "nixidea" 232 232 }, ··· 235 235 "idea-ultimate" 236 236 ], 237 237 "builds": { 238 - "233.11799.241": "https://plugins.jetbrains.com/files/9568/445967/go-plugin-233.11799.196.zip" 238 + "233.11799.300": "https://plugins.jetbrains.com/files/9568/445967/go-plugin-233.11799.196.zip" 239 239 }, 240 240 "name": "go" 241 241 }, ··· 257 257 ], 258 258 "builds": { 259 259 "232.10072.781": "https://plugins.jetbrains.com/files/10037/432491/CSVEditor-3.2.3-232.zip", 260 - "233.10527.212": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 261 - "233.11799.227": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 262 - "233.11799.228": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 263 - "233.11799.229": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 264 - "233.11799.232": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 265 - "233.11799.235": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 266 - "233.11799.238": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 267 - "233.11799.241": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 268 - "233.11799.259": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 269 - "233.11799.261": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip" 260 + "233.11799.284": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 261 + "233.11799.286": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 262 + "233.11799.287": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 263 + "233.11799.290": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 264 + "233.11799.293": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 265 + "233.11799.296": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 266 + "233.11799.297": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 267 + "233.11799.298": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 268 + "233.11799.300": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip", 269 + "233.11799.303": "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip" 270 270 }, 271 271 "name": "csv-editor" 272 272 }, ··· 288 288 ], 289 289 "builds": { 290 290 "232.10072.781": "https://plugins.jetbrains.com/files/12062/364117/keymap-vscode-232.8660.88.zip", 291 - "233.10527.212": "https://plugins.jetbrains.com/files/12062/421207/keymap-vscode-233.10527.7.zip", 292 - "233.11799.227": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 293 - "233.11799.228": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 294 - "233.11799.229": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 295 - "233.11799.232": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 296 - "233.11799.235": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 297 - "233.11799.238": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 298 - "233.11799.241": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 299 - "233.11799.259": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 300 - "233.11799.261": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip" 291 + "233.11799.284": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 292 + "233.11799.286": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 293 + "233.11799.287": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 294 + "233.11799.290": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 295 + "233.11799.293": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 296 + "233.11799.296": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 297 + "233.11799.297": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 298 + "233.11799.298": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 299 + "233.11799.300": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip", 300 + "233.11799.303": "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip" 301 301 }, 302 302 "name": "vscode-keymap" 303 303 }, ··· 319 319 ], 320 320 "builds": { 321 321 "232.10072.781": "https://plugins.jetbrains.com/files/12559/364124/keymap-eclipse-232.8660.88.zip", 322 - "233.10527.212": "https://plugins.jetbrains.com/files/12559/421371/keymap-eclipse-233.10527.14.zip", 323 - "233.11799.227": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 324 - "233.11799.228": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 325 - "233.11799.229": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 326 - "233.11799.232": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 327 - "233.11799.235": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 328 - "233.11799.238": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 329 - "233.11799.241": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 330 - "233.11799.259": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 331 - "233.11799.261": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip" 322 + "233.11799.284": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 323 + "233.11799.286": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 324 + "233.11799.287": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 325 + "233.11799.290": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 326 + "233.11799.293": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 327 + "233.11799.296": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 328 + "233.11799.297": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 329 + "233.11799.298": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 330 + "233.11799.300": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip", 331 + "233.11799.303": "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip" 332 332 }, 333 333 "name": "eclipse-keymap" 334 334 }, ··· 350 350 ], 351 351 "builds": { 352 352 "232.10072.781": "https://plugins.jetbrains.com/files/13017/364038/keymap-visualStudio-232.8660.88.zip", 353 - "233.10527.212": "https://plugins.jetbrains.com/files/13017/421405/keymap-visualStudio-233.10527.14.zip", 354 - "233.11799.227": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 355 - "233.11799.228": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 356 - "233.11799.229": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 357 - "233.11799.232": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 358 - "233.11799.235": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 359 - "233.11799.238": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 360 - "233.11799.241": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 361 - "233.11799.259": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 362 - "233.11799.261": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip" 353 + "233.11799.284": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 354 + "233.11799.286": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 355 + "233.11799.287": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 356 + "233.11799.290": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 357 + "233.11799.293": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 358 + "233.11799.296": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 359 + "233.11799.297": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 360 + "233.11799.298": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 361 + "233.11799.300": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip", 362 + "233.11799.303": "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip" 363 363 }, 364 364 "name": "visual-studio-keymap" 365 365 }, ··· 381 381 ], 382 382 "builds": { 383 383 "232.10072.781": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 384 - "233.10527.212": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 385 - "233.11799.227": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 386 - "233.11799.228": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 387 - "233.11799.229": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 388 - "233.11799.232": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 389 - "233.11799.235": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 390 - "233.11799.238": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 391 - "233.11799.241": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 392 - "233.11799.259": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 393 - "233.11799.261": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 384 + "233.11799.284": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 385 + "233.11799.286": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 386 + "233.11799.287": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 387 + "233.11799.290": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 388 + "233.11799.293": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 389 + "233.11799.296": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 390 + "233.11799.297": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 391 + "233.11799.298": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 392 + "233.11799.300": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar", 393 + "233.11799.303": "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar" 394 394 }, 395 395 "name": "darcula-pitch-black" 396 396 }, ··· 412 412 ], 413 413 "builds": { 414 414 "232.10072.781": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 415 - "233.10527.212": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 416 - "233.11799.227": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 417 - "233.11799.228": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 418 - "233.11799.229": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 419 - "233.11799.232": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 420 - "233.11799.235": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 421 - "233.11799.238": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 422 - "233.11799.241": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 423 - "233.11799.259": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 424 - "233.11799.261": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip" 415 + "233.11799.284": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 416 + "233.11799.286": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 417 + "233.11799.287": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 418 + "233.11799.290": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 419 + "233.11799.293": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 420 + "233.11799.296": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 421 + "233.11799.297": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 422 + "233.11799.298": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 423 + "233.11799.300": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip", 424 + "233.11799.303": "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip" 425 425 }, 426 426 "name": "github-copilot" 427 427 }, ··· 443 443 ], 444 444 "builds": { 445 445 "232.10072.781": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 446 - "233.10527.212": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 447 - "233.11799.227": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 448 - "233.11799.228": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 449 - "233.11799.229": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 450 - "233.11799.232": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 451 - "233.11799.235": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 452 - "233.11799.238": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 453 - "233.11799.241": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 454 - "233.11799.259": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 455 - "233.11799.261": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 446 + "233.11799.284": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 447 + "233.11799.286": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 448 + "233.11799.287": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 449 + "233.11799.290": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 450 + "233.11799.293": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 451 + "233.11799.296": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 452 + "233.11799.297": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 453 + "233.11799.298": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 454 + "233.11799.300": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip", 455 + "233.11799.303": "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip" 456 456 }, 457 457 "name": "netbeans-6-5-keymap" 458 458 }, ··· 463 463 "rust-rover" 464 464 ], 465 465 "builds": { 466 - "233.10527.212": "https://plugins.jetbrains.com/files/22407/445095/intellij-rust-233.20527.212.zip", 467 - "233.11799.238": "https://plugins.jetbrains.com/files/22407/445095/intellij-rust-233.20527.212.zip", 468 - "233.11799.241": "https://plugins.jetbrains.com/files/22407/445095/intellij-rust-233.20527.212.zip" 466 + "233.11799.284": "https://plugins.jetbrains.com/files/22407/452893/intellij-rust-233.21799.284.zip", 467 + "233.11799.287": "https://plugins.jetbrains.com/files/22407/452893/intellij-rust-233.21799.284.zip", 468 + "233.11799.300": "https://plugins.jetbrains.com/files/22407/452893/intellij-rust-233.21799.284.zip" 469 469 }, 470 470 "name": "rust" 471 471 } ··· 474 474 "https://plugins.jetbrains.com/files/10037/432491/CSVEditor-3.2.3-232.zip": "sha256-H/LRD/5Q9qtYCq4CSonqQcJ4IcdefI/vg2Jlmc0vaJY=", 475 475 "https://plugins.jetbrains.com/files/10037/432492/CSVEditor-3.2.3-233.zip": "sha256-qbQ2ArW1NcER+LbiVqpB+Sdmi5s78u8jfNmEb+2Nmrg=", 476 476 "https://plugins.jetbrains.com/files/12062/364117/keymap-vscode-232.8660.88.zip": "sha256-q5i1eAANK+6uBYrtioKLzvJf5ALUB0K4d31Ut0vT/lE=", 477 - "https://plugins.jetbrains.com/files/12062/421207/keymap-vscode-233.10527.7.zip": "sha256-ao0YYoDH5766u9L3Af4UnUNshugFWyATiq4sA02iFYs=", 478 477 "https://plugins.jetbrains.com/files/12062/445740/keymap-vscode-233.11799.188.zip": "sha256-9keDJ73bSHkzAEq8nT96I5sp05BgMZ08/4BzarOjO5g=", 479 478 "https://plugins.jetbrains.com/files/12559/364124/keymap-eclipse-232.8660.88.zip": "sha256-eRCsivZbDNrc+kesa9jVsOoMFFz+WpYfSMXxPCCjWjw=", 480 - "https://plugins.jetbrains.com/files/12559/421371/keymap-eclipse-233.10527.14.zip": "sha256-hDBCh9RQ2fh7zhnpAspKsjmWPiUmTmNHkxAQvMzwmu8=", 481 479 "https://plugins.jetbrains.com/files/12559/445772/keymap-eclipse-233.11799.165.zip": "sha256-IsmoWuUroAp1LLuphp4F1dun4tQOOitZxoG+Nxs5pYk=", 482 480 "https://plugins.jetbrains.com/files/13017/364038/keymap-visualStudio-232.8660.88.zip": "sha256-5S8u7w14fLkaTcjACfUSun9pMNtPk20/8+Dr5Sp9sDE=", 483 - "https://plugins.jetbrains.com/files/13017/421405/keymap-visualStudio-233.10527.14.zip": "sha256-hmYWPmdH5SvGxhTwzqrzLAx6lhLWCy5AlT5vWyJolRc=", 484 481 "https://plugins.jetbrains.com/files/13017/445774/keymap-visualStudio-233.11799.165.zip": "sha256-Nb2tSxL+mAY1qJ3waipgV8ep+0R/BaYnzz7zfwtLHmk=", 485 482 "https://plugins.jetbrains.com/files/14059/82616/darcula-pitch-black.jar": "sha256-eXInfAqY3yEZRXCAuv3KGldM1pNKEioNwPB0rIGgJFw=", 486 483 "https://plugins.jetbrains.com/files/164/442850/IdeaVim-2.7.5-signed.zip": "sha256-MiF8MVWBEQqupoYyI+QOyXhSvJcoSgptePENByURphI=", 487 484 "https://plugins.jetbrains.com/files/17718/450592/github-copilot-intellij-1.4.4.3955.zip": "sha256-JmME4MEN6nK1ueiz12VefCQHaE629jXYqYM5jxIyfGQ=", 488 485 "https://plugins.jetbrains.com/files/18444/165585/NetBeans6.5Keymap.zip": "sha256-KrzZTKZMQqoEMw+vDUv2jjs0EX0leaPBkU8H/ecq/oI=", 489 - "https://plugins.jetbrains.com/files/22407/445095/intellij-rust-233.20527.212.zip": "sha256-Dvppw1U6PrkigeUjOsb/AMYIZEQ+e4cJIgwdUp3aePk=", 490 - "https://plugins.jetbrains.com/files/631/448205/python-233.11799.241.zip": "sha256-t5GTy6IFk2HP7kuOvSynchwaAdl6uJvItRYHITZCfDc=", 486 + "https://plugins.jetbrains.com/files/22407/452893/intellij-rust-233.21799.284.zip": "sha256-NKKCWf0g1k/20f2ZUAWlCT9EojXwUdo8wkozTLKgT14=", 487 + "https://plugins.jetbrains.com/files/631/453254/python-233.11799.300.zip": "sha256-4CfaxRTO/GdTWYAnoz2TSqOGcsCKC7huNkJpCa8lhIU=", 491 488 "https://plugins.jetbrains.com/files/6954/442937/kotlin-plugin-232-1.9.21-release-633-IJ10072.27.zip": "sha256-fDIY4qolt/XZ3EMSKm3qCvrvknoLrxUd8XgiyMkYRto=", 492 - "https://plugins.jetbrains.com/files/6981/433032/ini-233.10527.39.zip": "sha256-R+jrykFkx96cbwqYzTteV0WPJW3pFFRLCSO5qX41hRo=", 493 - "https://plugins.jetbrains.com/files/6981/448153/ini-233.11799.244.zip": "sha256-YkSM8FpNrD5KwFLP5AQatkEf7HfhFJHgWAP6emG0cUs=", 489 + "https://plugins.jetbrains.com/files/6981/453409/ini-233.11799.300.zip": "sha256-AGMs/SNFsWkcW+MD3SR+Qb6akdDdJJxCVY0PecVw1fU=", 494 490 "https://plugins.jetbrains.com/files/7219/447835/Symfony_Plugin-2022.1.261.zip": "sha256-aHD22UQFtBjT9g6ZUe+jGvmpNtYXSVnREm8vljFx2eM=", 495 491 "https://plugins.jetbrains.com/files/7320/346181/PHP_Annotations-9.4.0.zip": "sha256-hT5K4w4lhvNwDzDMDSvsIDGj9lyaRqglfOhlbNdqpWs=", 496 - "https://plugins.jetbrains.com/files/7322/423134/python-ce-233.10527.20.zip": "sha256-Ik9bVJxAxgU8rFZDqIU6j+9FglPsewcvGQljYeVZsIY=", 497 - "https://plugins.jetbrains.com/files/7322/448211/python-ce-233.11799.241.zip": "sha256-6VimHRLX3xl5fnF5VFIUjHqimzNLJr8zUwvsnOrQB4U=", 492 + "https://plugins.jetbrains.com/files/7322/453268/python-ce-233.11799.300.zip": "sha256-dJIGcrHJUXuZ4u8nAVfajCmpY1lk3W700uNXksLi38M=", 498 493 "https://plugins.jetbrains.com/files/8182/372556/intellij-rust-0.4.200.5420-232-beta.zip": "sha256-ZlSfPvhPixEz5JxU9qyG0nL3jiSjr4gKaf/xYcQI1vQ=", 494 + "https://plugins.jetbrains.com/files/8182/373256/intellij-rust-0.4.200.5421-232.zip": "sha256-NeAF3umfaSODjpd6J1dT8Ei5hF8g8OA+sgk7VjBodoU=", 499 495 "https://plugins.jetbrains.com/files/8182/395553/intellij-rust-0.4.201.5424-232.zip": "sha256-pVwBEyUCx/DJET9uIm8vxFeChE8FskWyfLjDpfg2mAE=", 500 496 "https://plugins.jetbrains.com/files/8554/445635/featuresTrainer-233.11799.172.zip": "sha256-xN0FUCIa4KcqFAGwaOWf74qpIEY2f/QtksEeNTKG7zw=", 501 497 "https://plugins.jetbrains.com/files/8607/422943/NixIDEA-0.4.0.11.zip": "sha256-Dwitpu5yLPWx+IUilpN5iqnN8FkKgaxUNjroBEx5lkM=",
+2 -2
pkgs/applications/gis/qmapshack/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "qmapshack"; 6 - version = "1.17.0"; 6 + version = "1.17.1"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "Maproom"; 10 10 repo = "qmapshack"; 11 11 rev = "V_${version}"; 12 - hash = "sha256-qG/fiR2J5wQZaR+xvBGjdp3L7viqki2ktkzBUf6fZi8="; 12 + hash = "sha256-wqztKmaUxY3qd7IgPM7kV7x0BsrTMTX3DbcdM+lsarI="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake wrapQtAppsHook ];
+5 -4
pkgs/applications/graphics/rnote/Cargo.lock
··· 3414 3414 3415 3415 [[package]] 3416 3416 name = "rnote" 3417 - version = "0.9.3" 3417 + version = "0.9.4" 3418 3418 dependencies = [ 3419 3419 "anyhow", 3420 3420 "base64", ··· 3462 3462 3463 3463 [[package]] 3464 3464 name = "rnote-cli" 3465 - version = "0.9.3" 3465 + version = "0.9.4" 3466 3466 dependencies = [ 3467 3467 "anyhow", 3468 3468 "atty", ··· 3480 3480 3481 3481 [[package]] 3482 3482 name = "rnote-compose" 3483 - version = "0.9.3" 3483 + version = "0.9.4" 3484 3484 dependencies = [ 3485 3485 "anyhow", 3486 + "approx", 3486 3487 "base64", 3487 3488 "clap", 3488 3489 "ink-stroke-modeler-rs", ··· 3508 3509 3509 3510 [[package]] 3510 3511 name = "rnote-engine" 3511 - version = "0.9.3" 3512 + version = "0.9.4" 3512 3513 dependencies = [ 3513 3514 "anyhow", 3514 3515 "approx",
+2 -2
pkgs/applications/graphics/rnote/default.nix
··· 26 26 27 27 stdenv.mkDerivation rec { 28 28 pname = "rnote"; 29 - version = "0.9.3"; 29 + version = "0.9.4"; 30 30 31 31 src = fetchFromGitHub { 32 32 owner = "flxzt"; 33 33 repo = "rnote"; 34 34 rev = "v${version}"; 35 - hash = "sha256-TeOBLPQc4y1lstqZUBDS3vUPama80UieifmxL2Qswvw="; 35 + hash = "sha256-twysPSuCu++dVqoRKTNSvxwrO1ljUu4k2vPZEBkaj10="; 36 36 }; 37 37 38 38 cargoDeps = rustPlatform.importCargoLock {
+6 -4
pkgs/applications/networking/nextcloud-client/default.nix
··· 1 1 { lib 2 - , mkDerivation 2 + , stdenv 3 3 , fetchFromGitHub 4 4 , cmake 5 5 , extra-cmake-modules ··· 21 21 , sphinx 22 22 , sqlite 23 23 , xdg-utils 24 + , wrapQtAppsHook 24 25 }: 25 26 26 - mkDerivation rec { 27 + stdenv.mkDerivation rec { 27 28 pname = "nextcloud-client"; 28 - version = "3.10.2"; 29 + version = "3.11.0"; 29 30 30 31 outputs = [ "out" "dev" ]; 31 32 ··· 33 34 owner = "nextcloud"; 34 35 repo = "desktop"; 35 36 rev = "v${version}"; 36 - sha256 = "sha256-sysWDjJSlXRjtv9eiCTkXb29ZYs3YC7sr/UMMPCt5wA="; 37 + hash = "sha256-rqSnCIsXQDf3cNQn4ofjGQkCgwYGyDau/WWUPHziNp4="; 37 38 }; 38 39 39 40 patches = [ ··· 55 56 extra-cmake-modules 56 57 librsvg 57 58 sphinx 59 + wrapQtAppsHook 58 60 ]; 59 61 60 62 buildInputs = [
+3 -3
pkgs/by-name/ez/eza/package.nix
··· 17 17 18 18 rustPlatform.buildRustPackage rec { 19 19 pname = "eza"; 20 - version = "0.16.3"; 20 + version = "0.17.0"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "eza-community"; 24 24 repo = "eza"; 25 25 rev = "v${version}"; 26 - hash = "sha256-DD9Ae397i1+rUPSyCSoPn66ZRy3WbbX/ZOIii3J60VU="; 26 + hash = "sha256-BYzt8PLqMbxlp8CdBJuBXGbTsC9e/dWhB4j1Ak2Fjbo="; 27 27 }; 28 28 29 - cargoHash = "sha256-U0smzRUkJOFKrdW4bHY3OT8/MJ74MH2dFnrPVXzqcXk="; 29 + cargoHash = "sha256-xyIFGPQkXZZLLXY5qwiRvFPvjhAIRc90RD2NpsuwrB4="; 30 30 31 31 nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ]; 32 32 buildInputs = [ zlib ]
+2 -2
pkgs/by-name/tt/ttop/package.nix
··· 2 2 3 3 buildNimPackage (finalAttrs: { 4 4 pname = "ttop"; 5 - version = "1.2.7"; 5 + version = "1.2.8"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "inv2004"; 9 9 repo = "ttop"; 10 10 rev = "v${finalAttrs.version}"; 11 - hash = "sha256-oPdaUqh6eN1X5kAYVvevOndkB/xnQng9QVLX9bu5P5E="; 11 + hash = "sha256-QMUrA3OjxlDa1OxptJL7T3SPDTzSwVz6zz+ueh9eovM="; 12 12 }; 13 13 14 14 lockFile = ./lock.json;
+2 -2
pkgs/data/fonts/commit-mono/default.nix
··· 4 4 }: 5 5 stdenvNoCC.mkDerivation rec { 6 6 pname = "commit-mono"; 7 - version = "1.141"; 7 + version = "1.142"; 8 8 9 9 src = fetchzip { 10 10 url = "https://github.com/eigilnikolajsen/commit-mono/releases/download/v${version}/CommitMono-${version}.zip"; 11 - hash = "sha256-ErC4ZM17rYq+5FRW9m9nIbQOjQGTCCoNhXHxb7Swd84="; 11 + hash = "sha256-ZOEo+uD1Vug+F38/eXD6xG1netEIAYn25bPBZ1H7aEE="; 12 12 stripRoot = false; 13 13 }; 14 14
+2 -2
pkgs/development/ocaml-modules/lambda-term/default.nix
··· 2 2 3 3 let params = 4 4 if lib.versionAtLeast ocaml.version "4.08" then { 5 - version = "3.3.1"; 6 - sha256 = "sha256-C124bhdrY+XzL93zzNEbCr+U+7CYBZDm0hlAw+iqat4="; 5 + version = "3.3.2"; 6 + sha256 = "sha256-T2DDpHqLar1sgmju0PLvhAZef5VzOpPWcFVhuZlPQmM="; 7 7 } else { 8 8 version = "3.1.0"; 9 9 sha256 = "1k0ykiz0vhpyyj9fkss29ajas4fh1xh449j702xkvayqipzj1mkg";
+3 -4
pkgs/development/python-modules/jupyterlab/default.nix
··· 15 15 , jinja2 16 16 , tomli 17 17 , pythonOlder 18 - , jupyter-packaging 19 18 }: 20 19 21 20 buildPythonPackage rec { 22 21 pname = "jupyterlab"; 23 - version = "4.0.6"; 24 - format = "pyproject"; 22 + version = "4.0.9"; 23 + pyproject = true; 25 24 26 25 disabled = pythonOlder "3.8"; 27 26 28 27 src = fetchPypi { 29 28 inherit pname version; 30 - hash = "sha256-bEOuWmof0v36/LNFQASVi95tp2Mxq7RM/8b55Daxm6E="; 29 + hash = "sha256-nrraQdUmUfYjwMnwad24oh1oSOTIh9jl3cBhMWbtXAs="; 31 30 }; 32 31 33 32 nativeBuildInputs = [
+2 -8
pkgs/games/shipwright/default.nix
··· 95 95 96 96 stdenv.mkDerivation rec { 97 97 pname = "shipwright"; 98 - version = "7.0.2"; 98 + version = "7.1.1"; 99 99 100 100 src = fetchFromGitHub { 101 101 owner = "harbourmasters"; 102 102 repo = "shipwright"; 103 103 rev = version; 104 - hash = "sha256-2VCcczGWSvp6hk8FTA1/T1E1KkrrvWyOdkEw8eiYYnY="; 104 + hash = "sha256-zgxJj65wKsQWvVxeCspyHG9YqoYqZxd6GrYptOA8Byk="; 105 105 fetchSubmodules = true; 106 106 }; 107 107 ··· 135 135 SDL2_net 136 136 libpulseaudio 137 137 libpng 138 - ]; 139 - 140 - patches = [ 141 - # These patches make soh look inside the nix store for data files (the controller database and the OTRs) 142 - ./lus-install-paths.patch 143 - ./soh-misc-otr-patches.patch 144 138 ]; 145 139 146 140 cmakeFlags = [
-146
pkgs/games/shipwright/lus-install-paths.patch
··· 1 - Submodule libultraship contains modified content 2 - diff --git a/libultraship/src/CMakeLists.txt b/libultraship/src/CMakeLists.txt 3 - index f95c3c9..5b967b9 100644 4 - --- a/libultraship/src/CMakeLists.txt 5 - +++ b/libultraship/src/CMakeLists.txt 6 - @@ -74,7 +74,10 @@ target_sources(libultraship PRIVATE ${Source_Files__Controller}) 7 - 8 - #=================== Core =================== 9 - 10 - +configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/install_config.h.in ${CMAKE_BINARY_DIR}/install_config.h @ONLY) 11 - + 12 - set(Source_Files__Core 13 - + ${CMAKE_BINARY_DIR}/install_config.h 14 - ${CMAKE_CURRENT_SOURCE_DIR}/core/Window.h 15 - ${CMAKE_CURRENT_SOURCE_DIR}/core/Window.cpp 16 - ${CMAKE_CURRENT_SOURCE_DIR}/core/ConsoleVariable.h 17 - @@ -329,7 +332,7 @@ endif() 18 - #=================== Packages & Includes =================== 19 - 20 - target_include_directories(libultraship 21 - - PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../extern 22 - + PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/../extern ${CMAKE_BINARY_DIR} 23 - PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${INCLUDE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/../extern/spdlog/include ${CMAKE_CURRENT_SOURCE_DIR}/../extern/stb 24 - ) 25 - 26 - diff --git a/libultraship/src/core/Context.cpp b/libultraship/src/core/Context.cpp 27 - index 776333e..fa546e6 100644 28 - --- a/libultraship/src/core/Context.cpp 29 - +++ b/libultraship/src/core/Context.cpp 30 - @@ -14,6 +14,7 @@ 31 - #elif defined(__WIIU__) 32 - #include "port/wiiu/WiiUImpl.h" 33 - #endif 34 - +#include "install_config.h" 35 - 36 - namespace LUS { 37 - std::weak_ptr<Context> Context::mContext; 38 - @@ -281,6 +282,18 @@ std::string Context::GetShortName() { 39 - } 40 - 41 - std::string Context::GetAppBundlePath() { 42 - +#ifdef CMAKE_INSTALL_PREFIX 43 - + static const std::string fpath = CMAKE_INSTALL_PREFIX; 44 - + static int exists = -1; 45 - + 46 - + if (exists == -1) { 47 - + exists = fpath.size() > 0 && std::filesystem::is_directory(fpath); 48 - + } 49 - + 50 - + if (exists) { 51 - + return fpath; 52 - + } 53 - +#else 54 - #ifdef __APPLE__ 55 - FolderManager folderManager; 56 - return folderManager.getMainBundlePath(); 57 - @@ -291,6 +304,7 @@ std::string Context::GetAppBundlePath() { 58 - if (fpath != NULL) { 59 - return std::string(fpath); 60 - } 61 - +#endif 62 - #endif 63 - 64 - return "."; 65 - @@ -304,6 +318,13 @@ std::string Context::GetAppDirectoryPath() { 66 - } 67 - #endif 68 - 69 - + char *prefpath = SDL_GetPrefPath(NULL, "soh"); 70 - + if (prefpath != NULL) { 71 - + std::string ret(prefpath); 72 - + SDL_free(prefpath); 73 - + return ret; 74 - + } 75 - + 76 - return "."; 77 - } 78 - 79 - @@ -315,7 +336,24 @@ std::string Context::GetPathRelativeToAppDirectory(const char* path) { 80 - return GetAppDirectoryPath() + "/" + path; 81 - } 82 - 83 - +std::string Context::FindFileFromAllAppDirectories(const char* path) { 84 - + std::string fpath; 85 - + 86 - + // app configuration dir (eg. ~/.local/share) 87 - + fpath = GetPathRelativeToAppDirectory(path); 88 - + if (std::filesystem::exists(fpath)) { 89 - + return fpath; 90 - + } 91 - + // app install dir (eg. /usr/) 92 - + fpath = GetPathRelativeToAppBundle(path); 93 - + if (std::filesystem::exists(fpath)) { 94 - + return fpath; 95 - + } 96 - + // current dir 97 - + return "./" + std::string(path); 98 - +} 99 - + 100 - bool Context::DoesOtrFileExist() { 101 - return mOtrFileExists; 102 - } 103 - -} // namespace LUS 104 - \ No newline at end of file 105 - +} // namespace LUS 106 - diff --git a/libultraship/src/core/Context.h b/libultraship/src/core/Context.h 107 - index c32f4dd..a9f1639 100644 108 - --- a/libultraship/src/core/Context.h 109 - +++ b/libultraship/src/core/Context.h 110 - @@ -26,6 +26,7 @@ class Context { 111 - static std::string GetAppDirectoryPath(); 112 - static std::string GetPathRelativeToAppDirectory(const char* path); 113 - static std::string GetPathRelativeToAppBundle(const char* path); 114 - + static std::string FindFileFromAllAppDirectories(const char* path); 115 - 116 - Context(std::string name, std::string shortName); 117 - 118 - diff --git a/libultraship/src/core/libultra/os.cpp b/libultraship/src/core/libultra/os.cpp 119 - index 9058fe1..7d9387e 100644 120 - --- a/libultraship/src/core/libultra/os.cpp 121 - +++ b/libultraship/src/core/libultra/os.cpp 122 - @@ -21,8 +21,8 @@ int32_t osContInit(OSMesgQueue* mq, uint8_t* controllerBits, OSContStatus* statu 123 - } 124 - 125 - #ifndef __SWITCH__ 126 - - const char* controllerDb = "gamecontrollerdb.txt"; 127 - - int mappingsAdded = SDL_GameControllerAddMappingsFromFile(controllerDb); 128 - + std::string controllerDb = LUS::Context::GetPathRelativeToAppBundle("gamecontrollerdb.txt"); 129 - + int mappingsAdded = SDL_GameControllerAddMappingsFromFile(controllerDb.c_str()); 130 - if (mappingsAdded >= 0) { 131 - SPDLOG_INFO("Added SDL game controllers from \"{}\" ({})", controllerDb, mappingsAdded); 132 - } else { 133 - @@ -90,4 +90,4 @@ int32_t osRecvMesg(OSMesgQueue* mq, OSMesg* msg, int32_t flag) { 134 - mq->validCount--; 135 - return 0; 136 - } 137 - -} 138 - \ No newline at end of file 139 - +} 140 - diff --git a/libultraship/src/install_config.h.in b/libultraship/src/install_config.h.in 141 - new file mode 100644 142 - index 0000000..029753c 143 - --- /dev/null 144 - +++ b/libultraship/src/install_config.h.in 145 - @@ -0,0 +1 @@ 146 - +#cmakedefine CMAKE_INSTALL_PREFIX "@CMAKE_INSTALL_PREFIX@"
-119
pkgs/games/shipwright/soh-misc-otr-patches.patch
··· 1 - diff --git a/soh/soh/Extractor/Extract.cpp b/soh/soh/Extractor/Extract.cpp 2 - index a9ddc4f4..f6d45fe2 100644 3 - --- a/soh/soh/Extractor/Extract.cpp 4 - +++ b/soh/soh/Extractor/Extract.cpp 5 - @@ -490,28 +490,27 @@ const char* Extractor::GetZapdVerStr() const { 6 - 7 - extern "C" int zapd_main(int argc, char** argv); 8 - 9 - -bool Extractor::CallZapd() { 10 - +bool Extractor::CallZapd(std::string &assetPath) { 11 - constexpr int argc = 16; 12 - - char xmlPath[100]; 13 - - char confPath[100]; 14 - std::array<const char*, argc> argv; 15 - const char* version = GetZapdVerStr(); 16 - 17 - - snprintf(xmlPath, 100, "assets/extractor/xmls/%s", version); 18 - - snprintf(confPath, 100, "assets/extractor/Config_%s.xml", version); 19 - + std::string xmlPath = assetPath + "/assets/extractor/xmls/" + version; 20 - + std::string confPath = assetPath + "/assets/extractor/Config_" + version + ".xml"; 21 - + std::string fileListsPath = assetPath + "/assets/extractor/filelists"; 22 - 23 - argv[0] = "ZAPD"; 24 - argv[1] = "ed"; 25 - argv[2] = "-i"; 26 - - argv[3] = xmlPath; 27 - + argv[3] = xmlPath.c_str(); 28 - argv[4] = "-b"; 29 - argv[5] = mCurrentRomPath.c_str(); 30 - argv[6] = "-fl"; 31 - - argv[7] = "assets/extractor/filelists"; 32 - + argv[7] = fileListsPath.c_str(); 33 - argv[8] = "-gsf"; 34 - - argv[9] = "1"; 35 - + argv[9] = "0"; 36 - argv[10] = "-rconf"; 37 - - argv[11] = confPath; 38 - + argv[11] = confPath.c_str(); 39 - argv[12] = "-se"; 40 - argv[13] = "OTR"; 41 - argv[14] = "--otrfile"; 42 - diff --git a/soh/soh/Extractor/Extract.h b/soh/soh/Extractor/Extract.h 43 - index e4eb2e5b..3c95b025 100644 44 - --- a/soh/soh/Extractor/Extract.h 45 - +++ b/soh/soh/Extractor/Extract.h 46 - @@ -57,7 +57,7 @@ class Extractor { 47 - bool IsMasterQuest() const; 48 - 49 - bool Run(RomSearchMode searchMode = RomSearchMode::Both); 50 - - bool CallZapd(); 51 - + bool CallZapd(std::string& assetPath); 52 - const char* GetZapdStr(); 53 - }; 54 - #endif 55 - diff --git a/soh/soh/OTRGlobals.cpp b/soh/soh/OTRGlobals.cpp 56 - index d192de6a..cc516085 100644 57 - --- a/soh/soh/OTRGlobals.cpp 58 - +++ b/soh/soh/OTRGlobals.cpp 59 - @@ -201,11 +201,11 @@ const char* constCameraStrings[] = { 60 - 61 - OTRGlobals::OTRGlobals() { 62 - std::vector<std::string> OTRFiles; 63 - - std::string mqPath = LUS::Context::GetPathRelativeToAppDirectory("oot-mq.otr"); 64 - + std::string mqPath = LUS::Context::FindFileFromAllAppDirectories("oot-mq.otr"); 65 - if (std::filesystem::exists(mqPath)) { 66 - OTRFiles.push_back(mqPath); 67 - } 68 - - std::string ootPath = LUS::Context::GetPathRelativeToAppDirectory("oot.otr"); 69 - + std::string ootPath = LUS::Context::FindFileFromAllAppDirectories("oot.otr"); 70 - if (std::filesystem::exists(ootPath)) { 71 - OTRFiles.push_back(ootPath); 72 - } 73 - @@ -213,7 +213,7 @@ OTRGlobals::OTRGlobals() { 74 - if (std::filesystem::exists(sohOtrPath)) { 75 - OTRFiles.push_back(sohOtrPath); 76 - } 77 - - std::string patchesPath = LUS::Context::GetPathRelativeToAppDirectory("mods"); 78 - + std::string patchesPath = LUS::Context::FindFileFromAllAppDirectories("mods"); 79 - if (patchesPath.length() > 0 && std::filesystem::exists(patchesPath)) { 80 - if (std::filesystem::is_directory(patchesPath)) { 81 - for (const auto& p : std::filesystem::recursive_directory_iterator(patchesPath)) { 82 - @@ -709,8 +709,10 @@ extern "C" void OTRExtScanner() { 83 - 84 - extern "C" void InitOTR() { 85 - #if not defined (__SWITCH__) && not defined(__WIIU__) 86 - - if (!std::filesystem::exists(LUS::Context::GetPathRelativeToAppDirectory("oot-mq.otr")) && 87 - - !std::filesystem::exists(LUS::Context::GetPathRelativeToAppDirectory("oot.otr"))){ 88 - + if (!std::filesystem::exists(LUS::Context::FindFileFromAllAppDirectories("oot-mq.otr")) && 89 - + !std::filesystem::exists(LUS::Context::FindFileFromAllAppDirectories("oot.otr"))){ 90 - + std::string exporterAssetPath = LUS::Context::GetAppBundlePath(); 91 - + 92 - bool generatedOtrIsMQ = false; 93 - if (Extractor::ShowYesNoBox("No OTR Files", "No OTR files found. Generate one now?") == IDYES) { 94 - Extractor extract; 95 - @@ -718,7 +720,7 @@ extern "C" void InitOTR() { 96 - Extractor::ShowErrorBox("Error", "An error occured, no OTR file was generated. Exiting..."); 97 - exit(1); 98 - } 99 - - extract.CallZapd(); 100 - + extract.CallZapd(exporterAssetPath); 101 - generatedOtrIsMQ = extract.IsMasterQuest(); 102 - } else { 103 - exit(1); 104 - @@ -728,7 +730,7 @@ extern "C" void InitOTR() { 105 - if (!extract.Run(generatedOtrIsMQ ? RomSearchMode::Vanilla : RomSearchMode::MQ)) { 106 - Extractor::ShowErrorBox("Error", "An error occured, an OTR file may have been generated by a different step. Continuing..."); 107 - } else { 108 - - extract.CallZapd(); 109 - + extract.CallZapd(exporterAssetPath); 110 - } 111 - } 112 - } 113 - @@ -2018,4 +2020,4 @@ extern "C" void Gfx_RegisterBlendedTexture(const char* name, u8* mask, u8* repla 114 - 115 - extern "C" void SaveManager_ThreadPoolWait() { 116 - SaveManager::Instance->ThreadPoolWait(); 117 - -} 118 - \ No newline at end of file 119 - +}
+35 -35
pkgs/os-specific/linux/kernel/hardened/patches.json
··· 2 2 "4.14": { 3 3 "patch": { 4 4 "extra": "-hardened1", 5 - "name": "linux-hardened-4.14.332-hardened1.patch", 6 - "sha256": "1nda3z8hkyfw53dzk1v5zwpzhm75gizsixfmrh8ylaghhk5s8yw3", 7 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.332-hardened1/linux-hardened-4.14.332-hardened1.patch" 5 + "name": "linux-hardened-4.14.333-hardened1.patch", 6 + "sha256": "18pz0g5k3iw6npsp6msyl33ci3jsnw6zv87pagz9scvzgxnsy68h", 7 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.14.333-hardened1/linux-hardened-4.14.333-hardened1.patch" 8 8 }, 9 - "sha256": "1f4q0acbp917myjmgiy4haxp78yak5h1rj5g937r6mkykwb6nb14", 10 - "version": "4.14.332" 9 + "sha256": "0j5nrankrhi56qzmyjg1pznqx1zgk5f7cfa154smjbn3zlm7lcv6", 10 + "version": "4.14.333" 11 11 }, 12 12 "4.19": { 13 13 "patch": { 14 14 "extra": "-hardened1", 15 - "name": "linux-hardened-4.19.301-hardened1.patch", 16 - "sha256": "0arlwp0g4anqlnivyc8y6rq9mhq1ivmy4i0d8kqvwpc2b3wcc525", 17 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.301-hardened1/linux-hardened-4.19.301-hardened1.patch" 15 + "name": "linux-hardened-4.19.302-hardened1.patch", 16 + "sha256": "1qr0i1swrvbwxd7sx0fy6cg85k0aya518cdnmx2v1jpydvlkhn1a", 17 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/4.19.302-hardened1/linux-hardened-4.19.302-hardened1.patch" 18 18 }, 19 - "sha256": "1fr05fl8fyyjgsqj8fppd5v378d7sazvpqlq4sl875851fd9nmb2", 20 - "version": "4.19.301" 19 + "sha256": "1kkkpm34p5rq0iijzrzwaq0cb62w543argargw5p1wzg8803rlsk", 20 + "version": "4.19.302" 21 21 }, 22 22 "5.10": { 23 23 "patch": { 24 24 "extra": "-hardened1", 25 - "name": "linux-hardened-5.10.203-hardened1.patch", 26 - "sha256": "19inx95ynyzhh2h9xdg2yw4yfa5nfcw2dh2a7vw4mf0bqdv2iqvc", 27 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.203-hardened1/linux-hardened-5.10.203-hardened1.patch" 25 + "name": "linux-hardened-5.10.204-hardened1.patch", 26 + "sha256": "0a1hyf7sjsv9g47x7nznpn5nq7p5jkzy2f4nsiy3pp1853f00v1d", 27 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.10.204-hardened1/linux-hardened-5.10.204-hardened1.patch" 28 28 }, 29 - "sha256": "0xr8p7kfr1v3s41fv55ph0l8d9s2p146dl2fh3r2y09lrvwwxssn", 30 - "version": "5.10.203" 29 + "sha256": "1vnamiyr378q52xgkg7kvpx80zck729dim77vp06a3q6n580g5gz", 30 + "version": "5.10.204" 31 31 }, 32 32 "5.15": { 33 33 "patch": { 34 34 "extra": "-hardened1", 35 - "name": "linux-hardened-5.15.142-hardened1.patch", 36 - "sha256": "0x4bsf638rrdrp9b389i6nlprwsfc25qpld50yfcjinqhiykd269", 37 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.142-hardened1/linux-hardened-5.15.142-hardened1.patch" 35 + "name": "linux-hardened-5.15.143-hardened1.patch", 36 + "sha256": "0rg37d21k0ab3nzaif46qc2ql9wd3v50n800kbpfa4g9qsq51j99", 37 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.15.143-hardened1/linux-hardened-5.15.143-hardened1.patch" 38 38 }, 39 - "sha256": "0xjn16b02f8d6c0m8vrbmk85kdyfy8m46s80rnkb0nnwfx9cjxld", 40 - "version": "5.15.142" 39 + "sha256": "00lyv7zsj97mkg9i7dkb1a6km22mnr0qr687d9zz4ckjq1pb2sq9", 40 + "version": "5.15.143" 41 41 }, 42 42 "5.4": { 43 43 "patch": { 44 44 "extra": "-hardened1", 45 - "name": "linux-hardened-5.4.263-hardened1.patch", 46 - "sha256": "1v59qzjp9v78y7fkj884a77pjsk4ggplkfh1fq2blj04g7v1zhgv", 47 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.263-hardened1/linux-hardened-5.4.263-hardened1.patch" 45 + "name": "linux-hardened-5.4.264-hardened1.patch", 46 + "sha256": "1rb3bc6c4qgdy1yysdl72qpizippimk1rfshajcsn7i034c9g4ca", 47 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/5.4.264-hardened1/linux-hardened-5.4.264-hardened1.patch" 48 48 }, 49 - "sha256": "1y1mfwjsilrx8x8jnjlyh8r9zlygjjqdf7pay92jv2qijjddpl2h", 50 - "version": "5.4.263" 49 + "sha256": "1c5n47dq9khb15hz24a000k3hj913vv1dda6famnm8wpjbfr176k", 50 + "version": "5.4.264" 51 51 }, 52 52 "6.1": { 53 53 "patch": { 54 54 "extra": "-hardened1", 55 - "name": "linux-hardened-6.1.67-hardened1.patch", 56 - "sha256": "0jcn2k79l90dys4nrwqha89jv9d1ffghhvlqk9vibfs7y3zrlpbr", 57 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.67-hardened1/linux-hardened-6.1.67-hardened1.patch" 55 + "name": "linux-hardened-6.1.68-hardened1.patch", 56 + "sha256": "020xh7zsdfyp7g1n3fp8mmsy4ayhw309fcb65jwmkd8ha2mzm1yc", 57 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.1.68-hardened1/linux-hardened-6.1.68-hardened1.patch" 58 58 }, 59 - "sha256": "11cjqll3b7iq3mblwyzjrd5ph8avgk23f4mw4shm8j6ai5rdndvm", 60 - "version": "6.1.67" 59 + "sha256": "1qc4cwqlfni9i6mzh6arghdsd842hp9lb7s832dxw1p261mg4prn", 60 + "version": "6.1.68" 61 61 }, 62 62 "6.5": { 63 63 "patch": { ··· 72 72 "6.6": { 73 73 "patch": { 74 74 "extra": "-hardened1", 75 - "name": "linux-hardened-6.6.6-hardened1.patch", 76 - "sha256": "0jhhixayka13rb0cd0qbsqpb7awayjdbn8qyx7wya1y83cgyn2ly", 77 - "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.6.6-hardened1/linux-hardened-6.6.6-hardened1.patch" 75 + "name": "linux-hardened-6.6.7-hardened1.patch", 76 + "sha256": "16yk9wz19wn0fkxdwl05qw1hwnfvidh3nmj0pnf61hgwif4kg7l3", 77 + "url": "https://github.com/anthraxx/linux-hardened/releases/download/6.6.7-hardened1/linux-hardened-6.6.7-hardened1.patch" 78 78 }, 79 - "sha256": "1j14n8b012pv3r7i9p762jyabzn2nv1ranxyw5lk3c9lg68hmxzb", 80 - "version": "6.6.6" 79 + "sha256": "0hfqdyxl4nqmm4pspfm1ang8616dbsaj0d968c0186ch0738xrhc", 80 + "version": "6.6.7" 81 81 } 82 82 }
+14 -14
pkgs/os-specific/linux/kernel/kernels-org.json
··· 8 8 "hash": "sha256:1dfbbydmayfj9npx3z0g38p574pmcx3qgs49dv0npigl48wd9yvq" 9 9 }, 10 10 "6.1": { 11 - "version": "6.1.67", 12 - "hash": "sha256:11cjqll3b7iq3mblwyzjrd5ph8avgk23f4mw4shm8j6ai5rdndvm" 11 + "version": "6.1.68", 12 + "hash": "sha256:1qc4cwqlfni9i6mzh6arghdsd842hp9lb7s832dxw1p261mg4prn" 13 13 }, 14 14 "5.15": { 15 - "version": "5.15.142", 16 - "hash": "sha256:0xjn16b02f8d6c0m8vrbmk85kdyfy8m46s80rnkb0nnwfx9cjxld" 15 + "version": "5.15.143", 16 + "hash": "sha256:00lyv7zsj97mkg9i7dkb1a6km22mnr0qr687d9zz4ckjq1pb2sq9" 17 17 }, 18 18 "5.10": { 19 - "version": "5.10.203", 20 - "hash": "sha256:0xr8p7kfr1v3s41fv55ph0l8d9s2p146dl2fh3r2y09lrvwwxssn" 19 + "version": "5.10.204", 20 + "hash": "sha256:1vnamiyr378q52xgkg7kvpx80zck729dim77vp06a3q6n580g5gz" 21 21 }, 22 22 "5.4": { 23 - "version": "5.4.263", 24 - "hash": "sha256:1y1mfwjsilrx8x8jnjlyh8r9zlygjjqdf7pay92jv2qijjddpl2h" 23 + "version": "5.4.264", 24 + "hash": "sha256:1c5n47dq9khb15hz24a000k3hj913vv1dda6famnm8wpjbfr176k" 25 25 }, 26 26 "4.19": { 27 - "version": "4.19.301", 28 - "hash": "sha256:1fr05fl8fyyjgsqj8fppd5v378d7sazvpqlq4sl875851fd9nmb2" 27 + "version": "4.19.302", 28 + "hash": "sha256:1kkkpm34p5rq0iijzrzwaq0cb62w543argargw5p1wzg8803rlsk" 29 29 }, 30 30 "4.14": { 31 - "version": "4.14.332", 32 - "hash": "sha256:1f4q0acbp917myjmgiy4haxp78yak5h1rj5g937r6mkykwb6nb14" 31 + "version": "4.14.333", 32 + "hash": "sha256:0j5nrankrhi56qzmyjg1pznqx1zgk5f7cfa154smjbn3zlm7lcv6" 33 33 }, 34 34 "6.6": { 35 - "version": "6.6.6", 36 - "hash": "sha256:1j14n8b012pv3r7i9p762jyabzn2nv1ranxyw5lk3c9lg68hmxzb" 35 + "version": "6.6.7", 36 + "hash": "sha256:0hfqdyxl4nqmm4pspfm1ang8616dbsaj0d968c0186ch0738xrhc" 37 37 } 38 38 }
+2 -2
pkgs/servers/home-assistant/stubs.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "homeassistant-stubs"; 11 - version = "2023.12.1"; 11 + version = "2023.12.2"; 12 12 format = "pyproject"; 13 13 14 14 disabled = python.version != home-assistant.python.version; ··· 17 17 owner = "KapJI"; 18 18 repo = "homeassistant-stubs"; 19 19 rev = "refs/tags/${version}"; 20 - hash = "sha256-RvMEQT/fmUI125rBGNKfngfQTJc/jWiK5t0zxsofbQU="; 20 + hash = "sha256-O5qVC/ffI+bS+cS3i+qmJFYCazDaZwmrnFwUj/jKC20="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+8 -3
pkgs/servers/slimserver/default.nix
··· 16 16 17 17 let 18 18 perlPackages = perl538Packages; 19 + 20 + binPath = lib.makeBinPath ([ lame flac faad2 sox wavpack ] ++ (lib.optional stdenv.isLinux monkeysAudio)); 21 + libPath = lib.makeLibraryPath [ zlib stdenv.cc.cc.lib ]; 19 22 in 20 23 perlPackages.buildPerlPackage rec { 21 24 pname = "slimserver"; ··· 118 121 rm -r CPAN 119 122 mv CPAN_used CPAN 120 123 124 + # another set of vendored/modified modules exist in lib, more selectively cleaned for now 125 + rm -rf lib/Audio 126 + 121 127 ${lib.optionalString (!enableUnfreeFirmware) '' 122 128 # remove unfree firmware 123 129 rm -rf Firmware ··· 130 136 131 137 installPhase = '' 132 138 cp -r . $out 133 - wrapProgram $out/slimserver.pl \ 134 - --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ zlib stdenv.cc.cc.lib ]}" \ 135 - --prefix PATH : "${lib.makeBinPath ([ lame flac faad2 sox wavpack ] ++ (lib.optional stdenv.isLinux monkeysAudio))}" 139 + wrapProgram $out/slimserver.pl --prefix LD_LIBRARY_PATH : "${libPath}" --prefix PATH : "${binPath}" 140 + wrapProgram $out/scanner.pl --prefix LD_LIBRARY_PATH : "${libPath}" --prefix PATH : "${binPath}" 136 141 mkdir $out/bin 137 142 ln -s $out/slimserver.pl $out/bin/slimserver 138 143 '';
+2 -2
pkgs/tools/filesystems/ceph-csi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ceph-csi"; 5 - version = "3.9.0"; 5 + version = "3.10.0"; 6 6 7 7 nativeBuildInputs = [ go ]; 8 8 buildInputs = [ ceph ]; ··· 11 11 owner = "ceph"; 12 12 repo = "ceph-csi"; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-dKn79EIveepeMzFPweQ3BE3YMCg7mj8EycMbBH8J8PQ="; 14 + sha256 = "sha256-k7eipiBcr/a2V62tEtiQrduk5Cj8KGxbmiVo4x6BVwE="; 15 15 }; 16 16 17 17 preConfigure = ''
+2 -2
pkgs/tools/misc/changelogger/default.nix
··· 6 6 7 7 buildGoModule rec { 8 8 pname = "changelogger"; 9 - version = "0.6.0"; 9 + version = "0.6.1"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "MarkusFreitag"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - sha256 = "sha256-g3d4BEVMQGBEKx+YVPjPrypWQNtEun/pSRgAsJY/RT4="; 15 + sha256 = "sha256-XDiO8r1HpdsfBKzFLnsWdxte2EqL1blPH21137fNm5M="; 16 16 }; 17 17 18 18 vendorHash = "sha256-E6J+0tZriskBnXdhQOQA240c3z+laXM5honoREjHPfM=";
+5 -4
pkgs/top-level/perl-packages.nix
··· 1294 1294 1295 1295 AudioScan = buildPerlPackage { 1296 1296 pname = "Audio-Scan"; 1297 - version = "1.01"; 1297 + version = "1.05"; 1298 1298 src = fetchurl { 1299 - url = "mirror://cpan/authors/id/A/AG/AGRUNDMA/Audio-Scan-1.01.tar.gz"; 1300 - hash = "sha256-gxJyAnHHrdxLvuwzEs3divS5kKxjYgSllsB5M61sY0o="; 1299 + url = "https://github.com/Logitech/slimserver-vendor/raw/public/8.3/CPAN/Audio-Scan-1.05.tar.gz"; 1300 + hash = "sha256-9YXC8GHPRWKlV8emmTke7RB0HhiCbALmZQqtQFLcBi4="; 1301 1301 }; 1302 1302 buildInputs = [ pkgs.zlib TestWarn ]; 1303 1303 env.NIX_CFLAGS_COMPILE = "-I${pkgs.zlib.dev}/include"; 1304 1304 NIX_CFLAGS_LINK = "-L${pkgs.zlib.out}/lib -lz"; 1305 1305 meta = { 1306 - description = "Fast C metadata and tag reader for all common audio file formats"; 1306 + description = "Fast C metadata and tag reader for all common audio file formats, slimserver fork"; 1307 + homepage = "https://github.com/Logitech/slimserver-vendor"; 1307 1308 license = with lib.licenses; [ gpl2Plus ]; 1308 1309 }; 1309 1310 };