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: 2b7c0dcdaab9
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: 970b2b853d41
Choose a head ref

Commits on Jun 22, 2020

  1. apache-storm: 1.2.1 -> 2.1.0

    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    aef5ee6 View commit details
  2. rzmq: use default zeromq

    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    c7b3e54 View commit details
  3. jzmq: remove

    This package does not support zeromq 4.x and is unmaintained.
    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    0006326 View commit details
  4. zeromq3: remove

    This zeromq version is really old and is no longer needed
    by any package in Nixpkgs.
    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    8415766 View commit details
  5. aliases: add zeromq3 packages

    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    7d20995 View commit details

Commits on Jul 8, 2020

  1. kustomize: 3.3.1 -> 3.8.0

    tree removed, since doesn't look necessary
    buildDate flag removed. If unset, the default date is 1/1/1970, which is
    common practice when building nix packages
    jlesquembre committed Jul 8, 2020
    Copy the full SHA
    e9d928a View commit details

Commits on Jul 16, 2020

  1. openrazer: 2.7.0 -> 2.8.0

    evanjs committed Jul 16, 2020
    Copy the full SHA
    8796d0b View commit details

Commits on Jul 17, 2020

  1. Copy the full SHA
    322d13e View commit details

Commits on Jul 18, 2020

  1. Copy the full SHA
    b28d329 View commit details

Commits on Jul 21, 2020

  1. cm-rgb: init at 0.3.4

    This is a set of utilities to control AMD Wraith Prism RGB LEDs.
    danieldk committed Jul 21, 2020
    Copy the full SHA
    031cc88 View commit details

Commits on Jul 23, 2020

  1. maintainers: add parasrah

    Parasrah committed Jul 23, 2020
    Copy the full SHA
    60bca58 View commit details
  2. finalfrontier: init at 0.9.3

    danieldk committed Jul 23, 2020
    Copy the full SHA
    4dd9423 View commit details
  3. Copy the full SHA
    447fe2d View commit details
  4. malcontent: 0.7.0 → 0.8.0

    * Update: https://gitlab.freedesktop.org/pwithnall/malcontent/-/releases/0.8.0
        * Fix the separation patch.
        * Add `itstool` to ui (needed for building localized help).
    * Use `pkg-config` instead of the `pkgconfig` alias.
    * Fix some issues related to multiple outputs:
        * Make the module pass specific output to `dbus.packages` since the `dbus` NixOS module will not generate configuration with correct interface paths otherwise.
        * Change `malcontent-ui` package to primarily-a-program type derivation (`out`+`lib` instead of `bin`+`out`) since there are more and more `malcontent-control`-specific assets.
            * This also fixes the issue where application data (desktop files, icons…) were installed to `out`, which is not installed by `environment.systemPackages`/`system-path.nix`’s `buildEnv` by default when `bin` output is also present.
        * Make `malcontent` package install `out` output too so that `system-path.nix` links that too. It contains the AccountsService & Polkit data files.
        * Split the library and PAM module out of `malcontent.out` so that they are not installed with the data files.
            * This revealed a bug in the `gobject-introspection` setup hook.
    jtojnar committed Jul 23, 2020
    Copy the full SHA
    097117c View commit details

