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: e89b21504f3e
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: 88a40abc92e5
Choose a head ref

Commits on Oct 5, 2018

  1. nixos manual: releases workflow improvements

    - `git push --tags` is too dangerous (pushes all your tags)
    vcunat authored and samueldr committed Oct 5, 2018
    Copy the full SHA
    dd82f6c View commit details
  2. Copy the full SHA
    4f43e5f View commit details

Commits on May 11, 2019

  1. Copy the full SHA
    a170a87 View commit details
  2. Copy the full SHA
    2e58cfa View commit details

Commits on Sep 2, 2019

  1. Copy the full SHA
    c09e02a View commit details
  2. remove a few boost overrides optimistically

    Build-tested the changes packages.
    
    May be more that can be cleaned up.
    dtzWill authored and disassembler committed Sep 2, 2019
    Copy the full SHA
    e74d575 View commit details

Commits on Sep 26, 2019

  1. generic/setup.sh: Unset locally defined variables

    setup.sh adds a bunch of variables that only it needs. To avoid
    polluting environments, we should unset these as soon as we are done
    with them.
    matthewbauer committed Sep 26, 2019
    Copy the full SHA
    1601a7f View commit details

Commits on Oct 4, 2019

  1. openvswitch: 2.5.4 -> 2.12.0

    Openvswitch was upgraded to the latest
    stable version (currenty 2.12.0). This remove ovs-monitor-ipsec
    commands.
    
    LTS version is still available using
    `config.virtualisation.vswitch.package = pkgs.openvswitch-lts`
    it has been upgraded to 2.5.6.
    
    This commit is a split from the original PR #35127.
    netixx committed Oct 4, 2019
    Copy the full SHA
    e8e980e View commit details
  2. Copy the full SHA
    e494de2 View commit details
  3. Copy the full SHA
    fadd37b View commit details

Commits on Oct 19, 2019

  1. Copy the full SHA
    6a600b1 View commit details

Commits on Oct 20, 2019

  1. unzip: CVE-2019-13232

    thorstenweber83 committed Oct 20, 2019
    Copy the full SHA
    4d33b41 View commit details

Commits on Oct 23, 2019

  1. libsForQt5.phonon: 4.10.3 -> 4.11.1

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/phonon-qt5/versions
    r-ryantm committed Oct 23, 2019
    Copy the full SHA
    1d1cbbc View commit details

Commits on Oct 27, 2019

  1. Merge branch 'master' into release-docs

    It's been a very long time, so I think a merge will be better than
    a rebase.  There was only one simple conflict.
    vcunat committed Oct 27, 2019
    Copy the full SHA
    d9c5d58 View commit details

Commits on Oct 29, 2019

  1. sudo: 1.8.28 -> 1.8.29

    https://www.sudo.ws/stable.html#1.8.29
    
    Build tweak: fix build failure when attempting to check that
    the "existing" sudoers file on $out/etc/sudoers parses clean--
    this update changed precondition for this test to check if
    DESTDIR is non-empty instead of previous behavior
    "does the file exist".
    dtzWill committed Oct 29, 2019
    Copy the full SHA
    640677c View commit details

Commits on Oct 30, 2019

  1. Copy the full SHA
    384e59a View commit details

Commits on Nov 1, 2019

  1. common setup hooks: set -u robustness

    Explicitly handle `dont*` and friends not being defined.
    Ericson2314 committed Nov 1, 2019
    Copy the full SHA
    43a9886 View commit details
  2. bintools-wrapper: Don't stop set -u-ing

    Same justification as previous commit.
    Ericson2314 committed Nov 1, 2019
    Copy the full SHA
    545e751 View commit details
  3. Copy the full SHA
    d21a660 View commit details
  4. Copy the full SHA
    3835442 View commit details
  5. Copy the full SHA
    1290e53 View commit details
  6. treewide: Make still dont* Variables are optional in most cases

    Go beyond the obvious setup hooks now, with a bit of sed, with a skipped case:
    
     - cc-wrapper's `dontlink`, because it already is handled.
    
    Also, in nix files escaping was manually added.
    
    EMP
    Ericson2314 committed Nov 1, 2019
    Copy the full SHA
    2811b03 View commit details
  7. Copy the full SHA
    7eecf4f View commit details
  8. treewide: *Phase(s)? variables are optional

    If these aren't defined, the stdenv defaults are used in the `*Phase`
    case, or no extra phases are done, in the `*Phases` case.
    Ericson2314 committed Nov 1, 2019
    Copy the full SHA
    b7f4bda View commit details
  9. Copy the full SHA
    45e5e68 View commit details
  10. ec2/create-amis.sh: register root device as /dev/xvda

    For the case of blkfront drives, there appears to be no difference
    between /dev/sda1 and /dev/xvda: the drive always appears as the
    kernel device /dev/xvda.
    
    For the case of nvme drives, the root device typically appears as
    /dev/nvme0n1.  Amazon provides the 'ec2-utils' package for their first
    party linux ("Amazon Linux"), which configures udev to create symlinks
    from the provided name to the nvme device name. This name is
    communicated through nvme "Identify Controller" response, which can be
    inspected with:
    
      nvme id-ctrl --raw-binary /dev/nvme0n1 | cut -c3073-3104 | hexdump -C
    
    On Amazon Linux, where the device is attached as "/dev/xvda", this
    creates:
    
    - /dev/xvda  -> nvme0n1
    - /dev/xvda1 -> nvme0n1p1
    
    On NixOS where the device is attach as "/dev/sda1", this creates:
    
    - /dev/sda1  -> nvme0n1
    - /dev/sda11 -> nvme0n1p1
    
    This is odd, but not inherently a problem.
    
    NixOS unconditionally configures grub to install to `/dev/xvda`, which
    fails on an instance using nvme storage. With the root device name set
    to xvda, both blkfront and nvme drives are accessible as /dev/xvda,
    either directly or by symlink.
    thefloweringash committed Nov 1, 2019
    Copy the full SHA
    bd61216 View commit details
  11. Copy the full SHA
    373236c View commit details
  12. stdenv: Don't stop set -u-ing

    Before, we very carefully unapplied and reapplied `set -u` so the rest
    of Nixpkgs could continue to not fail on undefined variables. Let's rip
    off the band-aid.
    Ericson2314 committed Nov 1, 2019
    Copy the full SHA
    9df7efe View commit details

