summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* tbb_2021_11: fix build on musl•••the previous substitution resulted in an invalid CMakeLists.txt Change-Id: I9ad37811c76239fa1d0238c71727cda9936939f4 Signed-off-by: Yureka <yureka@cyberchaos.dev> origin/tbb-muslYureka2024-11-251-1/+1
* ocamlPackages.eio: 1.1 → 1.2โทสตัล2024-11-251-3/+3
* openutau: bump dotnet version 7 -> 8 (#340611)Emily2024-11-251-10/+5
|\
| * openutau: bump dotnet version 7 -> 8r3n3gad3p3arl2024-09-081-10/+5
* | home-assistant-custom-components.solax_modbus: 2024.11.1 -> 2024.11.2 (#358971)Martin Weinelt2024-11-251-2/+2
|\ \
| * | home-assistant-custom-components.solax_modbus: 2024.11.1 -> 2024.11.2•••https://github.com/wills106/homeassistant-solax-modbus/releases/tag/2024.11.2 Luflosi2024-11-251-2/+2
* | | ghidra: add wasm extension (#349645)Philip Taron2024-11-252-0/+44
|\ \ \
| * | | ghidra: add wasm extensionBonus2024-11-192-0/+44
* | | | llvmPackages: Make targetLlvmLibraries overridable (#355001)Tristan Ross2024-11-251-1/+3
|\ \ \ \
| * | | | llvmPackages: Make targetLlvmLibraries overridable•••Pull #320261 introduced the possibility to consistently override dependencies within an llvm package set. This is useful for development and testing exotic configurations. Go one step further and enable overriding targetLlvmLibraries. This makes it possible to write an overlay such as: ```nix overlays = [ (self: super: { llvmPackages = super.llvmPackages.override (prev: { targetLlvmLibraries = super.targetPackages.llvmPackages.libraries // { compiler-rt = super.targetPackages.llvmPackages.libraries.compiler-rt.override { ... } }; }); }) ]; ``` ... where the overridden compiler-rt will be used in a pkgsLLVM build. As a straw man, I've done the minimally invasive thing to the code structure: `targetLlvmLibraries` is not an explicitly named parameter for llvmPackages; but it is available in `packageSetArgs` if passed. This makes it slightly less discoverable, but this seems like a reasonable tradeoff considered that modifying this would be a fairly advanced/esoteric thing to need to do. In some ways it would be better to have as an explicit parameter with a default, but the obvious thing won't work because the default needs to be a non-trivial expression. Potentially we could instead have it as a defaulted parameter with the value of 'null', and if it's null, then compute the current thing. Signed-off-by: Peter Waller <p@pwaller.net> Peter Waller2024-11-101-1/+3
* | | | | llvmPackages.compiler_rt: Fix version tests for git (#354471)Tristan Ross2024-11-251-2/+2
|\ \ \ \ \
| * | | | | llvmPackages.compiler_rt: Fix compiler_rt version tests for git•••Without these fixes, the git build currently fails because the tests are out of date. One is updated since it was fixed upstream, the other is still needed for the git build, but testing `version` resulted in a test against the `unstable-*` string and not the one with the version number in it. Signed-off-by: Peter Waller <p@pwaller.net> Peter Waller2024-11-081-2/+2
| |/ / / /
* | | | | dotnet-{sdk,runtime,aspnetcore}_{6,7}: mark as EOL (#358533)Emily2024-11-252-5/+14
|\ \ \ \ \
| * | | | | dotnet-{sdk,runtime,aspnetcore}_{6,7}: mark as EOL•••See <https://dotnet.microsoft.com/en-us/platform/support/policy/dotnet-core>. Emily2024-11-232-5/+14
* | | | | | qlog: 0.39.0 -> 0.40.0 (#358767)Maciej Krüger2024-11-251-2/+2
|\ \ \ \ \ \
| * | | | | | qlog: 0.39.0 -> 0.40.0R. Ryantm2024-11-241-2/+2
* | | | | | | factorio: fix `updateScript` definition (#357689)Luke Granger-Brown2024-11-251-9/+1
|\ \ \ \ \ \ \
| * | | | | | | factorio: fix `updateScript` definition•••The update script does not take `username` and `token` parameters anymore, since 44754ac517ceecf2a8b95318c45e28192e813a8b (thanks Luke!) As a side-effect, R. RyanTM should now keep `factorio` up-to-date like the good bot it is. <3 nicoo2024-11-201-9/+1
* | | | | | | | radicale: 3.3.0 -> 3.3.1 (#358813)Kerstin2024-11-252-20/+30
|\ \ \ \ \ \ \ \
| * | | | | | | | python312Packages.radicale-infcloud: modernizeRobert Schütz2024-11-241-3/+6
| * | | | | | | | radicale: format with nixfmt-rfc-styleRobert Schütz2024-11-241-15/+22
| * | | | | | | | radicale: 3.3.0 -> 3.3.1•••Diff: https://github.com/Kozea/Radicale/compare/refs/tags/v3.3.0...v3.3.1 Changelog: https://github.com/Kozea/Radicale/blob/refs/tags/v3.3.1/CHANGELOG.md Robert Schütz2024-11-241-2/+2
* | | | | | | | | gcc: do not allow version skew when cross-building gcc (#352821)Emily2024-11-251-3/+21
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | gcc: do not allow version skew when cross-building gcc•••When `gcc` is cross-built (`build` != `target` && `host` == `target`) `gcc` assumes that it has a compatible cross-compiler in the environment that can build target libraries. Version of a cross-compiler has to match the compiler being cross-built as libraries frequently use fresh compiler features, like `-std=c++26` or target-specific types like `_Bfloat16`. Version mismatch causes build failures like: https://github.com/NixOS/nixpkgs/issues/351905 Similar problems (but on a smaller scale) happen when a `gcc` cross-compiler is built (`build` == `host` && `host` != `target`) built by a mismatching version of a native compiler (`build` == `host` && `host` == `target`). That was worked around by forcing `gcc9Stdenv` for older compiler versions. Let's fix both problems by requiring the same compiler version for cross-case. Closes: https://github.com/NixOS/nixpkgs/issues/351905 Sergei Trofimovich2024-11-251-3/+21
* | | | | | | | | | Update Haskell-Nix bindings, hercules-ci-agent, cachix nix library version (#...tomberek2024-11-256-1/+425
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | FormatRobert Hensing2024-11-193-69/+350
| * | | | | | | | | | hercules-ci-cnix-store/nix: 2.18 -> 2.24Robert Hensing2024-11-191-1/+1
| * | | | | | | | | | haskellPackages.hercules-ci-agent: 0.10.4 -> 0.10.5Robert Hensing2024-11-191-0/+66
| * | | | | | | | | | haskellPackages.hercules-ci-cnix-expr: 0.3.6.4 -> 0.3.6.5Robert Hensing2024-11-191-0/+29
| * | | | | | | | | | haskellPackages.hercules-ci-cnix-store: 0.3.6.0 -> 0.3.6.1Robert Hensing2024-11-191-0/+26
| * | | | | | | | | | haskell-modules: Add replacements-by-name•••(cherry picked from commit 3ff89d8f12b0f2b3ef4cfb9873df6c76a1d9c761) Robert Hensing2024-11-192-0/+22
* | | | | | | | | | | python312Packages.netbox-reorder-rack: 1.1.2 -> 1.1.3 (#358274)Nick Cao2024-11-251-6/+6
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | python312Packages.netbox-reorder-rack: 1.1.2 -> 1.1.3R. Ryantm2024-11-231-6/+6
| | |_|_|_|_|/ / / / / | |/| | | | | | | | |
* | | | | | | | | | | Merge: epson-escpr2: 1.2.20 -> 1.2.21 (#358755)Maximilian Bosch2024-11-251-3/+3
|\ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | epson-escpr2: 1.2.20 -> 1.2.21Shawn89012024-11-241-3/+3
* | | | | | | | | | | | python312Packages.pyftdi: 0.55.4 -> 0.56.0 (#358637)Nick Cao2024-11-251-3/+4
|\ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | python312Packages.pyftdi: update disabled•••- add changelog to metaFabian Affolter2024-11-251-1/+2
| * | | | | | | | | | | | python312Packages.pyftdi: 0.55.4 -> 0.56.0R. Ryantm2024-11-241-2/+2
* | | | | | | | | | | | | azure-static-sites-client: 19449a00c0269fefc8f29a6d01801c4b19308181 -> 53b7d0...Nick Cao2024-11-251-24/+25
|\ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | azure-static-sites-client: 19449a00c0269fefc8f29a6d01801c4b19308181 -> 53b7d0...R. Ryantm2024-11-221-24/+25
* | | | | | | | | | | | | | python3Packages.stable-baselines3: init at 2.3.2 (#355954)Sandro2024-11-252-0/+90
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | python3Packages.stable-baselines3: init at 2.3.2Dennis2024-11-212-0/+90
* | | | | | | | | | | | | | | vivaldi: 7.0.3495.6 -> 7.0.3495.18 (#358331)Nick Cao2024-11-251-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | vivaldi: 7.0.3495.6 -> 7.0.3495.18R. Ryantm2024-11-231-3/+3
* | | | | | | | | | | | | | | | Revert "singularity-tools: don't preserve store content ownership" (#358817)Someone2024-11-251-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Revert "singularity-tools: don't preserve store content ownership"•••Use `cp -ar` instead of `cp -r` to preserve symbolic links and other attributes whenever possible. This reverts commit c2eb0aa56e90cffbdcb82a54f3a9b1419e19c88b. Yueh-Shun Li2024-11-251-1/+1
* | | | | | | | | | | | | | | | | sysdig-cli-scanner: do not use `--dbpath` arg when `--iac` is set (#337736)Sandro2024-11-251-8/+20
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | sysdig-cli-scanner: do not use --dbpath arg when --iac is setFede Barcelona2024-10-071-8/+20
* | | | | | | | | | | | | | | | | | glaze: 4.0.0 -> 4.0.1 (#358464)Nick Cao2024-11-251-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | | glaze: 4.0.0 -> 4.0.1R. Ryantm2024-11-231-2/+2