Commits on Jul 24, 2020

  1. Copy the full SHA
    07e6141 View commit details
  2. audacity: 2.4.1 -> 2.4.2

    raboof committed Jul 24, 2020
    Copy the full SHA
    20872cb View commit details
  3. perlPackages.CryptOpenPGP: init at 1.12

    dependencies:
    perlPackages.AltCryptRSABigInt: init at 0.06
    perlPackages.ConvertASCIIArmour: init at 1.4
    perlPackages.CryptCAST5_PP: init at 1.04
    perlPackages.CryptDES_EDE3: init at 0.01
    perlPackages.CryptDSA: init at 1.17
    perlPackages.CryptRIPEMD160: init at 0.06
    perlPackages.CryptTwofish: init at 2.17
    perlPackages.DataBuffer: init at 0.04
    perlPackages.DigestMD2: init at 2.04
    perlPackages.MathPrimeUtil: init at 0.73
    perlPackages.MathPrimeUtilGMP: init at 0.52
    perlPackages.TieEncryptedHash: init at 1.24
    stigtsp committed Jul 24, 2020
    Copy the full SHA
    e68e4ca View commit details
  4. nixosTests.installed-tests: Add the test data to VM closure

    Flatpak’s installed tests build Flatpak runtimes, among other things.
    Upstream code does this by copying some programs on `PATH`
    as well as some possible dependencies from host’s /usr.
    We patch the code to use `nix-store --query --requisites`
    to make the dependency discovery easier.
    
    The Flatpak’s installed tests add `socat` to `PATH` and later run
    `nix-store --query --requisites` on its location but it was failing with
    
        error: path '/nix/store/qcyf7nq5vvfw32967sv4j6z190inrbrc-socat-1.7.3.4' is not valid
    
    The issue occurred because, while the host Nix store is bind mounted into the test VM,
    the VM’s store uses its own database that only contains the packages in the VM’s closure.
    Since the test commands are not actually part of the VM but only passed through PTY,
    the `flatpak.installedTests` derivation was not part of the VM’s closure, so `nix-store`
    in the VM could not get information about its dependency `socat`.
    
    Let’s make the `installedTests` of the tested package part of the test VM’s closure
    by passing it as a global environment variable. This will also have the added benefit
    that user no longer has to type the path when running the installed tests manually in the VM;
    they can just use `gnome-desktop-testing-runner -d $TESTED_PACKAGE_INSTALLED_TESTS`,
    which is much more conducive to tab completion.
    jtojnar committed Jul 24, 2020
    Copy the full SHA
    2bfa6aa View commit details
  5. nixosTests.installed-tests.flatpak: Fix

    Along with the `socat` fix in the parent commit, this makes
    the Flatpak’s installed tests finally pass again.
    
    The tests seem to need slightly over 2G of disk space,
    and it appears that the test suite was ported to Python 3 in 1.5.1:
    flatpak/flatpak@2b66415
    jtojnar committed Jul 24, 2020
    Copy the full SHA
    8d53e88 View commit details
  6. opendmarc: init at 1.3.3

    ajs124 committed Jul 24, 2020
    Copy the full SHA
    61d3f6f View commit details
  7. exim: add DMARC support

    ajs124 committed Jul 24, 2020
    Copy the full SHA
    5495405 View commit details
  8. notmuch: 0.29.3 -> 0.30

    Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
    matthiasbeyer committed Jul 24, 2020
    Copy the full SHA
    9444896 View commit details
  9. flatpak: 1.6.3 → 1.8.1

    Changes:
    * https://github.com/flatpak/flatpak/releases/tag/1.7.1
    * https://github.com/flatpak/flatpak/releases/tag/1.7.2
    * https://github.com/flatpak/flatpak/releases/tag/1.7.3
    * https://github.com/flatpak/flatpak/releases/tag/1.8.0
    * https://github.com/flatpak/flatpak/releases/tag/1.8.1
    
    Commits:
    flatpak/flatpak@1.6.3...1.7.1
    flatpak/flatpak@1.7.1...1.8.1
    
    Notable packaging changes:
    * Flatpak now ships a sysusers.d file for allowing systemd to create the required users.
      flatpak/flatpak@4df0190
    * Completion support for fish shell
    * If an app has filesystem access, the host /lib is accessible as /run/host/lib, etc.
    * New filesystem permission "host-etc" and "host-os" give access to system /usr and /etc.
      flatpak/flatpak@fe2536b
    * We now always expose the host timezone data, allowing us the expose the host /etc/localtime in a way that works better, fixing several apps that had timezone issues.
      flatpak/flatpak@dc4e198
    * We now ship a systemd unit (not installed by default) to automatically detect plugged in usb sticks with sideload repos.
    * By default we no longer install the gdm env.d file, as the systemd generators work better
      flatpak/flatpak@7c3a85b
    * Use variant-schema-compiler for some GVariant code
      flatpak/flatpak#3366
    * zstd compression for oci deltas:
      flatpak/flatpak@bfa71e2
    
    Additionally:
    * Remove glibcLocales which is not used since 1.4 bump because glibc contains a locale archive with C.UTF-8
      NixOS/nixpkgs@1728bc8
    * Stop using aliases for docbook-xsl-nons and pkg-config packages
    * Stop using autoreconfHook, the autogen.sh script contains some extra that are necessary when building from git.
    * Increase disk space for installed tests, they were running out.
    * Enable building developer documentation.
    jtojnar committed Jul 24, 2020
    Copy the full SHA
    98710d2 View commit details
  10. nixosTests.flatpak: clean up

    GNOME is not necessary. Portals probably are not either,
    but the NixOS module requires them.
    
    Not sure why it did not work without GNOME before.
    jtojnar committed Jul 24, 2020
    Copy the full SHA
    379038b View commit details

