-
-
Notifications
You must be signed in to change notification settings - Fork 15.4k
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs
base: 1d7678190e04
head repository: NixOS/nixpkgs
compare: 141be5a74648
Commits on Apr 18, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0017a06 - Browse repository at this point
Copy the full SHA 0017a06View commit details
Commits on Oct 7, 2019
-
appstream-glib: 0.7.15 -> 0.7.16
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/appstream-glib/versions
Configuration menu - View commit details
-
Copy full SHA for 59b948e - Browse repository at this point
Copy the full SHA 59b948eView commit details
Commits on Oct 21, 2019
-
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/enchant/versions
Configuration menu - View commit details
-
Copy full SHA for 98653a1 - Browse repository at this point
Copy the full SHA 98653a1View commit details
Commits on Nov 6, 2019
-
nixos/dhcpcd: restart dhcpcd if exit hook changed
This change ensures that `dhcpcd.service` is restarted as soon as the exit hook changes. I use this hook to do additional configuration for my network (like setting a route via the given gateway to my WireGuard) and when changing parts of this exit hook I'd expect to get this activated when switching to my new configuration.
Configuration menu - View commit details
-
Copy full SHA for 51d1821 - Browse repository at this point
Copy the full SHA 51d1821View commit details
Commits on Nov 29, 2019
-
nixos/networkd: mark
units
option as internalThe options at `systemd.network` (`links`, `netdevs` and `networks`) are directly mapped to the three different unit types of `systemd-networkd(8)`. However there's also the option `systemd.network.units` which is basically used as a container for generated unit-configs that are linked to `/etc/systemd/networkd`[1]. This should not be exposed to the user as it's unclear whether or not it should be used directly which can be pretty confusing which is why I decided to declare this option as internal (including all sub-options as `internal` doesn't seem to be propagated to submodules). [1] https://github.com/NixOS/nixpkgs/blob/9db75ed88fd87e17ec448ad7a43b62acb4842854/nixos/modules/system/boot/networkd.nix#L933-L937
Configuration menu - View commit details
-
Copy full SHA for 60f2c59 - Browse repository at this point
Copy the full SHA 60f2c59View commit details
Commits on Dec 12, 2019
-
nixos/nixos-option: fix evaluator to render a full submodule entry
When running e.g. `nixos-option users.users.ma27`, the evaluation breaks since `ma27` is the attribute name in `attrsOf (submodule {})`, but not a part of the option tree and therefore breaks with the following errors: ``` error: At 'ma27' in path 'users.users.ma27': Attribute not found An error occurred while looking for attribute names. Are you sure that 'users.users.ma27' exists? ``` This happens since the option evaluator expects that either the option exists or the option is a submodule and the "next" token in the attribute path points to an option (e.g. `users.users.ma27.createHome`). This patch checks in the `Attribute not found` condition if the attribute-path actually exists in the config tree. If that's true, a dummy-attrset is created which contains `{_type = "__nixos-option-submodule-attr";}`, in that case, the entire entry of the submodule will be displayed.
Configuration menu - View commit details
-
Copy full SHA for e0780c5 - Browse repository at this point
Copy the full SHA e0780c5View commit details
Commits on Dec 19, 2019
-
nixos/nixos-option: Show values inside aggregate options uniformly
1. This makes aggregates of submodules (including the very important "nixos-option users.users.<username>" case) behave the same way as any other you-need-to-keep-typing-to-get-to-an-option-leaf (eg: "nixos-option environment"). Before e0780c5: $ nixos-option users.users.root error: At 'root' in path 'users.users.root': Attribute not found An error occurred while looking for attribute names. Are you sure that 'users.users.root' exists? After e0780c5 but before this change, this query just printed out a raw thing, which is behavior that belongs in "nix eval", "nix-instantiate --eval", or "nix repl <<<": $ nixos-option users.users.root { _module = { args = { name = "root"; }; check = true; }; createHome = false; cryptHomeLuks = null; description = "System administrator"; ... After this change: $ nixos-option users.users.root This attribute set contains: createHome cryptHomeLuks description extraGroups group hashedPassword ... 2. For aggregates of other types (not submodules), print out the option that contains them rather than printing an error message. Before: $ nixos-option environment.shellAliases.l error: At 'l' in path 'environment.shellAliases.l': Attribute not found An error occurred while looking for attribute names. Are you sure that 'environment.shellAliases.l' exists? After: $ nixos-option environment.shellAliases.l Note: showing environment.shellAliases instead of environment.shellAliases.l Value: { l = "ls -alh"; ll = "ls -l"; ls = "ls --color=tty"; } ...
Configuration menu - View commit details
-
Copy full SHA for 09ac7cb - Browse repository at this point
Copy the full SHA 09ac7cbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9dd23e8 - Browse repository at this point
Copy the full SHA 9dd23e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for ed51fd0 - Browse repository at this point
Copy the full SHA ed51fd0View commit details
Commits on Dec 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 2fdb7f4 - Browse repository at this point
Copy the full SHA 2fdb7f4View commit details
Commits on Jan 1, 2020
-
Create bma-init
Configuration menu - View commit details
-
Copy full SHA for e5208af - Browse repository at this point
Copy the full SHA e5208afView commit details
Commits on Jan 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 2339cd6 - Browse repository at this point
Copy the full SHA 2339cd6View commit details -
os-prober: add missing lvm2 dependency
Otherwise, os-prober may fail to see LVM partitions.
Configuration menu - View commit details
-
Copy full SHA for f5728ad - Browse repository at this point
Copy the full SHA f5728adView commit details
Commits on Jan 3, 2020
-
os-prober: add missing dmraid dependency
If this is not done, dmraid is likely to not find OSes on RAID.
Configuration menu - View commit details
-
Copy full SHA for 4de6c4d - Browse repository at this point
Copy the full SHA 4de6c4dView commit details
Commits on Jan 6, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 84457be - Browse repository at this point
Copy the full SHA 84457beView commit details -
Configuration menu - View commit details
-
Copy full SHA for 525e296 - Browse repository at this point
Copy the full SHA 525e296View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a71a86 - Browse repository at this point
Copy the full SHA 7a71a86View commit details
Commits on Jan 7, 2020
-
Configuration menu - View commit details
-
Copy full SHA for d1dfbfd - Browse repository at this point
Copy the full SHA d1dfbfdView commit details
Commits on Jan 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 751a7fa - Browse repository at this point
Copy the full SHA 751a7faView commit details -
kdeFrameworks.extra-cmake-modules: fix patch
(cherry picked from commit 63fffe7)
Configuration menu - View commit details
-
Copy full SHA for ed3ac21 - Browse repository at this point
Copy the full SHA ed3ac21View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c11c6f - Browse repository at this point
Copy the full SHA 2c11c6fView commit details
Commits on Jan 12, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 621bb74 - Browse repository at this point
Copy the full SHA 621bb74View commit details
Commits on Jan 14, 2020
-
Revert "Re-revert "awscli: Get rid of runtime -dev dependencies""
This reverts commit a1eacb9. Adding dev outputs to python packages means they can't be included in a Python environment created with python3.withPackages, because makePythonPath will include the dev output, which is empty apart from nix-support, rather than the out output, which contains all the Python code.
Configuration menu - View commit details
-
Copy full SHA for 76af9e8 - Browse repository at this point
Copy the full SHA 76af9e8View commit details
Commits on Jan 15, 2020
-
Merge pull request #76225 from r-ryantm/auto-update/cppunit
cppunit: 1.14.0 -> 1.15.0
Configuration menu - View commit details
-
Copy full SHA for f5e30e2 - Browse repository at this point
Copy the full SHA f5e30e2View commit details -
editline: patch for improved handling of multiline input
Minor but observable in `nix repl` when history contains expression that wraps and one that doesn't and using up/down arrows to toggle between (for example).
Configuration menu - View commit details
-
Copy full SHA for 0285a20 - Browse repository at this point
Copy the full SHA 0285a20View commit details -
volth committed
Jan 15, 2020 Configuration menu - View commit details
-
Copy full SHA for 619d52a - Browse repository at this point
Copy the full SHA 619d52aView commit details -
runInLinuxVM, test-driver: pass host's cpu type to guest vm
'kvm64' is the most generic CPU, which does not support SSE4.2, AVX and other ISA extentions.
volth committedJan 15, 2020 1Configuration menu - View commit details
-
Copy full SHA for 2bd296a - Browse repository at this point
Copy the full SHA 2bd296aView commit details
Commits on Jan 16, 2020
-
Merge pull request #77121 from r-ryantm/auto-update/libinput
libinput: 1.14.3 -> 1.15.0
Configuration menu - View commit details
-
Copy full SHA for e881d0c - Browse repository at this point
Copy the full SHA e881d0cView commit details -
Merge pull request #77352 from dtzWill/update/kdeframeworks-5.65
kdeFrameworks: 5.64.0 -> 5.65.0
Configuration menu - View commit details
-
Copy full SHA for 6b5edcb - Browse repository at this point
Copy the full SHA 6b5edcbView commit details -
Configuration menu - View commit details
-
Copy full SHA for f5742d6 - Browse repository at this point
Copy the full SHA f5742d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4c55d7d - Browse repository at this point
Copy the full SHA 4c55d7dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 213da73 - Browse repository at this point
Copy the full SHA 213da73View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5d753c6 - Browse repository at this point
Copy the full SHA 5d753c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f235ca - Browse repository at this point
Copy the full SHA 4f235caView commit details -
clutter-gst: add dev output for propagation
Also remove obsolete `let .. in ..`
Configuration menu - View commit details
-
Copy full SHA for 5bec4f2 - Browse repository at this point
Copy the full SHA 5bec4f2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e6a290 - Browse repository at this point
Copy the full SHA 0e6a290View commit details -
Merge pull request #77835 from hedning/reduce-closure
Reduce closure gnome-shell closure
Configuration menu - View commit details
-
Copy full SHA for c8c87f6 - Browse repository at this point
Copy the full SHA c8c87f6View commit details -
Configuration menu - View commit details
-
Copy full SHA for b495818 - Browse repository at this point
Copy the full SHA b495818View commit details -
Upstream announcement: https://lists.gnu.org/archive/html/info-gnu/2020-01/msg00002.html For the lazy: > * Noteworthy changes in release 4.8 (2020-01-14) [stable] > > ** Bug fixes > > "sed -i" now creates temporary files with correct umask (limited to u=rwx). > Previously sed would incorrectly set umask on temporary files, resulting > in problems under certain fuse-like file systems. > [bug introduced in sed 4.2.1] > > ** Release > > distribute gzip-compressed tarballs once again > > ** Improvements > > a year's worth of gnulib development, including improved DFA performance Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Configuration menu - View commit details
-
Copy full SHA for df4ec23 - Browse repository at this point
Copy the full SHA df4ec23View commit details -
Merge pull request #77686 from alyssais/urllib3
Revert "Re-revert "awscli: Get rid of runtime -dev dependencies""
Configuration menu - View commit details
-
Copy full SHA for aa489ad - Browse repository at this point
Copy the full SHA aa489adView commit details
Commits on Jan 17, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4b7c0ce - Browse repository at this point
Copy the full SHA 4b7c0ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ca5fed - Browse repository at this point
Copy the full SHA 3ca5fedView commit details
Commits on Jan 18, 2020
-
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libdvdnav/versions
Configuration menu - View commit details
-
Copy full SHA for ba889bd - Browse repository at this point
Copy the full SHA ba889bdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 78b34b5 - Browse repository at this point
Copy the full SHA 78b34b5View commit details -
Merge pull request #77186 from r-ryantm/auto-update/poppler-glib
poppler: 0.83.0 -> 0.84.0
Configuration menu - View commit details
-
Copy full SHA for 5b78ca4 - Browse repository at this point
Copy the full SHA 5b78ca4View commit details
Commits on Jan 20, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 61c0185 - Browse repository at this point
Copy the full SHA 61c0185View commit details -
Merge pull request #77017 from r-ryantm/auto-update/cups
cups: 2.3.0 -> 2.3.1
Configuration menu - View commit details
-
Copy full SHA for 7ebadfe - Browse repository at this point
Copy the full SHA 7ebadfeView commit details -
libvpx: add patches for CVE-2019-9232, CVE-2019-9325, CVE-2019-9371, C…
…VE-2019-9433 backports sourced from debian package 1.7.0-3+deb10u1, included in-repo as file is not available on sources.debian.org or salsa.debian.org (cherry picked from commit 9bcc760)
Configuration menu - View commit details
-
Copy full SHA for 4a0f54c - Browse repository at this point
Copy the full SHA 4a0f54cView commit details
Commits on Jan 21, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 674efe4 - Browse repository at this point
Copy the full SHA 674efe4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 11a2d39 - Browse repository at this point
Copy the full SHA 11a2d39View commit details
There are no files selected for viewing