-
-
Notifications
You must be signed in to change notification settings - Fork 104
Comparing changes
Open a pull request
base repository: NixOS/nixpkgs-channels
base: 7c73f53d836a
head repository: NixOS/nixpkgs-channels
compare: c26dbef830a2
Commits on Jul 25, 2018
-
weechat: seperate weechat-unwrapped from wrapper
If I have a patch I want to apply to weechat, I can't do that with overrideAttrs like I can with almost every other package, because that only applies to the wrapper derivation. For other wrapped packages, one can usually call the wrapper with any version of the derivation, but the weechat derivation didn't expose a wrapper creation function. Taking inspiration from other packages, particularly Firefox, I extracted the wrapper into its own function, made the default weechat derivation use that, and added weechat-unwrapped. Now I can add my custom patch like this: (wrapWeechat (weechat-unwrapped.overrideAttrs (oldAttrs: { patches = [ (fetchpatch { url = "https://github.com/weechat/weechat/commit/55767f5f116db3cb56cf85f52aa80feff45b6abf.patch?full_index=1"; sha256 = "1pkcdsby57diqds1y5hhl0fr4i8j0zax32jb0gqd36siki3lza3d"; }) ]; })) { configure = { availablePlugins, ... }: { plugins = with availablePlugins; [ (python.withPackages (packages: with packages; [ potr websocket_client ])) ]; }; }) There is a small backward incompatibility here: previously, it was possible to get an unwrapped weechat like this: weechat.override { configure = null; } This didn't seem too important to keep around since it was also possible to get an unwrapped weechat in a much more obvious way: weechat.unwrapped I could probably make it so that the first way still worked, if that behavior turns out to really have been important.
Configuration menu - View commit details
-
Copy full SHA for 8887e1f - Browse repository at this point
Copy the full SHA 8887e1fView commit details
Commits on Oct 29, 2018
-
nixos/containers: don't create veths if not configured
Previously, setting "privateNetwork = true" without specifying host and local addresses would create unconfigured interfaces: ve-$INSTANCE on the host and eth0 inside the container. These changes is rebased part of the original PR #3021.
Configuration menu - View commit details
-
Copy full SHA for 6d4b02d - Browse repository at this point
Copy the full SHA 6d4b02dView commit details
Commits on Nov 16, 2018
-
Configuration menu - View commit details
-
Copy full SHA for f1de24f - Browse repository at this point
Copy the full SHA f1de24fView commit details
Commits on Nov 22, 2018
-
Pierre-Étienne Meunier committed
Nov 22, 2018 Configuration menu - View commit details
-
Copy full SHA for 0e8332c - Browse repository at this point
Copy the full SHA 0e8332cView commit details
Commits on Nov 23, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 4cb63dc - Browse repository at this point
Copy the full SHA 4cb63dcView commit details -
Configuration menu - View commit details
-
Copy full SHA for c116de9 - Browse repository at this point
Copy the full SHA c116de9View commit details
Commits on Nov 26, 2018
-
appimage-run: fix missing libatk-bridge-2.0.so.0
Fix `error while loading shared libraries: libatk-bridge-2.0.so.0` when trying to run Beaker Browser >= 0.8.0
Configuration menu - View commit details
-
Copy full SHA for e7fd32d - Browse repository at this point
Copy the full SHA e7fd32dView commit details
Commits on Nov 27, 2018
-
Pierre-Étienne Meunier committed
Nov 27, 2018 Configuration menu - View commit details
-
Copy full SHA for 3083fa2 - Browse repository at this point
Copy the full SHA 3083fa2View commit details
Commits on Nov 29, 2018
-
Configuration menu - View commit details
-
Copy full SHA for db2cebb - Browse repository at this point
Copy the full SHA db2cebbView commit details -
balsa: use gtkspell3 instead of enchant
The build fails with enchant-1.6.1 and enchant2. use gtkspell instead.
Configuration menu - View commit details
-
Copy full SHA for 99512af - Browse repository at this point
Copy the full SHA 99512afView commit details
Commits on Nov 30, 2018
-
anki: 2.1.6-beta1 -> 2.1.6-beta2, fix python 3.7
With recent switch to python 3.7 this was no longer building. Upstream PR with the same patch: ankitects/anki#266
Configuration menu - View commit details
-
Copy full SHA for 8d61b9d - Browse repository at this point
Copy the full SHA 8d61b9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc21737 - Browse repository at this point
Copy the full SHA dc21737View commit details
Commits on Dec 1, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 19bffee - Browse repository at this point
Copy the full SHA 19bffeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7905c38 - Browse repository at this point
Copy the full SHA 7905c38View commit details -
Configuration menu - View commit details
-
Copy full SHA for c220fe8 - Browse repository at this point
Copy the full SHA c220fe8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2256273 - Browse repository at this point
Copy the full SHA 2256273View commit details -
Configuration menu - View commit details
-
Copy full SHA for 35f6d1c - Browse repository at this point
Copy the full SHA 35f6d1cView commit details
Commits on Dec 2, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 47f5771 - Browse repository at this point
Copy the full SHA 47f5771View commit details -
Configuration menu - View commit details
-
Copy full SHA for 595c1e0 - Browse repository at this point
Copy the full SHA 595c1e0View commit details -
nixos/containers: Add assertion for container name length
When privateNetwork is enabled, currently the container's interface name is derived from the container name. However, there's a hard limit on the size of interface names. To avoid conflicts and other issues, we set a limit on the container name when privateNetwork is enabled. Fixes #38509
Configuration menu - View commit details
-
Copy full SHA for bf10282 - Browse repository at this point
Copy the full SHA bf10282View commit details -
all-packages.nix: Alias self to res, deprecating self
For historical reasons, self was ill-named. This removes its usages from all-packages.nix and provides a deprecation message for those who use a patched Nixpkgs. Some packages seem to depend on the peculiarities of res, as can be seen by making res into an alias of pkgs (normally "self"). The super variable doesn't have all that is needed. Therefore the simple fix is not guaranteed to work and as such, usages of res need to be changed to pkgs or super, case by case.
Configuration menu - View commit details
-
Copy full SHA for 22aac3b - Browse repository at this point
Copy the full SHA 22aac3bView commit details -
Update bash completion method as described in https://www.vaultproject.io/docs/commands/#autocompletion
Configuration menu - View commit details
-
Copy full SHA for 15383e8 - Browse repository at this point
Copy the full SHA 15383e8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6c22b5a - Browse repository at this point
Copy the full SHA 6c22b5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0a91d70 - Browse repository at this point
Copy the full SHA 0a91d70View commit details
Commits on Dec 3, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 7369c3a - Browse repository at this point
Copy the full SHA 7369c3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 70092fe - Browse repository at this point
Copy the full SHA 70092feView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5058d36 - Browse repository at this point
Copy the full SHA 5058d36View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9572ebe - Browse repository at this point
Copy the full SHA 9572ebeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 92cba3a - Browse repository at this point
Copy the full SHA 92cba3aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3d444cf - Browse repository at this point
Copy the full SHA 3d444cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for e59970e - Browse repository at this point
Copy the full SHA e59970eView commit details -
Merge pull request #51424 from marsam/feature/update-pyre
pyre: 0.0.17 -> 0.0.18
Configuration menu - View commit details
-
Copy full SHA for 60ede4d - Browse repository at this point
Copy the full SHA 60ede4dView commit details -
- use nix build instead of nix-build - writes per-build log in the current working directory - symlinks the builds in the current working directory - detects & deduplicates build aliases - markdown reports - filter builds by regex - generate nix expression files that can be build by the user
Configuration menu - View commit details
-
Copy full SHA for 53f1ffa - Browse repository at this point
Copy the full SHA 53f1ffaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4cde69a - Browse repository at this point
Copy the full SHA 4cde69aView commit details -
Merge pull request #51411 from jfrankenau/update-ntfy
ntfy: 2.6.0 -> 2.7.0
Configuration menu - View commit details
-
Copy full SHA for e869896 - Browse repository at this point
Copy the full SHA e869896View commit details -
Configuration menu - View commit details
-
Copy full SHA for de23f0b - Browse repository at this point
Copy the full SHA de23f0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 57ec5d0 - Browse repository at this point
Copy the full SHA 57ec5d0View commit details -
Merge pull request #51418 from symphorien/dsniff
dsniff: init at 2.4b1
Configuration menu - View commit details
-
Copy full SHA for 34efe45 - Browse repository at this point
Copy the full SHA 34efe45View commit details -
Configuration menu - View commit details
-
Copy full SHA for d59498f - Browse repository at this point
Copy the full SHA d59498fView commit details -
Merge pull request #51434 from Mic92/nix-review
nix-review: 0.6.1 -> 1.0.1
Configuration menu - View commit details
-
Copy full SHA for 01d864c - Browse repository at this point
Copy the full SHA 01d864cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3b2bf76 - Browse repository at this point
Copy the full SHA 3b2bf76View commit details -
Merge pull request #51358 from ivan/libtorrent-1.1.11
libtorrentRasterbar: 1.1.10 -> 1.1.11
Configuration menu - View commit details
-
Copy full SHA for 5198a4c - Browse repository at this point
Copy the full SHA 5198a4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for ee1f6e2 - Browse repository at this point
Copy the full SHA ee1f6e2View commit details -
nvidia_legacy_340: Remove unneeded/failing patch
The patch is not applying and no longer needed after upgrade in 045575e. Now the same result is achieved by the following lines in the driver package itself: #if defined(NV_DRM_LEGACY_PCI_INIT_PRESENT) #define nv_drm_pci_init drm_legacy_pci_init #define nv_drm_pci_exit drm_legacy_pci_exit #else #define nv_drm_pci_init drm_pci_init #define nv_drm_pci_exit drm_pci_exit #endif
Configuration menu - View commit details
-
Copy full SHA for caed71e - Browse repository at this point
Copy the full SHA caed71eView commit details -
Merge pull request #50936 from tathougies/travis/dhcpcd-runtime-shell
dhcpcd: Use runtimeShell in dhcpcd-run-hooks
Configuration menu - View commit details
-
Copy full SHA for 357732e - Browse repository at this point
Copy the full SHA 357732eView commit details -
Merge pull request #50452 from P-E-Meunier/carnix-fix
Rust build-support: fixing a compilation error in some crates
Configuration menu - View commit details
-
Copy full SHA for fc459de - Browse repository at this point
Copy the full SHA fc459deView commit details -
jpeginfo prints information and tests integrity of JPEG/JFIF files.
Configuration menu - View commit details
-
Copy full SHA for 84a2463 - Browse repository at this point
Copy the full SHA 84a2463View commit details -
nixos/jenkins-job-builder: stop reloadScript on error
Currently there are two calls to curl in the reloadScript, neither which check for errors. If something is misconfigured (like wrong authToken), the only trace that something wrong happened is this log message: Asking Jenkins to reload config <h1>Bad Message 400</h1><pre>reason: Illegal character VCHAR='<'</pre> The service isn't marked as failed, so it's easy to miss. Fix it by passing --fail to curl. While at it: * Add $curl_opts and $jenkins_url variables to keep the curl command lines DRY. * Add --show-error to curl to show short error message explanation when things go wrong (like HTTP 401 error). * Lower-case the $CRUMB variable as upper case is for exported environment variables. The new behaviour, when having wrong accessToken: Asking Jenkins to reload config curl: (22) The requested URL returned error: 401 And the service is clearly marked as failed in `systemctl --failed`.
Configuration menu - View commit details
-
Copy full SHA for 8ebfd5c - Browse repository at this point
Copy the full SHA 8ebfd5cView commit details -
nixos/jenkins-job-builder: add accessTokenFile option
The new option allows storing the secret access token outside the world readable Nix store.
Configuration menu - View commit details
-
Copy full SHA for bb94d41 - Browse repository at this point
Copy the full SHA bb94d41View commit details -
Merge pull request #51446 from rvolosatovs/update/vim-plugins
vimPlugins: update
Configuration menu - View commit details
-
Copy full SHA for 20f3c94 - Browse repository at this point
Copy the full SHA 20f3c94View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 7c73f53d836a...c26dbef830a2