This repository was archived by the owner on Apr 12, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 105
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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: 1b1be29bf827
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5d03cce7ed7c
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
58
contributors
Commits on Feb 23, 2018
-
monkeysphere: wrap the monkeysphere executable with the necessary cry…
…pto libraries for ssh-proxycommand
Configuration menu - View commit details
-
Copy full SHA for 8c5da27 - Browse repository at this point
Copy the full SHA 8c5da27View commit details
Commits on Feb 27, 2018
-
Semi-automatic update. These checks were performed: - built on NixOS - found 5.0.0 with grep in /nix/store/sxxwa9mma9933vxb4w3d2szxjqx5w773-rtaudio-5.0.0 - found 5.0.0 in filename of file in /nix/store/sxxwa9mma9933vxb4w3d2szxjqx5w773-rtaudio-5.0.0 cc "@magnetophon"
Configuration menu - View commit details
-
Copy full SHA for d37b43f - Browse repository at this point
Copy the full SHA d37b43fView commit details
Commits on Mar 8, 2018
-
Semi-automatic update. These checks were done: - built on NixOS - ran `/nix/store/ba54ymdab4y2jcxwbmn71sm698cy1wik-gperftools-2.6.3/bin/pprof --help` got 0 exit code - ran `/nix/store/ba54ymdab4y2jcxwbmn71sm698cy1wik-gperftools-2.6.3/bin/pprof --help` and found version 2.6.3 - found 2.6.3 with grep in /nix/store/ba54ymdab4y2jcxwbmn71sm698cy1wik-gperftools-2.6.3 - found 2.6.3 in filename of file in /nix/store/ba54ymdab4y2jcxwbmn71sm698cy1wik-gperftools-2.6.3
Configuration menu - View commit details
-
Copy full SHA for 88d34b1 - Browse repository at this point
Copy the full SHA 88d34b1View commit details
Commits on Apr 4, 2018
-
Configuration menu - View commit details
-
Copy full SHA for a683d2c - Browse repository at this point
Copy the full SHA a683d2cView commit details
Commits on Apr 8, 2018
-
calibre: remove unnecessary patch
In addition to bumping the version, remove a patch which made self.update_checker None. This caused errors that showed on the terminal after closing Calibre (if it was launched from a terminal).
Configuration menu - View commit details
-
Copy full SHA for cc1ab74 - Browse repository at this point
Copy the full SHA cc1ab74View commit details
Commits on Apr 11, 2018
-
Configuration menu - View commit details
-
Copy full SHA for a45dad9 - Browse repository at this point
Copy the full SHA a45dad9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 42a8459 - Browse repository at this point
Copy the full SHA 42a8459View commit details
Commits on Apr 16, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 7292c5a - Browse repository at this point
Copy the full SHA 7292c5aView commit details
Commits on Apr 18, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 6bf47e0 - Browse repository at this point
Copy the full SHA 6bf47e0View commit details
Commits on Apr 22, 2018
-
Configuration menu - View commit details
-
Copy full SHA for d71a853 - Browse repository at this point
Copy the full SHA d71a853View commit details -
nixos/systemd-networkd: wait for udev to settle
... to avoid race condition between udevd renaming and networkd configuring interfaces (39069)
Configuration menu - View commit details
-
Copy full SHA for 236703f - Browse repository at this point
Copy the full SHA 236703fView commit details
Commits on Apr 23, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 8647df2 - Browse repository at this point
Copy the full SHA 8647df2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e5f82b - Browse repository at this point
Copy the full SHA 0e5f82bView commit details
Commits on Apr 24, 2018
-
Configuration menu - View commit details
-
Copy full SHA for cdfa85c - Browse repository at this point
Copy the full SHA cdfa85cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 82a9df7 - Browse repository at this point
Copy the full SHA 82a9df7View commit details
Commits on Apr 25, 2018
-
Following legacy packing conventions, `isArm` was defined just for 32-bit ARM instruction set. This is confusing to non packagers though, because Aarch64 is an ARM instruction set. The official ARM overview for ARMv8[1] is surprisingly not confusing, given the overall state of affairs for ARM naming conventions, and offers us a solution. It divides the nomenclature into three levels: ``` ISA: ARMv8 {-A, -R, -M} / \ Mode: Aarch32 Aarch64 | / \ Encoding: A64 A32 T32 ``` At the top is the overall v8 instruction set archicture. Second are the two modes, defined by bitwidth but differing in other semantics too, and buttom are the encodings, (hopefully?) isomorphic if they encode the same mode. The 32 bit encodings are mostly backwards compatible with previous non-Thumb and Thumb encodings, and if so we can pun the mode names to instead mean "sets of compatable or isomorphic encodings", and then voilà we have nice names for 32-bit and 64-bit arm instruction sets which do not use the word ARM so as to not confused either laymen or experienced ARM packages. [1]: https://developer.arm.com/products/architecture/a-profile (cherry picked from commit ba52ae5)
Configuration menu - View commit details
-
Copy full SHA for b9acfb4 - Browse repository at this point
Copy the full SHA b9acfb4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3e3b39f - Browse repository at this point
Copy the full SHA 3e3b39fView commit details
Commits on Apr 26, 2018
-
qemu: workaround 'struct sysinfo' conflict musl <--> linux
Most everyone using musl patches the linux headers instead, but various software uses a local workaround like the one added in this commit (psutils, for example). It's not obvious to me which project has the "bug", and I'm reluctant to even propose modifying our headers without clear answer on the issue. Also, modifying those headers triggers rebuild-all-the-things. Hopefully upstream projects sort this out, in the meantime adding this define is a bit of a kludge but does the job. ------- For the curious, the patch usually is something like this: https://patchwork.kernel.org/patch/3833241/ Here's an updated version that also ensures kernel users get the sysinfo struct as expected too: https://raw.githubusercontent.com/openwrt/openwrt/e3c43ade0bae9491aeea50fa361e846bb5002dc0/target/linux/generic/pending-4.14/270-uapi-kernel.h-glibc-specific-inclusion-of-sysinfo.h.patch (cherry picked from commit dtzWill/nixpkgs@91b5f5a)
Configuration menu - View commit details
-
Copy full SHA for 3d4aa7e - Browse repository at this point
Copy the full SHA 3d4aa7eView commit details -
qemu-riscv: remove, obsolete with qemu 2.12
upstream qemu 2.12 includes riscv support
Configuration menu - View commit details
-
Copy full SHA for 00610fe - Browse repository at this point
Copy the full SHA 00610feView commit details -
Configuration menu - View commit details
-
Copy full SHA for a026242 - Browse repository at this point
Copy the full SHA a026242View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4539f1f - Browse repository at this point
Copy the full SHA 4539f1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for e521bad - Browse repository at this point
Copy the full SHA e521badView commit details -
Configuration menu - View commit details
-
Copy full SHA for 968e8a1 - Browse repository at this point
Copy the full SHA 968e8a1View commit details
Commits on Apr 27, 2018
-
Configuration menu - View commit details
-
Copy full SHA for ddc2359 - Browse repository at this point
Copy the full SHA ddc2359View commit details -
Configuration menu - View commit details
-
Copy full SHA for 73d5006 - Browse repository at this point
Copy the full SHA 73d5006View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ee2db1 - Browse repository at this point
Copy the full SHA 3ee2db1View commit details -
Configuration menu - View commit details
-
Copy full SHA for e2fb669 - Browse repository at this point
Copy the full SHA e2fb669View commit details
Commits on Apr 28, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 99b8d10 - Browse repository at this point
Copy the full SHA 99b8d10View commit details -
Configuration menu - View commit details
-
Copy full SHA for 949bb98 - Browse repository at this point
Copy the full SHA 949bb98View commit details -
Configuration menu - View commit details
-
Copy full SHA for c65000a - Browse repository at this point
Copy the full SHA c65000aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c3b822 - Browse repository at this point
Copy the full SHA 3c3b822View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6bc1939 - Browse repository at this point
Copy the full SHA 6bc1939View commit details -
Configuration menu - View commit details
-
Copy full SHA for 004111c - Browse repository at this point
Copy the full SHA 004111cView commit details -
Configuration menu - View commit details
-
Copy full SHA for d11f290 - Browse repository at this point
Copy the full SHA d11f290View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5f419f3 - Browse repository at this point
Copy the full SHA 5f419f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for e375bd4 - Browse repository at this point
Copy the full SHA e375bd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ebb162 - Browse repository at this point
Copy the full SHA 3ebb162View commit details -
Configuration menu - View commit details
-
Copy full SHA for 59f8b1e - Browse repository at this point
Copy the full SHA 59f8b1eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0ff0d13 - Browse repository at this point
Copy the full SHA 0ff0d13View commit details -
Configuration menu - View commit details
-
Copy full SHA for a77dc21 - Browse repository at this point
Copy the full SHA a77dc21View commit details -
Configuration menu - View commit details
-
Copy full SHA for 74fcb1c - Browse repository at this point
Copy the full SHA 74fcb1cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f2b67d - Browse repository at this point
Copy the full SHA 9f2b67dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f66cdc7 - Browse repository at this point
Copy the full SHA f66cdc7View commit details -
lib: deduplicate version/suffix references
The logic regarding the generated `.version-suffix` file is already defined in `lib/trivial.nix` and shouldn't be duplicated in `nixos/version`.
Configuration menu - View commit details
-
Copy full SHA for 3990928 - Browse repository at this point
Copy the full SHA 3990928View commit details -
treewide: rename version attributes
As suggested in NixOS/nixpkgs#39416 (comment) the versioning attributes in `lib` should be consistent to `nixos/version` which implicates the following changes: * `lib.trivial.version` -> `lib.trivial.release` * `lib.trivial.suffix` -> `lib.trivial.versionSuffix` * `lib.nixpkgsVersion` -> `lib.version` As `lib.nixpkgsVersion` is referenced several times in `NixOS/nixpkgs`, `NixOS/nix` and probably several user's setups. As the rename will cause a notable impact it's better to keep `lib.nixpkgsVersion` as alias with a warning yielded by `builtins.trace`.
Configuration menu - View commit details
-
Copy full SHA for 9274ea3 - Browse repository at this point
Copy the full SHA 9274ea3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba1b2ef - Browse repository at this point
Copy the full SHA ba1b2efView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4797fe8 - Browse repository at this point
Copy the full SHA 4797fe8View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2adf20 - Browse repository at this point
Copy the full SHA f2adf20View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1526830 - Browse repository at this point
Copy the full SHA 1526830View commit details -
Configuration menu - View commit details
-
Copy full SHA for 058df14 - Browse repository at this point
Copy the full SHA 058df14View commit details
There are no files selected for viewing