-
-
Notifications
You must be signed in to change notification settings - Fork 105
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs-channels
base: 58fb23f72ad9
head repository: NixOS/nixpkgs-channels
compare: 636a13528287
Commits on Oct 5, 2018
-
nixos manual: releases workflow improvements
- `git push --tags` is too dangerous (pushes all your tags)
Configuration menu - View commit details
-
Copy full SHA for dd82f6c - Browse repository at this point
Copy the full SHA dd82f6cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f43e5f - Browse repository at this point
Copy the full SHA 4f43e5fView commit details
Commits on Sep 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for c09e02a - Browse repository at this point
Copy the full SHA c09e02aView commit details -
remove a few boost overrides optimistically
Build-tested the changes packages. May be more that can be cleaned up.
Configuration menu - View commit details
-
Copy full SHA for e74d575 - Browse repository at this point
Copy the full SHA e74d575View commit details
Commits on Sep 26, 2019
-
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.
Configuration menu - View commit details
-
Copy full SHA for 1601a7f - Browse repository at this point
Copy the full SHA 1601a7fView commit details
Commits on Oct 4, 2019
-
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.
Configuration menu - View commit details
-
Copy full SHA for e8e980e - Browse repository at this point
Copy the full SHA e8e980eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e494de2 - Browse repository at this point
Copy the full SHA e494de2View commit details -
Configuration menu - View commit details
-
Copy full SHA for fadd37b - Browse repository at this point
Copy the full SHA fadd37bView commit details
Commits on Oct 19, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 6a600b1 - Browse repository at this point
Copy the full SHA 6a600b1View commit details
Commits on Oct 20, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 4d33b41 - Browse repository at this point
Copy the full SHA 4d33b41View commit details
Commits on Oct 23, 2019
-
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
Configuration menu - View commit details
-
Copy full SHA for 1d1cbbc - Browse repository at this point
Copy the full SHA 1d1cbbcView commit details
Commits on Oct 27, 2019
-
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.
Configuration menu - View commit details
-
Copy full SHA for d9c5d58 - Browse repository at this point
Copy the full SHA d9c5d58View commit details
Commits on Oct 29, 2019
-
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".
Configuration menu - View commit details
-
Copy full SHA for 640677c - Browse repository at this point
Copy the full SHA 640677cView commit details
Commits on Oct 30, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 384e59a - Browse repository at this point
Copy the full SHA 384e59aView commit details
Commits on Nov 1, 2019
-
common setup hooks: set -u robustness
Explicitly handle `dont*` and friends not being defined.
Configuration menu - View commit details
-
Copy full SHA for 43a9886 - Browse repository at this point
Copy the full SHA 43a9886View commit details -
bintools-wrapper: Don't stop
set -u
-ingSame justification as previous commit.
Configuration menu - View commit details
-
Copy full SHA for 545e751 - Browse repository at this point
Copy the full SHA 545e751View commit details -
Configuration menu - View commit details
-
Copy full SHA for d21a660 - Browse repository at this point
Copy the full SHA d21a660View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3835442 - Browse repository at this point
Copy the full SHA 3835442View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1290e53 - Browse repository at this point
Copy the full SHA 1290e53View commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 2811b03 - Browse repository at this point
Copy the full SHA 2811b03View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7eecf4f - Browse repository at this point
Copy the full SHA 7eecf4fView commit details -
treewide:
*Phase(s)?
variables are optionalIf these aren't defined, the stdenv defaults are used in the `*Phase` case, or no extra phases are done, in the `*Phases` case.
Configuration menu - View commit details
-
Copy full SHA for b7f4bda - Browse repository at this point
Copy the full SHA b7f4bdaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45e5e68 - Browse repository at this point
Copy the full SHA 45e5e68View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for bd61216 - Browse repository at this point
Copy the full SHA bd61216View commit details -
Configuration menu - View commit details
-
Copy full SHA for 373236c - Browse repository at this point
Copy the full SHA 373236cView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 9df7efe - Browse repository at this point
Copy the full SHA 9df7efeView commit details
Commits on Nov 2, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0d691d1 - Browse repository at this point
Copy the full SHA 0d691d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d254966 - Browse repository at this point
Copy the full SHA d254966View commit details -
gnugp: adding option for minimal build
Basically a flavour of gnugpg, which solely containts `bin/gnupg`.
Configuration menu - View commit details
-
Copy full SHA for d1270ac - Browse repository at this point
Copy the full SHA d1270acView commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 29ac226 - Browse repository at this point
Copy the full SHA 29ac226View commit details -
qtbase-setup-hook:
postPhases
may be undefinedMy earlier sed missed this because it already had `{..}`.
Configuration menu - View commit details
-
Copy full SHA for 9b274e2 - Browse repository at this point
Copy the full SHA 9b274e2View commit details
Commits on Nov 3, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 02c3bce - Browse repository at this point
Copy the full SHA 02c3bceView commit details -
nixosTests.systemd-nspawn: add test
This adds a test downloading an nspawn container via http, and ensures sha256sum verification and gpg signature verification work.
Configuration menu - View commit details
-
Copy full SHA for 52ed193 - Browse repository at this point
Copy the full SHA 52ed193View commit details -
Fixes #72330 Upstream MR: https://gitlab.freedesktop.org/NetworkManager/NetworkManager/merge_requests/323
Configuration menu - View commit details
-
Copy full SHA for e88fb2d - Browse repository at this point
Copy the full SHA e88fb2dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d1d3807 - Browse repository at this point
Copy the full SHA d1d3807View commit details -
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.
Configuration menu - View commit details
-
Copy full SHA for 4b63c91 - Browse repository at this point
Copy the full SHA 4b63c91View commit details
Commits on Nov 4, 2019
-
Merge pull request #72745 from alyssais/git-slash
git: drop extraneous sysconfdir trailing slash
Configuration menu - View commit details
-
Copy full SHA for 32e3f4a - Browse repository at this point
Copy the full SHA 32e3f4aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57a9ba0 - Browse repository at this point
Copy the full SHA 57a9ba0View commit details -
Configuration menu - View commit details
-
Copy full SHA for ddc35b1 - Browse repository at this point
Copy the full SHA ddc35b1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a9e548 - Browse repository at this point
Copy the full SHA 0a9e548View commit details
Commits on Nov 5, 2019
-
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.
Configuration menu - View commit details
-
Copy full SHA for c5cf009 - Browse repository at this point
Copy the full SHA c5cf009View commit details -
Merge pull request #72347 from NixOS/bash-no-undef-vars
treewide: `set -u` everywhere
Configuration menu - View commit details
-
Copy full SHA for acd2d19 - Browse repository at this point
Copy the full SHA acd2d19View commit details -
Configuration menu - View commit details
-
Copy full SHA for fae8d26 - Browse repository at this point
Copy the full SHA fae8d26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 49afaab - Browse repository at this point
Copy the full SHA 49afaabView commit details -
Configuration menu - View commit details
-
Copy full SHA for c4e30cf - Browse repository at this point
Copy the full SHA c4e30cfView commit details -
Merge pull request #72262 from dtzWill/update/sudo-1.8.29
sudo: 1.8.28 -> 1.8.29
Configuration menu - View commit details
-
Copy full SHA for 4db1cae - Browse repository at this point
Copy the full SHA 4db1caeView commit details -
Merge pull request #70352 from wucke13/systemd-importd
systemd: add systemd-importd
Configuration menu - View commit details
-
Copy full SHA for c3566c7 - Browse repository at this point
Copy the full SHA c3566c7View commit details -
* Format with nixpkgs-format * Correct license * Explicitly specify patched shebangs * Build in parallel * Drop unnecessary dependencies
Configuration menu - View commit details
-
Copy full SHA for b7b3d3a - Browse repository at this point
Copy the full SHA b7b3d3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 03f7753 - Browse repository at this point
Copy the full SHA 03f7753View commit details -
Configuration menu - View commit details
-
Copy full SHA for 901e851 - Browse repository at this point
Copy the full SHA 901e851View commit details
There are no files selected for viewing