Commit Graph
744688 Commits
Author SHA1 Message Date
R. Ryantm 3ff56bf6c6 shairport-sync: 4.3.5 -> 4.3.6 2025-01-28 00:57:52 +00:00
Adam C. StephensandGitHub fa9a43a8d9 golden-cheetah: update to qt6, add darwin (#376565) 2025-01-27 12:50:52 -05:00
Piotr KwiecinskiandGitHub 77efc48642 php.packages.box: switch to buildComposerProject2, tag and add versionCheckHook (#377342)
* php.packages.box: switch to buildComposerProject2

* php.packages.box: switch to tag

* php.packages.box: add versionCheckHook
2025-01-27 18:21:29 +01:00
Philip TaronandGitHub d9b725d0b7 nixos/*: tag manpage references (#377184) 2025-01-27 09:09:38 -08:00
Philip TaronandGitHub 3b321135eb Use ISO from Archive.org for ut1999 instead of buying GOG release (#366387) 2025-01-27 09:08:23 -08:00
5b77402e3b factoriolab: 3.9.2 -> 3.10.0 (#377143)
Co-authored-by: PatrickDaG <PatrickDaG@users.noreply.github.com>
2025-01-27 17:00:57 +00:00
Gaétan LepageandGitHub 46798ffc59 python312Packages.jaxopt: disable flaky test (#377317) 2025-01-27 17:51:15 +01:00
Gaétan LepageandGitHub 278e02e437 python312Packages.databricks-sdk: 0.40.0 -> 0.41.0 (#377285) 2025-01-27 17:47:04 +01:00
K900andGitHub a24cf00be4 linux: expose make flags for modules in linuxKernel.packages.linux_X_Y (#377327) 2025-01-27 19:36:35 +03:00
Fabian AffolterandGitHub 303118e0c3 checkov: 3.2.355 -> 3.2.357 (#376936) 2025-01-27 17:35:35 +01:00
Martin WeineltandGitHub 75ad98ac5f home-assistant-custom-lovelace-modules.hourly-weather: 6.6.0 -> 6.6.1 (#377278) 2025-01-27 17:31:52 +01:00
c0c8643bc3 narsil: bbc8fc5efd779ec885045f9b8d903d0df1bec1b2 -> f5ec6bd6b8013f2a2b74fc45b6f4c53744590ec5 (#377336)
Co-authored-by: x123 <x123@users.noreply.github.com>
2025-01-27 16:22:03 +00:00
aszlig 3bad4054ad Merge pull request #376195 (netrw build fix)
This fixes a build error with GCC 14.

The ofborg checks for Darwin are still pending since 4 days, but given
that it's a fix for an already broken build, the worst case that could
happen is that it's still broken. This is why I decided to merge this.
2025-01-27 17:17:59 +01:00
Gaétan LepageandGitHub 34a9dfb71e regolith: init at 1.5.1 (#374961) 2025-01-27 17:08:13 +01:00
Leona MaroniandGitHub edbc1dbfb9 victoriametrics: 1.109.0 -> 1.110.0 (#377330) 2025-01-27 17:05:51 +01:00
8bd6a166a1 plasma-panel-colorizer: 1.2.0 -> 2.1.0 (#377245)
Co-authored-by: HeitorAugustoLN <IAm.HeitorALN@proton.me>
2025-01-27 15:52:04 +00:00
R. Ryantm a0762f435f narsil: bbc8fc5efd779ec885045f9b8d903d0df1bec1b2 -> f5ec6bd6b8013f2a2b74fc45b6f4c53744590ec5 2025-01-27 15:42:18 +00:00
Piotr KwiecinskiandGitHub 5b1b7838b6 phpmd: switch to buildComposerProject2, tag and versionCheckHook (#377325)
* phpmd: switch to buildComposerProject2

* phpmd: switch to tag

* phpmd: add versionCheckHook
2025-01-27 16:37:41 +01:00
SandroandGitHub a3744adcf5 filebeat8: pin updateScript to major v8 (#377256) 2025-01-27 16:36:06 +01:00
SandroandGitHub ed0a2a8aab wownero: pin boost 1.86 (#377314) 2025-01-27 16:33:35 +01:00
Gaetan Lepage d874878568 python312Packages.jaxopt: disable flaky test 2025-01-27 16:27:32 +01:00
transcaffeine 7b5ed4120d victoriametrics: 1.109.0 -> 1.110.0 2025-01-27 16:16:03 +01:00
Maximilian Bosch 5645cd22d4 linux: expose make flags for modules in linuxKernel.packages.linux_X_Y
Closes #376820

The issue with providing `moduleMakeFlags` via `passthru` of the kernel
package is that when this package gets overriden[1], the `moduleMakeFlags`
list still references the kernel without the overrides.

This broke e.g. kernel modules of linux-rpi4 which can be reproduced
with

    nix-build --argstr system aarch64-linux -A linuxKernel.packages.linux_rpi4.zfs_2_3

This used to break with

    Error: modDirVersion 6.6.51 specified in the Nix expression is wrong, it should be: 6.6.51-v8

since KBUILD_OUTPUT referenced the kernel without the changes from
`overrideDerivation` that also changes the `modDirVersion`.

The new approach is to add the build flags right into
`linuxKernel.packages.linux_X_Y`: that way we don't need any hacks to
update `moduleMakeFlags` when the derivation with the passthru gets
overridden.

By using the fixpoint of the package-set, the `kernelModuleMakeFlags`
list is correctly updated. E.g. given

    with import ./. {};

    linuxKernel.packages.linux_6_6.extend (self: super: {
      kernel = super.kernel.overrideAttrs (_: {
        name = "linux-snens";
      });
    })

the `makeFlags` is correctly updated:

    $ nix-instantiate snenskek.nix -A zfs_2_3.makeFlags --eval --strict
    [ "ARCH=x86_64" "CROSS_COMPILE=" "KBUILD_OUTPUT=/nix/store/gsp68549k1aqbwxwczpgw67w5jjn4shw-linux-snens-dev/lib/modules/6.6.74/build" ]

[1] E.g. `linux-rpi4`.
2025-01-27 16:09:50 +01:00
SandroandGitHub e57ede447b python311Packages.jax: fix build on Darwin (#376874) 2025-01-27 16:05:49 +01:00
Arne KellerandGitHub 2c62218ab7 python312Packages.altair: 5.4.1 -> 5.5.0, disable flaky tests (#371464) 2025-01-27 15:58:41 +01:00
Austin HorstmanandGitHub 5861228f6e vimPlugins.blink-copilot: init at 2025-01-27 (#377313) 2025-01-27 08:45:55 -06:00
SandroandGitHub 8601973cec ArchiSteamFarm: 6.1.0.3 -> 6.1.1.3 (#377233) 2025-01-27 15:24:38 +01:00
Weijia WangandGitHub 85ef4e8abe photoqt: 4.7 -> 4.8 (#376703) 2025-01-27 15:14:30 +01:00
"Gaetan Lepage" 4e279b9ded vimPlugins.blink-copilot: init at 2025-01-27 2025-01-27 14:38:02 +01:00
Philip TaronandGitHub 230e24f275 nixVersions.nix_2_25: 2.25.4 -> 2.25.5 (#375825) 2025-01-27 05:36:36 -08:00
linsui d9bde042b1 wownero: pin boost 1.86 2025-01-27 21:34:18 +08:00
bc76cc9298 davinci-resolve-studio: 19.1.2 -> 19.1.3 (#376964)
Co-authored-by: amarshall <amarshall@users.noreply.github.com>
2025-01-27 13:30:36 +00:00
Philip TaronandGitHub e43d648ac1 fetchurl: improve error handling flags to curl to retry harder (#358042) 2025-01-27 05:23:23 -08:00
Pascal WittmannandGitHub b04bc354ce checkstyle: 10.21.1 -> 10.21.2 (#377183) 2025-01-27 14:19:14 +01:00
SandroandGitHub 6133097ea8 rastertoezpl: init at 1.1.12 (#376411) 2025-01-27 14:07:48 +01:00
Gaétan LepageandGitHub 36818f7c5f python312Packages.pyedflib: 0.1.38 -> 0.1.39 (#377290) 2025-01-27 14:06:08 +01:00
Silvan MosbergerandGitHub 7cceab521e pds: init at 0.4.74, nixos/pds: init (#350645) 2025-01-27 13:54:09 +01:00
Christoph Honal d65ff67488 rastertoezpl: init at 1.1.12 2025-01-27 13:29:47 +01:00
R. Ryantm da43c1e3f1 python312Packages.pyedflib: 0.1.38 -> 0.1.39 2025-01-27 12:08:02 +00:00
966a592cde snipaste: 2.10.3 -> 2.10.5 (#377236)
Co-authored-by: L-Trump <L-Trump@users.noreply.github.com>
2025-01-27 12:03:44 +00:00
Alexander SiegandGitHub e2380bdfe2 gitlab: 17.7.1 -> 17.8.0 (#375660) 2025-01-27 12:46:06 +01:00
Bobby RongandGitHub e28253539b nixosTests.mate-wayland: Check for more text (#377283) 2025-01-27 19:43:21 +08:00
Sefa EyeogluandGitHub e7876af591 lunacy: 10.10 -> 10.11 (#374224) 2025-01-27 12:30:18 +01:00
7c6f434candGitHub 4fca56f703 sysdig: enable aarch64-linux back (#377135) 2025-01-27 11:28:17 +00:00
Peder Bergebakken SundtandGitHub 73f3d75c05 xe: modernize, adopt (#375560) 2025-01-27 12:22:21 +01:00
Sefa EyeogluandGitHub 553dfdebbf portfolio: 0.73.0 -> 0.74.0 (#377264) 2025-01-27 12:16:55 +01:00
Bobby Rong 7db3b7c28b nixosTests.mate-wayland: Check for more text
* As long as the dialog shows everything is fine, make the test less flaky.
* Also use `pgrep` instead of `pgrep -f` when possible.
2025-01-27 19:16:34 +08:00
R. Ryantm 58efc57ceb python312Packages.databricks-sdk: 0.40.0 -> 0.41.0 2025-01-27 11:10:40 +00:00
Alyssa Ross d42f4d5f45 mdbook-graphviz: update source hash
Tag was force pushed.  Diff looks harmless:

diff --git 1/nix/store/ng7d6w5n1vm09wrvzffv5fb68zvc2vrx-source/Cargo.toml 2/nix/store/alwq97v5w3j7g0prxdj8s0agmic4crly-source/Cargo.toml
index 953121e..b1b81ef 100644
--- 1/nix/store/ng7d6w5n1vm09wrvzffv5fb68zvc2vrx-source/Cargo.toml
+++ 2/nix/store/alwq97v5w3j7g0prxdj8s0agmic4crly-source/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "mdbook-graphviz"
-version = "0.2.0"
+version = "0.2.1"
 authors = ["Dylan Owen <dyltotheo@gmail.com>"]
 description = "mdbook preprocessor to add graphviz support"
 readme = "Readme.md"
2025-01-27 12:09:35 +01:00
Piotr KwiecinskiandGitHub 9aa6e4e059 n98-magerun: switch to buildComposerProject2 and tag (#377265) 2025-01-27 11:55:16 +01:00