-
-
Notifications
You must be signed in to change notification settings - Fork 104
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs-channels
base: 1fe82110febd
head repository: NixOS/nixpkgs-channels
compare: 3a0da440a354
Commits on Jan 6, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 46736ce - Browse repository at this point
Copy the full SHA 46736ceView commit details
Commits on Jan 15, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9fb7712 - Browse repository at this point
Copy the full SHA 9fb7712View commit details
Commits on Jan 31, 2020
-
Configuration menu - View commit details
-
Copy full SHA for acab138 - Browse repository at this point
Copy the full SHA acab138View commit details
Commits on Feb 2, 2020
-
chatterino2: fix install on macOS
On Darwin/macOS, chatterino2's install phase copies no files into the output. `make install` does not copy chatterino2.app. Copy the .app manually, fixing the installation. With this patch, chatterino2 almost works on macOS. Issue #42893 applies, so to make chatterino2 work, you must install qtbase in your environment. For example: $ nix-env -iA nixpkgs.qt5.qtbase $ open ~/.nix-profile/Applications/chatterino.app
Configuration menu - View commit details
-
Copy full SHA for cdd1c21 - Browse repository at this point
Copy the full SHA cdd1c21View commit details -
chatterino2: fix: Could not find the Qt platform plugin "cocoa" in ""
wrapQtAppsHook ignores Mach-O binaries [1]. Additionally, wrapQtAppsHook doesn't look inside $out/Applications [2], which is where chatterino2 is installed. This means chatterino2 for Darwin/macOS is not wrapped properly, causing the following error when launched: > qt.qpa.plugin: Could not find the Qt platform plugin "cocoa" in "" > > This application failed to start because no Qt platform plugin could > be initialized. Reinstalling the application may fix this problem. On macOS, explicitly wrap chatterino2's executable. [1] pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh line 85 [2] pkgs/development/libraries/qt-5/hooks/wrap-qt-apps-hook.sh line 76
Configuration menu - View commit details
-
Copy full SHA for 1221a6b - Browse repository at this point
Copy the full SHA 1221a6bView commit details
Commits on Feb 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ee027c1 - Browse repository at this point
Copy the full SHA ee027c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d45292 - Browse repository at this point
Copy the full SHA 9d45292View commit details
Commits on Feb 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 93943ac - Browse repository at this point
Copy the full SHA 93943acView commit details -
Configuration menu - View commit details
-
Copy full SHA for 31bbcc2 - Browse repository at this point
Copy the full SHA 31bbcc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 21ea3dd - Browse repository at this point
Copy the full SHA 21ea3ddView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7f1ab05 - Browse repository at this point
Copy the full SHA 7f1ab05View commit details
Commits on Feb 12, 2020
-
libubox: 2017-09-29 -> unstable-2020-01-20
Milan Pässler committedFeb 12, 2020 Configuration menu - View commit details
-
Copy full SHA for 8f58386 - Browse repository at this point
Copy the full SHA 8f58386View commit details -
uqmi: 2016-12-19 -> unstable-2019-06-27
Milan Pässler committedFeb 12, 2020 Configuration menu - View commit details
-
Copy full SHA for e9cb703 - Browse repository at this point
Copy the full SHA e9cb703View commit details -
ubus: init at unstable-2020-01-05
Milan Pässler committedFeb 12, 2020 Configuration menu - View commit details
-
Copy full SHA for 020e93b - Browse repository at this point
Copy the full SHA 020e93bView commit details -
uci: init at unstable-2020-01-27
Milan Pässler committedFeb 12, 2020 Configuration menu - View commit details
-
Copy full SHA for 6ad91bb - Browse repository at this point
Copy the full SHA 6ad91bbView commit details -
netifd: init at unstable-2020-01-18
Milan Pässler committedFeb 12, 2020 Configuration menu - View commit details
-
Copy full SHA for d24c403 - Browse repository at this point
Copy the full SHA d24c403View commit details -
One of the motivations for this change is the following Discourse discussion: https://discourse.dhall-lang.org/t/offline-use-of-prelude/137 Many users have requested Dhall support for "offline" packages that can be fetched/built/installed using ordinary package management tools (like Nix) instead of using Dhall's HTTP import system. I will continue to use the term "offline" to mean Dhall package builds that do not use Dhall's language support for HTTP imports (and instead use the package manager's support for HTTP requests, such as `pkgs.fetchFromGitHub`) The goal of this change is to document what is the idiomatic way to implement "offline" Dhall builds by implementing Nixpkgs support for such builds. That way when other package management tools ask me how to package Dhall with their tools I can refer them to how it is done in Nixpkgs. This change contains a fully "offline" build for the largest Dhall package in existence, known as "dhall-packages" (not to be confused with `dhallPackages`, which is our Nix attribute set containing Dhall packages). The trick to implementing offline builds in Dhall is to take advantage of Dhall's support for semantic integrity checks. If an HTTP import is protected by an integrity check and a cached build product matches the integrity check then the HTTP import is never resolved and the expression is instead fetched from cache. By "installing" dependencies in a pre-seeded and isolated cache we can replace remote HTTP imports with dependencies that have been built and supplied by Nix instead. The offline nature of the builds are enforced by compiling the Haskell interpreter with the `-f-with-http` flag, which disables the interpreter's support for HTTP imports. If a user forgets to supply a necessary dependency as a Nix build product then the build fails informing them that HTTP imports are disabled. By default, built packages are "binary distributions", containing just a cache product and a Dhall expression which can be used to resolve the corresponding cache product. Users can also optionally enable a "source distribution" of a package which already includes the equivalent fully-evaluated Dhall code (for convenience), but this is disabled by default to keep `/nix/store` utilization as compact as possible.
Configuration menu - View commit details
-
Copy full SHA for 38f1d70 - Browse repository at this point
Copy the full SHA 38f1d70View commit details -
Simplify
dhall-kubernetes
packagesThere is no need to provide a separate `kubernetesVersion` argument since the `file` argument works just fine
Configuration menu - View commit details
-
Copy full SHA for 822ad56 - Browse repository at this point
Copy the full SHA 822ad56View commit details
Commits on Feb 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8dca340 - Browse repository at this point
Copy the full SHA 8dca340View commit details
Commits on Feb 15, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8a2c2e4 - Browse repository at this point
Copy the full SHA 8a2c2e4View commit details -
We don't compile blender with alembic. The linux build is able to detect that, but this is not done for darwin. This explicitly disables alembic to fix blender build on darwin.
Configuration menu - View commit details
-
Copy full SHA for ac56038 - Browse repository at this point
Copy the full SHA ac56038View commit details
Commits on Feb 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 3388643 - Browse repository at this point
Copy the full SHA 3388643View commit details
Commits on Feb 17, 2020
-
Change formatting of record fields
... as requested by @Profpatsch
Configuration menu - View commit details
-
Copy full SHA for 32ed1c5 - Browse repository at this point
Copy the full SHA 32ed1c5View commit details -
mrtrix: init at 3.0_RC3_latest
This package consists mostly of command-line tools, but there are also two qt5-based image viewers (`mrview` and `shview`). I have provided an option `withGui = true` to allow users to disable these viewers. They work on NixOS but unlikely to work out-of-the box on non-NixOS Linux (see #62169), but I've refrained from asserting that they shouldn't be built since a user might want to fiddle with runtime GL stuff. Some programs rely on FSL and/or ANTs backends; I have somewhat heavy-handedly wrapped all binaries to point to ANTs, while FSL is not available in Nix at the moment and has a non-commercial license so would be convenient to disable by default for Hydra builds.
Configuration menu - View commit details
-
Copy full SHA for 9a2cd20 - Browse repository at this point
Copy the full SHA 9a2cd20View commit details -
Configuration menu - View commit details
-
Copy full SHA for a539bbf - Browse repository at this point
Copy the full SHA a539bbfView commit details
Commits on Feb 18, 2020
-
libreoffice: wrapper: add hunspell dirs to DICPATH
LibreOffice doesn't know where to look for hunspell dictionaries on NixOS but we can use the DICPATH env var to point to them. Now spellchecking with system dictionaries works. Note that some of these dictionaries are built from LibreOffice repos - this is preferable to building them as part of LO as other applications can use them.
Configuration menu - View commit details
-
Copy full SHA for c95bfd2 - Browse repository at this point
Copy the full SHA c95bfd2View commit details
Commits on Feb 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6986f40 - Browse repository at this point
Copy the full SHA 6986f40View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4442fb - Browse repository at this point
Copy the full SHA e4442fbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d3ba53 - Browse repository at this point
Copy the full SHA 3d3ba53View commit details -
Configuration menu - View commit details
-
Copy full SHA for 720a81b - Browse repository at this point
Copy the full SHA 720a81bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e49c0a0 - Browse repository at this point
Copy the full SHA e49c0a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e5aeca - Browse repository at this point
Copy the full SHA 4e5aecaView commit details
Commits on Feb 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4d2a825 - Browse repository at this point
Copy the full SHA 4d2a825View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e9d2f8 - Browse repository at this point
Copy the full SHA 3e9d2f8View commit details -
Configuration menu - View commit details
-
Copy full SHA for d1ee615 - Browse repository at this point
Copy the full SHA d1ee615View commit details -
Configuration menu - View commit details
-
Copy full SHA for 612130c - Browse repository at this point
Copy the full SHA 612130cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f4d7a7 - Browse repository at this point
Copy the full SHA 1f4d7a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91250fe - Browse repository at this point
Copy the full SHA 91250feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8700c4b - Browse repository at this point
Copy the full SHA 8700c4bView commit details -
gildas: 20200101_a -> 20200201_a
- Upgrade gildas to the latest version - Remove a patch that has been included upstream - Re-enable parallel building (fixed upstream)
Configuration menu - View commit details
-
Copy full SHA for 7667207 - Browse repository at this point
Copy the full SHA 7667207View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7fa751b - Browse repository at this point
Copy the full SHA 7fa751bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7724ef7 - Browse repository at this point
Copy the full SHA 7724ef7View commit details -
runInLinuxVM: Ensure tools requiring /etc/passwd work
This includes, but is not limited to: * whoami * nix >= 2.3.1 See * NixOS/nixpkgs#71157 * NixOS/nixops#1216 * nix-community/nixops-libvirtd#5
Configuration menu - View commit details
-
Copy full SHA for 687e219 - Browse repository at this point
Copy the full SHA 687e219View commit details
Commits on Feb 21, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 031db7b - Browse repository at this point
Copy the full SHA 031db7bView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc71384 - Browse repository at this point
Copy the full SHA dc71384View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7598200 - Browse repository at this point
Copy the full SHA 7598200View commit details -
Configuration menu - View commit details
-
Copy full SHA for 104dad8 - Browse repository at this point
Copy the full SHA 104dad8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 928c365 - Browse repository at this point
Copy the full SHA 928c365View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e2c51f - Browse repository at this point
Copy the full SHA 1e2c51fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6559330 - Browse repository at this point
Copy the full SHA 6559330View commit details
There are no files selected for viewing
This file was deleted.