-
-
Notifications
You must be signed in to change notification settings - Fork 105
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs-channels
base: 3a009bd5daf9
head repository: NixOS/nixpkgs-channels
compare: 85055b3ab7b8
Commits on Mar 8, 2020
-
glibc: provide fallback for kernels with missing prlimit64
The current version of glibc implements support for kernels down to 3.2.0 (and we make sure to enable such support with apporopriate --enable-kernel setting). The current RHEL6 operating system is based on a maintained kernel based on 2.6.32 with lots of backports. We provide basic support for this specific kernel by patching glibc to provide an exception for this specific version of kernel. This allows for nixpkgs software distribution to work on RHEL6 and it does so quite well with almost no problems. There are, however, a few syscalls that are missing in the 2.6.32 kernel, one of which is prlimit64. This commit provides a fallback that uses an older {get,set}rlimit syscalls in cases when prlimit64 is not available. This should streamline the experience for nixpkgs users wanting to run it on RHEL6, namely, this fixes one of the tests in findutils. See also discussion in guix: https://lists.gnu.org/archive/html/guix-devel/2018-03/msg00356.html (cherry picked from commit 6740593)
Configuration menu - View commit details
-
Copy full SHA for 9cc2f18 - Browse repository at this point
Copy the full SHA 9cc2f18View commit details
Commits on Mar 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f5c2ed4 - Browse repository at this point
Copy the full SHA f5c2ed4View commit details
Commits on Mar 16, 2020
-
libxml2: add patch for CVE-2019-20388
(cherry picked from commit 291c735) /cc roundup #79725
Configuration menu - View commit details
-
Copy full SHA for feb386f - Browse repository at this point
Copy the full SHA feb386fView commit details
Commits on Mar 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d9bb3a3 - Browse repository at this point
Copy the full SHA d9bb3a3View commit details
Commits on Mar 22, 2020
-
Merge pull request #82065 from veprbl/pr/glibc_prlimit64_20.03
[20.03] glibc: provide fallback for kernels with missing prlimit64
Configuration menu - View commit details
-
Copy full SHA for 1332522 - Browse repository at this point
Copy the full SHA 1332522View commit details
Commits on Mar 25, 2020
-
protonvpn-cli-ng: 2.2.0 -> 2.2.2
Some changes were made after final review of the package. There was a missing runtime dependency that was discovered after merge of the backport (cherry picked from commit 9fe4a63) Reason: The dependency can make the package work or not
Configuration menu - View commit details
-
Copy full SHA for b02da56 - Browse repository at this point
Copy the full SHA b02da56View commit details
Commits on Mar 26, 2020
-
Revert "nixos-container: use systemd-run instead of nsenter"
This reverts commit 7cb100b. This appears to break at least the `container`-backend of `nixops`: when running `switch-to-configuration` within `nixos-container run`, the running `systemd`-instance gets reloaded which appears to kill the `systemd-run` command and causes `nixos-container run` to hang. The full issue is reported in the original PR[1]. [1] NixOS/nixpkgs#67332 (comment)
Configuration menu - View commit details
-
Copy full SHA for 7f1ba60 - Browse repository at this point
Copy the full SHA 7f1ba60View commit details -
Merge pull request #83330 from JeffLabonte/20.03_update_protonvpn_ng_…
…2.2.0-with_fix [20.03] protonvpn-cli-ng: 2.2.0 -> 2.2.2
Configuration menu - View commit details
-
Copy full SHA for 34e93f4 - Browse repository at this point
Copy the full SHA 34e93f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 84f1b23 - Browse repository at this point
Copy the full SHA 84f1b23View commit details -
coqPackages.mathcomp_1_10: init at 1.10.0
(cherry picked from commit 229dc01)
Configuration menu - View commit details
-
Copy full SHA for d947d28 - Browse repository at this point
Copy the full SHA d947d28View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a82119 - Browse repository at this point
Copy the full SHA 4a82119View commit details -
wasm-bindgen-cli: 0.2.59 -> 0.2.60
https://github.com/rustwasm/wasm-bindgen/releases/tag/0.2.60 (cherry picked from commit c339294)
Configuration menu - View commit details
-
Copy full SHA for b249ffa - Browse repository at this point
Copy the full SHA b249ffaView commit details -
nixos/nextcloud: implement a safe upgrade-path between 19.09 and 20.03
It's impossible to move two major-versions forward when upgrading Nextcloud. This is an issue when comming from 19.09 (using Nextcloud 16) and trying to upgrade to 20.03 (using Nextcloud 18 by default). This patch implements the measurements discussed in #82056 and #82353 to improve the update process and to circumvent similar issues in the future: * `pkgs.nextcloud` has been removed in favor of versioned attributes (currently `pkgs.nextcloud17` and `pkgs.nextcloud18`). With that approach we can safely backport major-releases in the future to simplify those upgrade-paths and we can select one of the major-releases as default depending on the configuration (helpful to decide whether e.g. `pkgs.nextcloud17` or `pkgs.nextcloud18` should be used on 20.03 and `master` atm). * If `system.stateVersion` is older than `20.03`, `nextcloud17` will be used (which is one major-release behind v16 from 19.09). When using a package older than the latest major-release available (currently v18), the evaluation will cause a warning which describes the issue and suggests next steps. To make those package-selections easier, a new option to define the package to be used for the service (namely `services.nextcloud.package`) was introduced. * If `pkgs.nextcloud` exists (e.g. due to an overlay which was used to provide more recent Nextcloud versions on older NixOS-releases), an evaluation error will be thrown by default: this is to make sure that `services.nextcloud.package` doesn't use an older version by accident after checking the state-version. If `pkgs.nextcloud` is added manually, it needs to be declared explicitly in `services.nextcloud.package`. * The `nixos/nextcloud`-documentation contains a "Maintainer information"-chapter which describes how to roll out new Nextcloud releases and how to deal with old (and probably unsafe) versions. Closes #82056 (cherry picked from commit 702f645)
Configuration menu - View commit details
-
Copy full SHA for d148bb0 - Browse repository at this point
Copy the full SHA d148bb0View commit details -
wire-desktop: Fix StartupWMClass
With quotes it doesn't match the Wire's screen, causing the window to not be grouped under its icon in Gnome. (cherry picked from commit da587da)
Configuration menu - View commit details
-
Copy full SHA for 01c61f3 - Browse repository at this point
Copy the full SHA 01c61f3View commit details -
Merge pull request #83392 from Ma27/nixos-container-nsenter-20.03
Revert "nixos-container: use systemd-run instead of nsenter"
Configuration menu - View commit details
-
Copy full SHA for a3a02d6 - Browse repository at this point
Copy the full SHA a3a02d6View commit details -
mysql-workbench: format with nixpkgs-fmt
(cherry picked from commit eacf018)
Configuration menu - View commit details
-
Copy full SHA for 4c12254 - Browse repository at this point
Copy the full SHA 4c12254View commit details -
libmysqlconnectorcpp: 1.1.9 → 8.0.19
This has been seriously outdated: * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-1-1-10.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-1-1-11.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-1-1-12.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-1-1-13.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-2-0-1.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-2-0-2.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-2-0-3.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-2-0-4.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-5.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-6.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-7.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-8-through-10.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-11.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-12.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-13.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-14.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-15.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-16.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-17.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-18.html * https://dev.mysql.com/doc/relnotes/connector-cpp/en/news-8-0-19.html Expression changes: * Format with nixpkgs-fmt. * Move cmake to nativeBuildInputs. * Use OpenSSL from the system as using the bundled version is now optional. * Use MysQL 8.0 since this is supposed to be used with that version. * Explicitly enable the now legacy JDBC library used by mysql-workbench. * Remove unnecessary MYSQL_LIB_DIR flag. MySQL will be found automatically. * We just need the build script know it is not a static library. (cherry picked from commit 23d6991)
Configuration menu - View commit details
-
Copy full SHA for f5e8ef6 - Browse repository at this point
Copy the full SHA f5e8ef6View commit details -
mysql-workbench: 8.0.15 → 8.0.19
* https://dev.mysql.com/doc/relnotes/workbench/en/news-8-0-16.html * https://dev.mysql.com/doc/relnotes/workbench/en/news-8-0-17.html * https://dev.mysql.com/doc/relnotes/workbench/en/news-8-0-18.html * https://dev.mysql.com/doc/relnotes/workbench/en/news-8-0-19.html The release notes contain the following: Important Note: MySQL Workbench 8.0.19 is unable to open a new connection to MySQL Server from the home screen if the server is not started and you cannot start a server by using the Workbench Administration feature. Administrative and SQL editing tasks require an online server for the duration of this issue. Feature tasks that you performed with an offline server in previous releases now return an error message indicating that the server is unreachable. but it is clearly better than having it broken. (cherry picked from commit 070b49e)
Configuration menu - View commit details
-
Copy full SHA for f6ab55b - Browse repository at this point
Copy the full SHA f6ab55bView commit details -
ghc: 8.10.0.20200123 -> 8.10.1
(cherry picked from commit 59c58f3) Signed-off-by: Domen Kožar <domen@dev.si>
Configuration menu - View commit details
-
Copy full SHA for 41875cf - Browse repository at this point
Copy the full SHA 41875cfView commit details -
networkmanager: 1.22.8 -> 1.22.10
(cherry picked from commit 4feb4cf)
Configuration menu - View commit details
-
Copy full SHA for 8d0010b - Browse repository at this point
Copy the full SHA 8d0010bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c10c44a - Browse repository at this point
Copy the full SHA c10c44aView commit details -
mautrix-whatsapp: 2020-02-09 -> 2020-03-26
(cherry picked from commit 5bfc1d5)
Configuration menu - View commit details
-
Copy full SHA for c2db74f - Browse repository at this point
Copy the full SHA c2db74fView commit details
Commits on Mar 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 68c3a4f - Browse repository at this point
Copy the full SHA 68c3a4fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ea57fc5 - Browse repository at this point
Copy the full SHA ea57fc5View commit details -
Merge pull request #82515 from Xe/fix-b3sum
tools/security/b3sum: fix cargo hash
Configuration menu - View commit details
-
Copy full SHA for 834ad82 - Browse repository at this point
Copy the full SHA 834ad82View commit details -
Configuration menu - View commit details
-
Copy full SHA for fdbefdc - Browse repository at this point
Copy the full SHA fdbefdcView commit details -
(cherry picked from commit c694fcf) cc #81127
Configuration menu - View commit details
-
Copy full SHA for 294445a - Browse repository at this point
Copy the full SHA 294445aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5ffc821 - Browse repository at this point
Copy the full SHA 5ffc821View commit details -
Configuration menu - View commit details
-
Copy full SHA for 85055b3 - Browse repository at this point
Copy the full SHA 85055b3View commit details
There are no files selected for viewing