Commits on Nov 2, 2019

  1. Copy the full SHA
    0d691d1 View commit details
  2. mpg123: 1.25.12 -> 1.25.13

    r-ryantm committed Nov 2, 2019
    Copy the full SHA
    d254966 View commit details
  3. gnugp: adding option for minimal build

    Basically a flavour of gnugpg, which solely containts `bin/gnupg`.
    wucke13 committed Nov 2, 2019
    Copy the full SHA
    d1270ac View commit details
  4. systemd: adding support for systemd-importd

    Adding `systemd-importd` to the build, so that `machinectl`s `import-.*`
    may actually do anything. Currently they fail with
    
    ```
    Failed to transfer image: The name org.freedesktop.import1 was not provided by any .service files
    ```
    as `systemd-importd` is not built. Also registers the regarding dbus
    api and service in the systemd module.
    wucke13 committed Nov 2, 2019
    Copy the full SHA
    29ac226 View commit details
  5. qtbase-setup-hook: postPhases may be undefined

    My earlier sed missed this because it already had `{..}`.
    Ericson2314 committed Nov 2, 2019
    Copy the full SHA
    9b274e2 View commit details

Commits on Nov 3, 2019

  1. vim: 8.1.2188 -> 8.1.2237

    r-ryantm committed Nov 3, 2019
    Copy the full SHA
    02c3bce View commit details
  2. nixosTests.systemd-nspawn: add test

    This adds a test downloading an nspawn container via http, and ensures
    sha256sum verification and gpg signature verification work.
    flokli committed Nov 3, 2019
    Copy the full SHA
    52ed193 View commit details
  3. Copy the full SHA
    e88fb2d View commit details
  4. Copy the full SHA
    d1d3807 View commit details
  5. git: drop extraneous sysconfdir trailing slash

    I noticed while strace-ing that Git was trying to open
    /etc//gitconfig.  Not a big deal, but it is definitely more correct
    without the trailing slash.
    alyssais committed Nov 3, 2019
    Copy the full SHA
    4b63c91 View commit details

Commits on Nov 4, 2019

  1. Merge pull request #72745 from alyssais/git-slash

    git: drop extraneous sysconfdir trailing slash
    wmertens authored Nov 4, 2019
    Copy the full SHA
    32e3f4a View commit details
  2. Copy the full SHA
    57a9ba0 View commit details
  3. Copy the full SHA
    ddc35b1 View commit details
  4. nixos/libinput: apply options to all device types

    Instead of assign the libinput options to touchpad devices only, it
    should be appied by any device using libinput.
    Due to the fact that `40-libinput.conf` already defines libinput as
    driver for any detected input device, we can use `MatchDriver` to appy
    options.
    sylv-io committed Nov 4, 2019
    Copy the full SHA
    d616928 View commit details
  5. git: 2.23.0 -> 2.24.0

    NeQuissimus committed Nov 4, 2019
    Copy the full SHA
    0a9e548 View commit details

Commits on Nov 5, 2019

  1. multiple-outputs setup hook: Remove accidentally added tab

    I don't want to just rebase this away because the original commit is
    also in #72074.
    Ericson2314 committed Nov 5, 2019
    Copy the full SHA
    c5cf009 View commit details
  2. Merge pull request #72347 from NixOS/bash-no-undef-vars

    treewide: `set -u` everywhere
    Ericson2314 authored Nov 5, 2019
    Copy the full SHA
    acd2d19 View commit details
  3. Copy the full SHA
    fae8d26 View commit details
  4. Copy the full SHA
    49afaab View commit details
  5. Copy the full SHA
    c4e30cf View commit details
  6. Merge pull request #72262 from dtzWill/update/sudo-1.8.29

    sudo: 1.8.28 -> 1.8.29
    dtzWill authored Nov 5, 2019
    Copy the full SHA
    4db1cae View commit details
  7. Merge pull request #70352 from wucke13/systemd-importd

    systemd: add systemd-importd
    flokli authored Nov 5, 2019
    Copy the full SHA
    c3566c7 View commit details
Loading