Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 10100a97c896
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 730ecad04815
Choose a head ref

Commits on Apr 10, 2020

  1. ghidra: 9.1 -> 9.1.2

    Move icoutils from buildInputs to nativeBuildInputs because it is a
    compile time dependency.
    NilsIrl committed Apr 10, 2020
    Copy the full SHA
    ec88246 View commit details

Commits on Apr 13, 2020

  1. Copy the full SHA
    17f2cf9 View commit details
  2. Copy the full SHA
    204d710 View commit details

Commits on Apr 16, 2020

  1. packet-cli: init at 0.0.6

    Br1ght0ne committed Apr 16, 2020
    Copy the full SHA
    90cd0a6 View commit details
  2. srht: 0.57.2 -> 0.59.13

    eadwu committed Apr 16, 2020
    Copy the full SHA
    bc3020f View commit details
  3. buildsrht: 0.52.5 -> 0.56.13

    eadwu committed Apr 16, 2020
    Copy the full SHA
    924cd84 View commit details
  4. dispatchsrht: 0.13.3 -> 0.14.1

    eadwu committed Apr 16, 2020
    Copy the full SHA
    0809ed8 View commit details
  5. gitsrht: 0.43.3 -> 0.50.3

    eadwu committed Apr 16, 2020
    Copy the full SHA
    20466af View commit details
  6. hgsrht: 0.21.1 -> 0.26.0

    eadwu committed Apr 16, 2020
    Copy the full SHA
    f493868 View commit details
  7. listssrht: 0.40.3 -> 0.41.8

    eadwu committed Apr 16, 2020
    Copy the full SHA
    188d031 View commit details
  8. mansrht: 0.14.1 -> 0.14.7

    eadwu committed Apr 16, 2020
    Copy the full SHA
    e264904 View commit details
  9. metasrht: 0.41.10 -> 0.42.13

    eadwu committed Apr 16, 2020
    Copy the full SHA
    1f6d95b View commit details
  10. pastesrht: 0.9.2 -> 0.10.3

    eadwu committed Apr 16, 2020
    Copy the full SHA
    2667f93 View commit details
  11. todosrht: 0.55.3 -> 0.57.14

    eadwu committed Apr 16, 2020
    Copy the full SHA
    2e171ac View commit details
  12. scmsrht: 0.18.1 -> 0.19.11

    eadwu committed Apr 16, 2020
    Copy the full SHA
    5b6e080 View commit details
  13. Copy the full SHA
    578ebda View commit details
  14. buildsrht: fix build

    eadwu committed Apr 16, 2020
    Copy the full SHA
    85b64d3 View commit details
  15. Copy the full SHA
    ae6a55c View commit details
  16. gitsrht: include minio

    eadwu committed Apr 16, 2020
    Copy the full SHA
    b4f8ce9 View commit details

Commits on Apr 17, 2020

  1. 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.
    bhipple committed Apr 17, 2020
    Copy the full SHA
    ba8c116 View commit details
  2. systemfd: init at 0.3.0

    adisbladis committed Apr 17, 2020
    Copy the full SHA
    04afb68 View commit details
  3. Copy the full SHA
    90326ba View commit details
  4. 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
    matthewbauer committed Apr 17, 2020
    Copy the full SHA
    4387335 View commit details
  5. treewide: use blas and lapack

    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
    matthewbauer committed Apr 17, 2020
    Copy the full SHA
    1c8aba8 View commit details
  6. pkgs/release-alternatives.nix: create

    Add some ability to test the different BLAS/LAPACK implementations
    together.
    matthewbauer committed Apr 17, 2020
    Copy the full SHA
    7841b42 View commit details
  7. setup-hooks/audit-blas.sh: init

    Add a simple hook that makes sure blas and lapack are linked to the
    right place.
    matthewbauer committed Apr 17, 2020
    Copy the full SHA
    d83e9c9 View commit details
  8. arrayfire: remove mkl

    This is unfree.
    matthewbauer committed Apr 17, 2020
    Copy the full SHA
    98fb0ed View commit details
  9. Copy the full SHA
    fcf33e2 View commit details
  10. Copy the full SHA
    97fc083 View commit details
  11. Merge pull request #85461 from adisbladis/systemfd

    systemfd: init at 0.3.0
    adisbladis authored Apr 17, 2020
    Copy the full SHA
    d31a6f3 View commit details
  12. Copy the full SHA
    3fe18a5 View commit details
  13. Merge pull request #83888 from matthewbauer/blas-alternatives

    Add BLAS/LAPACK switching mechanism
    Ericson2314 authored Apr 17, 2020
    Copy the full SHA
    cdfda4b View commit details
  14. Merge pull request #85448 from bhipple/fix/mesa-glu

    mesa-glu: use HTTPS instead of FTP
    adisbladis authored Apr 17, 2020
    Copy the full SHA
    ce283f0 View commit details
  15. Copy the full SHA
    95847e6 View commit details
  16. Merge pull request #85190 from Ericson2314/fwupdate

    fwupdate: Clean up -I flags
    Ericson2314 authored Apr 17, 2020
    Copy the full SHA
    e99a409 View commit details

Commits on Apr 18, 2020

  1. 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 committed Apr 18, 2020
    Copy the full SHA
    69e7326 View commit details
  2. 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.
    dtzWill authored and Milan committed Apr 18, 2020
    Copy the full SHA
    ca722c5 View commit details
  3. deluge: 1.3.15 -> 2.0.3

    * 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.
    dtzWill authored and Milan committed Apr 18, 2020
    Copy the full SHA
    9ae8499 View commit details
  4. deluge: remove use of deprecated alias

    dtzWill authored and Milan committed Apr 18, 2020
    Copy the full SHA
    fee776a View commit details
  5. nixos/deluge: support 2.x

    Milan Pässler authored and Milan committed Apr 18, 2020
    Copy the full SHA
    16a4332 View commit details
  6. Merge pull request #85467 from zowoq/yq

    yq-go: 3.2.1 -> 3.3.0
    nlewo authored Apr 18, 2020
    Copy the full SHA
    b8cd08a View commit details
  7. blas: fix build

    Milan Pässler committed Apr 18, 2020
    Copy the full SHA
    fc5090b View commit details
  8. maintainers: add wamserma

    Signed-off-by: Markus S. Wamser <github-dev@mail2013.wamser.eu>
    wamserma authored Apr 18, 2020
    Copy the full SHA
    7bac5db View commit details
  9. Merge pull request #85380 from filalex77/packet-cli-0.0.6

    packet-cli: init at 0.0.6
    marsam authored Apr 18, 2020
    Copy the full SHA
    1d3de25 View commit details
  10. Copy the full SHA
    6b9c0ad View commit details
  11. Merge pull request #84925 from NilsIrl/ghidra_9.1.2

    ghidra: 9.1 -> 9.1.2
    bhipple authored Apr 18, 2020
    Copy the full SHA
    3d902a8 View commit details
  12. Merge pull request #85406 from eadwu/sourcehut/update-5

    sourcehut: 2020.04.16
    veprbl authored Apr 18, 2020
    Copy the full SHA
    68a4ca4 View commit details
  13. Merge pull request #85468 from Ericson2314/no-dumpmachine

    treewide: Get rid of -dumpmachine in favor of static info
    Ericson2314 authored Apr 18, 2020
    Copy the full SHA
    eb4acb6 View commit details
  14. Copy the full SHA
    4727e95 View commit details
  15. msmtp: 1.8.7 -> 1.8.8

    rycee committed Apr 18, 2020
    Copy the full SHA
    730ecad View commit details
Loading