-
-
Notifications
You must be signed in to change notification settings - Fork 104
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs-channels
base: aa2552c6ced6
head repository: NixOS/nixpkgs-channels
compare: 42d03aabbd34
Commits on Mar 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f028498 - Browse repository at this point
Copy the full SHA f028498View commit details
Commits on Mar 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for b260826 - Browse repository at this point
Copy the full SHA b260826View commit details -
go: propagate target build dependencies correctly
When using strict deps we have to use depsTargetTargetPropagated as go is added as a nativeBuildInputs to our build.
Configuration menu - View commit details
-
Copy full SHA for 0bba747 - Browse repository at this point
Copy the full SHA 0bba747View commit details -
Revert "Merge pull request #83099 from marsam/fix-buildGoModule-packa…
Configuration menu - View commit details
-
Copy full SHA for 066db11 - Browse repository at this point
Copy the full SHA 066db11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a774b7 - Browse repository at this point
Copy the full SHA 8a774b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 870a6e2 - Browse repository at this point
Copy the full SHA 870a6e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a5c27a - Browse repository at this point
Copy the full SHA 9a5c27aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a491a5 - Browse repository at this point
Copy the full SHA 2a491a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 181ab9e - Browse repository at this point
Copy the full SHA 181ab9eView commit details -
ion: 1.0.5 -> unstable-2020-03-22
The app is still maintained upstream, but they aren't cutting releases on crates.io anymore: https://crates.io/crates/ion-shell This fixes the build with the latest Rust toolchain by upgrading to the current commit off the project's `master`. ZHF: #80379
Configuration menu - View commit details
-
Copy full SHA for 16cdff0 - Browse repository at this point
Copy the full SHA 16cdff0View commit details -
Configuration menu - View commit details
-
Copy full SHA for f76890f - Browse repository at this point
Copy the full SHA f76890fView commit details -
It is a part of x42-plugins (under the name of x42-fat1).
Configuration menu - View commit details
-
Copy full SHA for 1475300 - Browse repository at this point
Copy the full SHA 1475300View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a43a28 - Browse repository at this point
Copy the full SHA 8a43a28View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0dae508 - Browse repository at this point
Copy the full SHA 0dae508View commit details
Commits on Mar 28, 2020
-
Merge pull request #83542 from bhipple/zhf/ion
ion: 1.0.5 -> unstable-2020-03-22 and fix build
Configuration menu - View commit details
-
Copy full SHA for eddc4f3 - Browse repository at this point
Copy the full SHA eddc4f3View commit details -
pythonPackages.scikit-build: fix python3.8 bug
Python3.8 removes ``platform.linux_distribution()`` call, must use ``pythonPackages.distro`` to get same information. Closes #83305 Upstream PR: https://www.github.com/scikit-build/scikit-build/pull/458 Also formatting.
Configuration menu - View commit details
-
Copy full SHA for c8dd834 - Browse repository at this point
Copy the full SHA c8dd834View commit details -
Merge pull request #83526 from drewrisinger/dr-pr-python-scikit-build-38
pythonPackages.scikit-build: fix test bug on python3.8
Configuration menu - View commit details
-
Copy full SHA for ae6bdcc - Browse repository at this point
Copy the full SHA ae6bdccView commit details -
python3Packages.apache-airflow: no-op cleanups to drv file
Consistently indent with 2 spaces and cleanup the meta by quoting it for NixOS/rfcs#45
Configuration menu - View commit details
-
Copy full SHA for a4a00ca - Browse repository at this point
Copy the full SHA a4a00caView commit details -
Merge pull request #82998 from OPNA2608/update-rpcs3
rpcs3: 0.0.6-8187-790962425 -> 0.0.8-9300-341fdf7eb
Configuration menu - View commit details
-
Copy full SHA for b96cdee - Browse repository at this point
Copy the full SHA b96cdeeView commit details -
nginx: Fix ETag patch to ignore realpath(3) error
While our ETag patch works pretty fine if it comes to serving data off store paths, it unfortunately broke something that might be a bit more common, namely when using regexes to extract path components of location directives for example. Recently, @devhell has reported a bug with a nginx location directive like this: location ~^/\~([a-z0-9_]+)(/.*)?$" { alias /home/$1/public_html$2; } While this might look harmless at first glance, it does however cause issues with our ETag patch. The alias directive gets broken up by nginx like this: *2 http script copy: "/home/" *2 http script capture: "foo" *2 http script copy: "/public_html/" *2 http script capture: "bar.txt" In our patch however, we use realpath(3) to get the canonicalised path from ngx_http_core_loc_conf_s.root, which returns the *configured* value from the root or alias directive. So in the example above, realpath(3) boils down to the following syscalls: lstat("/home", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0 lstat("/home/$1", 0x7ffd08da6f60) = -1 ENOENT (No such file or directory) During my review[1] of the initial patch, I didn't actually notice that what we're doing here is returning NGX_ERROR if the realpath(3) call fails, which in turn causes an HTTP 500 error. Since our patch actually made the canonicalisation (and thus additional syscalls) necessary, we really shouldn't introduce an additional error so let's - at least for now - silently skip return value if realpath(3) has failed. However since we're using the unaltered root from the config we have another issue, consider this root: /nix/store/...-abcde/$1 Calling realpath(3) on this path will fail (except if there's a file called "$1" of course), so even this fix is not enough because it results in the ETag not being set to the store path hash. While this is very ugly and we should fix this very soon, it's not as serious as getting HTTP 500 errors for serving static files. I added a small NixOS VM test, which uses the example above as a regression test. It seems that my memory is failing these days, since apparently I *knew* about this issue since digging for existing issues in nixpkgs, I found this similar pull request which I even reviewed: NixOS/nixpkgs#66532 However, since the comments weren't addressed and the author hasn't responded to the pull request, I decided to keep this very commit and do a follow-up pull request. [1]: NixOS/nixpkgs#48337 Signed-off-by: aszlig <aszlig@nix.build> Reported-by: @devhell Acked-by: @7c6f434c Acked-by: @yorickvP Merges: NixOS/nixpkgs#80671 Fixes: NixOS/nixpkgs#66532
Configuration menu - View commit details
-
Copy full SHA for e1d63ad - Browse repository at this point
Copy the full SHA e1d63adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 49e252a - Browse repository at this point
Copy the full SHA 49e252aView commit details -
Configuration menu - View commit details
-
Copy full SHA for f146d5f - Browse repository at this point
Copy the full SHA f146d5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c85ed2 - Browse repository at this point
Copy the full SHA 3c85ed2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 63749d8 - Browse repository at this point
Copy the full SHA 63749d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for c646a56 - Browse repository at this point
Copy the full SHA c646a56View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d0a977 - Browse repository at this point
Copy the full SHA 0d0a977View commit details -
Configuration menu - View commit details
-
Copy full SHA for 808909d - Browse repository at this point
Copy the full SHA 808909dView commit details -
Configuration menu - View commit details
-
Copy full SHA for af2e41c - Browse repository at this point
Copy the full SHA af2e41cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 698ec44 - Browse repository at this point
Copy the full SHA 698ec44View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c76b8f - Browse repository at this point
Copy the full SHA 2c76b8fView commit details -
Jonathan Ringer committed
Mar 28, 2020 Configuration menu - View commit details
-
Copy full SHA for da41b78 - Browse repository at this point
Copy the full SHA da41b78View commit details -
python38Packages.zetup: fix build
Currently fails to build on python 3.8 due to an overly restrictive version bound. ZHF: #80379 CC @NixOS/nixos-release-managers
Configuration menu - View commit details
-
Copy full SHA for a65e052 - Browse repository at this point
Copy the full SHA a65e052View commit details -
Jonathan Ringer committed
Mar 28, 2020 Configuration menu - View commit details
-
Copy full SHA for d0f556a - Browse repository at this point
Copy the full SHA d0f556aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 716aa1a - Browse repository at this point
Copy the full SHA 716aa1aView commit details -
pythonPackages.effect: fix build by marking py3 only
Upstream only supports python >= 3.6: https://github.com/python-effect/effect/#effect CC @NixOS/nixos-release-managers ZHF: #80379
Configuration menu - View commit details
-
Copy full SHA for 3b7b98c - Browse repository at this point
Copy the full SHA 3b7b98cView commit details -
Merge pull request #83463 from r-ryantm/auto-update/keycloak
keycloak: 9.0.0 -> 9.0.2
Configuration menu - View commit details
-
Copy full SHA for dccfefe - Browse repository at this point
Copy the full SHA dccfefeView commit details -
Merge pull request #83547 from lopsided98/patch-1
proj: use pname instead of name
Configuration menu - View commit details
-
Copy full SHA for 5dbb356 - Browse repository at this point
Copy the full SHA 5dbb356View commit details -
Merge pull request #83539 from r-ryantm/auto-update/python3.7-minidb
python37Packages.minidb: 2.0.2 -> 2.0.3
Configuration menu - View commit details
-
Copy full SHA for 9b31568 - Browse repository at this point
Copy the full SHA 9b31568View commit details -
Merge pull request #83538 from r-ryantm/auto-update/python2.7-fire
python27Packages.fire: 0.2.1 -> 0.3.0
Configuration menu - View commit details
-
Copy full SHA for f856191 - Browse repository at this point
Copy the full SHA f856191View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3cff761 - Browse repository at this point
Copy the full SHA 3cff761View commit details -
Configuration menu - View commit details
-
Copy full SHA for d80adaa - Browse repository at this point
Copy the full SHA d80adaaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6cf0bc1 - Browse repository at this point
Copy the full SHA 6cf0bc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9cc44b7 - Browse repository at this point
Copy the full SHA 9cc44b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f8bf63 - Browse repository at this point
Copy the full SHA 5f8bf63View commit details -
Configuration menu - View commit details
-
Copy full SHA for d5e41b6 - Browse repository at this point
Copy the full SHA d5e41b6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0df2d9f - Browse repository at this point
Copy the full SHA 0df2d9fView commit details -
Merge pull request #83573 from bhipple/f/effect
pythonPackages.effect: fix build by marking py3 only
Configuration menu - View commit details
-
Copy full SHA for 702b89f - Browse repository at this point
Copy the full SHA 702b89fView commit details -
Merge pull request #83555 from bhipple/clean/airflow
python3Packages.apache-airflow: no-op cleanups to drv file
Configuration menu - View commit details
-
Copy full SHA for 55c5aa5 - Browse repository at this point
Copy the full SHA 55c5aa5View commit details -
Merge pull request #83568 from bhipple/rm/torch
treewide: remove torch and related packages
Configuration menu - View commit details
-
Copy full SHA for 2b1f4f3 - Browse repository at this point
Copy the full SHA 2b1f4f3View commit details -
Merge pull request #83570 from bhipple/fix/zetup
python38Packages.zetup: fix build
Configuration menu - View commit details
-
Copy full SHA for 1495eb3 - Browse repository at this point
Copy the full SHA 1495eb3View commit details
There are no files selected for viewing