-
-
Notifications
You must be signed in to change notification settings - Fork 104
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs-channels
base: 10100a97c896
head repository: NixOS/nixpkgs-channels
compare: 730ecad04815
Commits on Apr 10, 2020
-
Move icoutils from buildInputs to nativeBuildInputs because it is a compile time dependency.
Configuration menu - View commit details
-
Copy full SHA for ec88246 - Browse repository at this point
Copy the full SHA ec88246View commit details
Commits on Apr 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 17f2cf9 - Browse repository at this point
Copy the full SHA 17f2cf9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 204d710 - Browse repository at this point
Copy the full SHA 204d710View commit details
Commits on Apr 16, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 90cd0a6 - Browse repository at this point
Copy the full SHA 90cd0a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc3020f - Browse repository at this point
Copy the full SHA bc3020fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 924cd84 - Browse repository at this point
Copy the full SHA 924cd84View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0809ed8 - Browse repository at this point
Copy the full SHA 0809ed8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 20466af - Browse repository at this point
Copy the full SHA 20466afView commit details -
Configuration menu - View commit details
-
Copy full SHA for f493868 - Browse repository at this point
Copy the full SHA f493868View commit details -
Configuration menu - View commit details
-
Copy full SHA for 188d031 - Browse repository at this point
Copy the full SHA 188d031View commit details -
Configuration menu - View commit details
-
Copy full SHA for e264904 - Browse repository at this point
Copy the full SHA e264904View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1f6d95b - Browse repository at this point
Copy the full SHA 1f6d95bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2667f93 - Browse repository at this point
Copy the full SHA 2667f93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e171ac - Browse repository at this point
Copy the full SHA 2e171acView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b6e080 - Browse repository at this point
Copy the full SHA 5b6e080View commit details -
Configuration menu - View commit details
-
Copy full SHA for 578ebda - Browse repository at this point
Copy the full SHA 578ebdaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 85b64d3 - Browse repository at this point
Copy the full SHA 85b64d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ae6a55c - Browse repository at this point
Copy the full SHA ae6a55cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b4f8ce9 - Browse repository at this point
Copy the full SHA b4f8ce9View commit details
Commits on Apr 17, 2020
-
mesa-glu: use HTTPS instead of FTP
FTP is often blocked by firewalls and is generally slower and less secure than HTTPS. No change to `src` hash.
Configuration menu - View commit details
-
Copy full SHA for ba8c116 - Browse repository at this point
Copy the full SHA ba8c116View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04afb68 - Browse repository at this point
Copy the full SHA 04afb68View commit details -
Configuration menu - View commit details
-
Copy full SHA for 90326ba - Browse repository at this point
Copy the full SHA 90326baView commit details -
blas/lapack: add wrapper for “alternative”s of BLAS/LAPACK provider
This is based on previous work for switching between BLAS and LAPACK implementation in Debian[1] and Gentoo[2]. The goal is to have one way to depend on the BLAS/LAPACK libraries that all packages must use. The attrs “blas” and “lapack” are used to represent a wrapped BLAS/LAPACK provider. Derivations that don’t care how BLAS and LAPACK are implemented can just use blas and lapack directly. If you do care what you get (perhaps for some CPP), you should verify that blas and lapack match what you expect with an assertion. The “blas” package collides with the old “blas” reference implementation. This has been renamed to “blas-reference”. In addition, “lapack-reference” is also included, corresponding to “liblapack” from Netlib.org. Currently, there are 3 providers of the BLAS and LAPACK interfaces: - lapack-reference: the BLAS/LAPACK implementation maintained by netlib.org - OpenBLAS: an optimized version of BLAS and LAPACK - MKL: Intel’s unfree but highly optimized BLAS/LAPACK implementation By default, the above implementations all use the “LP64” BLAS and LAPACK ABI. This corresponds to “openblasCompat” and is the safest way to use BLAS/LAPACK. You may received some benefits from “ILP64” or 8-byte integer BLAS at the expense of breaking compatibility with some packages. This can be switched at build time with an override like: import <nixpkgs> { config.allowUnfree = true; overlays = [(self: super: { lapack = super.lapack.override { lapackProvider = super.lapack-reference; }; blas = super.blas.override { blasProvider = super.lapack-reference; }; })]; } or, switched at runtime via LD_LIBRARY_PATH like: $ LD_LIBRARY_PATH=$(nix-build -E '(with import <nixpkgs> {}).lapack.override { lapackProvider = pkgs.mkl; is64bit = true; })')/lib:$(nix-build -E '(with import <nixpkgs> {}).blas.override { blasProvider = pkgs.mkl; is64bit = true; })')/lib ./your-blas-linked-binary By default, we use OpenBLAS LP64 also known in Nixpkgs as openblasCompat. [1]: https://wiki.debian.org/DebianScience/LinearAlgebraLibraries [2]: https://wiki.gentoo.org/wiki/Blas-lapack-switch
Configuration menu - View commit details
-
Copy full SHA for 4387335 - Browse repository at this point
Copy the full SHA 4387335View commit details -
This makes packages use lapack and blas, which can wrap different BLAS/LAPACK implementations. treewide: cleanup from blas/lapack changes A few issues in the original treewide: - can’t assume blas64 is a bool - unused commented code
Configuration menu - View commit details
-
Copy full SHA for 1c8aba8 - Browse repository at this point
Copy the full SHA 1c8aba8View commit details -
pkgs/release-alternatives.nix: create
Add some ability to test the different BLAS/LAPACK implementations together.
Configuration menu - View commit details
-
Copy full SHA for 7841b42 - Browse repository at this point
Copy the full SHA 7841b42View commit details -
setup-hooks/audit-blas.sh: init
Add a simple hook that makes sure blas and lapack are linked to the right place.
Configuration menu - View commit details
-
Copy full SHA for d83e9c9 - Browse repository at this point
Copy the full SHA d83e9c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 98fb0ed - Browse repository at this point
Copy the full SHA 98fb0edView commit details -
Configuration menu - View commit details
-
Copy full SHA for fcf33e2 - Browse repository at this point
Copy the full SHA fcf33e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 97fc083 - Browse repository at this point
Copy the full SHA 97fc083View commit details -
Merge pull request #85461 from adisbladis/systemfd
systemfd: init at 0.3.0
Configuration menu - View commit details
-
Copy full SHA for d31a6f3 - Browse repository at this point
Copy the full SHA d31a6f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fe18a5 - Browse repository at this point
Copy the full SHA 3fe18a5View commit details -
Merge pull request #83888 from matthewbauer/blas-alternatives
Add BLAS/LAPACK switching mechanism
Configuration menu - View commit details
-
Copy full SHA for cdfda4b - Browse repository at this point
Copy the full SHA cdfda4bView commit details -
Merge pull request #85448 from bhipple/fix/mesa-glu
mesa-glu: use HTTPS instead of FTP
Configuration menu - View commit details
-
Copy full SHA for ce283f0 - Browse repository at this point
Copy the full SHA ce283f0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 95847e6 - Browse repository at this point
Copy the full SHA 95847e6View commit details -
Merge pull request #85190 from Ericson2314/fwupdate
fwupdate: Clean up -I flags
Configuration menu - View commit details
-
Copy full SHA for e99a409 - Browse repository at this point
Copy the full SHA e99a409View commit details
Commits on Apr 18, 2020
-
Partially revert "libtorrent-raster: 1.1.11 -> 1.2.5; qbittorrent: 4.…
…2.1 -> 4.2.2" This partially reverts commit cc03fb4. The libtorrentRasterbar update broke deluge 1.x, the hash was not updated and obsolete dependencies and flags were not removed.
Milan Pässler authored and Milan committedApr 18, 2020 Configuration menu - View commit details
-
Copy full SHA for 69e7326 - Browse repository at this point
Copy the full SHA 69e7326View commit details -
libtorrent-rasterbar: 1.1.11 -> 1.2.5
https://raw.githubusercontent.com/arvidn/libtorrent/libtorrent-1_2_5/ChangeLog The old release is kept available as libtorrentRasterbar-1_1_x for deluge 1.x.
Configuration menu - View commit details
-
Copy full SHA for ca722c5 - Browse repository at this point
Copy the full SHA ca722c5View commit details -
* let's try 2.0 version now, no time better than the present! Maybe! * bz2 -> xz * maybe python3 * disable pyGtkGlade for deps, maybe not needed? * fix gtk/etc deps, deluge-gtk works! \o/ * restore installation of images and such The old version is kept available as some torrent trackers have not updated their whitelists yet.
Configuration menu - View commit details
-
Copy full SHA for 9ae8499 - Browse repository at this point
Copy the full SHA 9ae8499View commit details -
Configuration menu - View commit details
-
Copy full SHA for fee776a - Browse repository at this point
Copy the full SHA fee776aView commit details -
Milan Pässler authored and Milan committed
Apr 18, 2020 Configuration menu - View commit details
-
Copy full SHA for 16a4332 - Browse repository at this point
Copy the full SHA 16a4332View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8cd08a - Browse repository at this point
Copy the full SHA b8cd08aView commit details -
Milan Pässler committed
Apr 18, 2020 Configuration menu - View commit details
-
Copy full SHA for fc5090b - Browse repository at this point
Copy the full SHA fc5090bView commit details -
Signed-off-by: Markus S. Wamser <github-dev@mail2013.wamser.eu>
Configuration menu - View commit details
-
Copy full SHA for 7bac5db - Browse repository at this point
Copy the full SHA 7bac5dbView commit details -
Merge pull request #85380 from filalex77/packet-cli-0.0.6
packet-cli: init at 0.0.6
Configuration menu - View commit details
-
Copy full SHA for 1d3de25 - Browse repository at this point
Copy the full SHA 1d3de25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b9c0ad - Browse repository at this point
Copy the full SHA 6b9c0adView commit details -
Merge pull request #84925 from NilsIrl/ghidra_9.1.2
ghidra: 9.1 -> 9.1.2
Configuration menu - View commit details
-
Copy full SHA for 3d902a8 - Browse repository at this point
Copy the full SHA 3d902a8View commit details -
Merge pull request #85406 from eadwu/sourcehut/update-5
sourcehut: 2020.04.16
Configuration menu - View commit details
-
Copy full SHA for 68a4ca4 - Browse repository at this point
Copy the full SHA 68a4ca4View commit details -
Merge pull request #85468 from Ericson2314/no-dumpmachine
treewide: Get rid of -dumpmachine in favor of static info
Configuration menu - View commit details
-
Copy full SHA for eb4acb6 - Browse repository at this point
Copy the full SHA eb4acb6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4727e95 - Browse repository at this point
Copy the full SHA 4727e95View commit details -
Configuration menu - View commit details
-
Copy full SHA for 730ecad - Browse repository at this point
Copy the full SHA 730ecadView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 10100a97c896...730ecad04815