Commits on Jul 25, 2020

  1. Copy the full SHA
    128ca56 View commit details
  2. drawio: add meta.changelog

    danieldk committed Jul 25, 2020
    Copy the full SHA
    2532059 View commit details
  3. mopidy-youtube: 3.0 -> 3.1

    ruuda committed Jul 25, 2020
    Copy the full SHA
    d4b5915 View commit details
  4. mc: 4.8.24 -> 4.8.25

    r-ryantm committed Jul 25, 2020
    Copy the full SHA
    7ae3106 View commit details
  5. metabase: 0.35.4 -> 0.36.0

    r-ryantm committed Jul 25, 2020
    Copy the full SHA
    3165354 View commit details
  6. makemkv: 1.15.1 -> 1.15.2

    Upstream changes:
    
    - Massive internal rewrite, some improvements and small bugfixes
    - Muxer updated to the latest matroska specification
    - Advanced usage changes:
      * Sdftool included as standalone executable
      * Drive speed control option
    danieldk committed Jul 25, 2020
    Copy the full SHA
    12186bf View commit details
  7. lime: 4.3.1 -> 4.4.0

    r-ryantm committed Jul 25, 2020
    Copy the full SHA
    bc9adde View commit details
  8. Copy the full SHA
    0cfaf02 View commit details
  9. rls: fix build

    fix copied from rustfmt
    symphorien committed Jul 25, 2020
    Copy the full SHA
    2885306 View commit details
  10. nixos/wpa_supplicant: update config generation

    Ensure wpa_supplicant.conf is also generated when userControlled and
    extraConfig are used. (As discussed in issue #59959)
    bobismijnnaam committed Jul 25, 2020
    Copy the full SHA
    71ea6a9 View commit details
  11. nixos/dhcpd: make authoritative mode optional

    There are circumstances where running secondary DHCP servers in
    non-authoritative mode is advantageous. Retain the previous
    authoritative behavior as a default.
    ehmry committed Jul 25, 2020
    Copy the full SHA
    a878038 View commit details
  12. Copy the full SHA
    39deb82 View commit details
  13. Copy the full SHA
    764a925 View commit details
  14. Copy the full SHA
    d800d1e View commit details
  15. Copy the full SHA
    49dba9c View commit details
  16. Copy the full SHA
    194d749 View commit details
  17. openjdk: build with empty pre-version (#92947)

    The removes the "-internal" suffix from the OpenJDK version string.
    Some applications, like the Jetbrains IDEs, check for a suffix to
    determine if a stable JDK is used.
    Thanks to @liff for the hint in #92837!
    Milan authored Jul 25, 2020
    Copy the full SHA
    56fcf78 View commit details
  18. Copy the full SHA
    d3fdd46 View commit details
  19. qtile: 0.13.0 -> 0.16.0 (#93705)

    * qtile: 0.13.0 -> 0.16.0
    
    * qtile: refactoring to use setuptools_scm solution used in other places in nixpkgs
    deliciouslytyped authored Jul 25, 2020
    Copy the full SHA
    c45f9a1 View commit details
  20. Merge pull request #93809 from danieldk/makemkv-1.15.2

    makemkv: 1.15.1 -> 1.15.2
    danieldk authored Jul 25, 2020
    Copy the full SHA
    6150631 View commit details
  21. Merge pull request #93275 from evanjs/openrazer/2.8.0

    openrazer: 2.7.0 -> 2.8.0
    infinisil authored Jul 25, 2020
    Copy the full SHA
    883af84 View commit details
  22. go-task: init at 2.8.1

    Parasrah authored and danieldk committed Jul 25, 2020
    Copy the full SHA
    669155b View commit details
  23. Merge pull request #93619 from Parasrah/go-task

    go-task: init at 2.8.1
    danieldk authored Jul 25, 2020
    Copy the full SHA
    370a71c View commit details
  24. Copy the full SHA
    2a2b31b View commit details
  25. Merge pull request #93805 from r-ryantm/auto-update/mc

    mc: 4.8.24 -> 4.8.25
    danieldk authored Jul 25, 2020
    Copy the full SHA
    f1bc042 View commit details
  26. Copy the full SHA
    499ae67 View commit details
Loading