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: 8634c3b61990
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: 1c6bdbc766e9
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
13
contributors
Commits on Jun 22, 2019
-
The vulnerability seems quite serious. It isn't practical to use fetchpatch here due to bootstrapping, so I just committed the small patch file. (cherry picked from commit 4fd6cb7)
Configuration menu - View commit details
-
Copy full SHA for d7366bb - Browse repository at this point
Copy the full SHA d7366bbView commit details -
Configuration menu - View commit details
-
Copy full SHA for b41ca72 - Browse repository at this point
Copy the full SHA b41ca72View commit details
Commits on Jun 24, 2019
-
nixos: add hardware/network/intel-2200bg.nix to module-list
this is referenced by nixos-generate-config.pl. See NixOS/nixpkgs#63091 for more discussion. (cherry picked from commit 8768d1c)
Configuration menu - View commit details
-
Copy full SHA for d5a3e5f - Browse repository at this point
Copy the full SHA d5a3e5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 47d7882 - Browse repository at this point
Copy the full SHA 47d7882View commit details -
Configuration menu - View commit details
-
Copy full SHA for c3446ff - Browse repository at this point
Copy the full SHA c3446ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 53346d7 - Browse repository at this point
Copy the full SHA 53346d7View commit details -
mergeInputs is now simply defined in terms of `concatLists` and `catAttrs` instead of a more complicated `foldr`. Note that the order of PATH has also changed. For example running the following with nix-shell: let pkgs = import <nixpkgs> {}; shell1 = pkgs.mkShell { buildInputs = [ pkgs.htop ]; }; shell2 = pkgs.mkShell { buildInputs = [ pkgs.hello ]; }; shell3 = pkgs.mkShell { inputsFrom = [ shell1 shell2 ]; buildInputs = [ pkgs.tree ]; }; in shell3 Results in the following PATH: $ echo $PATH ... /nix/store/yifq4bikf7m07160bpia7z48ciqddbfi-tree-1.8.0/bin: /nix/store/vhxqk81234ivqw1a7j200a1c69k8mywi-htop-2.2.0/bin: /nix/store/n9vm3m58y1n3rg3mlll17wanc9hln58k-hello-2.10/bin ... Previously the order was: /nix/store/n9vm3m58y1n3rg3mlll17wanc9hln58k-hello-2.10/bin /nix/store/vhxqk81234ivqw1a7j200a1c69k8mywi-htop-2.2.0/bin: /nix/store/yifq4bikf7m07160bpia7z48ciqddbfi-tree-1.8.0/bin: I think the new order makes more sense because it allows to override the PATH in the outermost mkShell. (cherry picked from commit cee3573)
Configuration menu - View commit details
-
Copy full SHA for e65b6ff - Browse repository at this point
Copy the full SHA e65b6ffView commit details -
Running the following expression with nix-shell: let pkgs = import <nixpkgs> {}; shell1 = pkgs.mkShell { shellHook = '' echo shell1 ''; }; shell2 = pkgs.mkShell { shellHook = '' echo shell2 ''; }; shell3 = pkgs.mkShell { inputsFrom = [ shell1 shell2 ]; shellHook = '' echo shell3 ''; }; in shell3 Will now results in: shell2 shell1 shell3 Note that packages in the front of inputsFrom have precedence over packages in the back. The outermost mkShell has precedence over all. (cherry picked from commit 76ef802)
Configuration menu - View commit details
-
Copy full SHA for 0004631 - Browse repository at this point
Copy the full SHA 0004631View commit details -
Merge pull request #63718 from basvandijk/composable-mkshell-shellHoo…
…k-release-19.03 Backport "Improve composability of mkShell" to release-19.03
Configuration menu - View commit details
-
Copy full SHA for 13781ee - Browse repository at this point
Copy the full SHA 13781eeView commit details -
Merge #63484: linux_5_0: remove
(cherry picked from commit 57b1f53)
Configuration menu - View commit details
-
Copy full SHA for a383c37 - Browse repository at this point
Copy the full SHA a383c37View commit details -
(cherry picked from commit 5a21a52) Signed-off-by: Domen Kožar <domen@dev.si>
Configuration menu - View commit details
-
Copy full SHA for 01966e8 - Browse repository at this point
Copy the full SHA 01966e8View commit details -
(cherry picked from commit c0abf3c)
Configuration menu - View commit details
-
Copy full SHA for 531c448 - Browse repository at this point
Copy the full SHA 531c448View commit details -
Configuration menu - View commit details
-
Copy full SHA for cb62916 - Browse repository at this point
Copy the full SHA cb62916View commit details -
journalwatch: fix pytest checks
(cherry picked from commit ee20ba83144551497fcecedca277f5de32e81c0c) Reason: The more strict dependency handling of buildPythonPackage in 19.03 uncovered the error of having pytest as buildInput instead of checkInput, which leads to a broken package on 19.03.
Configuration menu - View commit details
-
Copy full SHA for dbccbd5 - Browse repository at this point
Copy the full SHA dbccbd5View commit details -
Merge pull request #63742 from florianjacob/backport-journalwatch
journalwatch: fix pytest checks
Configuration menu - View commit details
-
Copy full SHA for fb8abc9 - Browse repository at this point
Copy the full SHA fb8abc9View commit details
Commits on Jun 25, 2019
-
rambox: 0.6.6 -> 0.6.9 (19.03 backport) (#63737)
rambox: 0.6.6 -> 0.6.9 (19.03 backport)
Configuration menu - View commit details
-
Copy full SHA for 1dafc1e - Browse repository at this point
Copy the full SHA 1dafc1eView commit details -
duplicati: allow changing the user
(cherry picked from commit e8916cc) Signed-off-by: Domen Kožar <domen@dev.si>
Configuration menu - View commit details
-
Copy full SHA for 0c6161e - Browse repository at this point
Copy the full SHA 0c6161eView commit details -
Configuration menu - View commit details
-
Copy full SHA for c18d73f - Browse repository at this point
Copy the full SHA c18d73fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 066bf9f - Browse repository at this point
Copy the full SHA 066bf9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 20c15d4 - Browse repository at this point
Copy the full SHA 20c15d4View commit details
Commits on Jun 26, 2019
-
(cherry picked from commit d0683d4)
Configuration menu - View commit details
-
Copy full SHA for 1c6bdbc - Browse repository at this point
Copy the full SHA 1c6bdbcView commit details
There are no files selected for viewing
This file was deleted.