Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

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: 0ec8c3bb12a9
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e1ce60ae7ae5
Choose a head ref
  • 12 commits
  • 9 files changed
  • 6 contributors

Commits on Dec 22, 2019

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    f43d112 View commit details

Commits on Jan 4, 2020

  1. Fix example for xkbOptions

    ###### Motivation for this change
    With space between two options, multiple options just don't work
    Looks like xkbOptions then used for generation of xorg.conf.d/00-keyboard.conf.
    kbd's man says XkbOptions must be comma-separated without spaces.
    https://linux.die.net/man/4/kbd
    
    ###### Things done
    
    <!-- Please check what applies. Note that these are not hard requirements but merely serve as information for reviewers. -->
    
    - [ ] Tested using sandboxing ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS, or option `sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file) on non-NixOS linux)
    - Built on platform(s)
       - [ ] NixOS
       - [ ] macOS
       - [ ] other Linux distributions
    - [ ] Tested via one or more NixOS test(s) if existing and applicable for the change (look inside [nixos/tests](https://github.com/NixOS/nixpkgs/blob/master/nixos/tests))
    - [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nixpkgs-review --run "nixpkgs-review wip"`
    - [ ] Tested execution of all binary files (usually in `./result/bin/`)
    - [ ] Determined the impact on package closure size (by running `nix path-info -S` before and after)
    - [ ] Ensured that relevant documentation is up to date
    - [ ] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md).
    
    ###### Notify maintainers
    
    cc @
    juliancoffee authored Jan 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    73b38ff View commit details
  2. Merge pull request #1 from juliancoffee/juliancoffee-patch-1

    Fix example for xkbOptions
    juliancoffee authored Jan 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    5851c9c View commit details

Commits on Jan 5, 2020

  1. Copy the full SHA
    1b8794e View commit details
  2. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    0afc845 View commit details
  3. linux: 5.4.7 -> 5.4.8

    NeQuissimus committed Jan 5, 2020

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    af5f1eb View commit details
  4. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    0ff48f4 View commit details
  5. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    NeQuissimus Tim Steinbach
    Copy the full SHA
    7b9da94 View commit details
  6. ISSUE_TEMPLATE: 'nix run' -> 'nix-shell -p'

    'nix run' is an experimental command.
    edolstra committed Jan 5, 2020
    Copy the full SHA
    1d59cdc View commit details
  7. Merge pull request #76993 from mildlyincompetent/fix-scikit-build

    Fix scikit-build by removing no longer needed patch.
    roberth authored Jan 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0752cf0 View commit details
  8. Merge pull request #73394 from pasqui23/xkbopt

    nixos/xserver:services.xserver.xkbOptions is now commas
    roberth authored Jan 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    933003e View commit details
  9. Merge pull request #76947 from juliancoffee/master

    Fix example for xkbOptions
    roberth authored Jan 5, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e1ce60a View commit details
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -8,4 +8,4 @@

## Technical details

Please run `nix run nixpkgs.nix-info -c nix-info -m` and paste the result.
Please run `nix-shell -p nix-info --run "nix-info -m"` and paste the result.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ If applicable, add screenshots to help explain your problem.
Add any other context about the problem here.

**Metadata**
Please run `nix run nixpkgs.nix-info -c nix-info -m` and paste the result.
Please run `nix-shell -p nix-info --run "nix-info -m"` and paste the result.

Maintainer information:
```yaml
4 changes: 2 additions & 2 deletions nixos/modules/services/x11/xserver.nix
Original file line number Diff line number Diff line change
@@ -331,9 +331,9 @@ in
};

xkbOptions = mkOption {
type = types.str;
type = types.commas;
default = "terminate:ctrl_alt_bksp";
example = "grp:caps_toggle, grp_led:scroll";
example = "grp:caps_toggle,grp_led:scroll";
description = ''
X keyboard options; layout switching goes here.
'';
3 changes: 0 additions & 3 deletions pkgs/development/python-modules/scikit-build/default.nix
Original file line number Diff line number Diff line change
@@ -12,9 +12,6 @@ buildPythonPackage rec {
sha256 = "7342017cc82dd6178e3b19377389b8a8d1f8b429d9cdb315cfb1094e34a0f526";
};

# Fixes incorrect specified requirement (part of next release)
patches = [ ./fix_pytestrunner_req.patch ];

propagatedBuildInputs = [ wheel setuptools packaging ];
checkInputs = [
cmake ninja cython codecov coverage six pathpy

This file was deleted.

4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/kernel/linux-4.19.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
with stdenv.lib;

buildLinux (args // rec {
version = "4.19.92";
version = "4.19.93";

# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {

src = fetchurl {
url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz";
sha256 = "18l3k0hgyanh6axgmmaaff139vpw6lf3fcf9iglpqwgspgw7rhr9";
sha256 = "0d2qgwnmvnwbsijc8k85sgmywyrv55wpah6qwjk6kgx8h8zx5x9a";
};
} // (args.argsOverride or {}))
4 changes: 2 additions & 2 deletions pkgs/os-specific/linux/kernel/linux-5.4.nix
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
with stdenv.lib;

buildLinux (args // rec {
version = "5.4.7";
version = "5.4.8";

# modDirVersion needs to be x.y.z, will automatically add .0 if needed
modDirVersion = if (modDirVersionArg == null) then concatStringsSep "." (take 3 (splitVersion "${version}.0")) else modDirVersionArg;
@@ -13,6 +13,6 @@ buildLinux (args // rec {

src = fetchurl {
url = "mirror://kernel/linux/kernel/v5.x/linux-${version}.tar.xz";
sha256 = "1jgwg5qb7lb30m5ywvpfagzrl6d0i524qpy3v99mina6j4fv5jdb";
sha256 = "0llss8hbzkwqxx92y419vj2jvq0d8k52iivh3f59wgqr0b4i9i22";
};
} // (args.argsOverride or {}))
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/kernel/linux-libre.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{ stdenv, lib, fetchsvn, linux
, scripts ? fetchsvn {
url = "https://www.fsfla.org/svn/fsfla/software/linux-libre/releases/branches/";
rev = "17163";
rev = "17165";
sha256 = "0hyd7wp73w4555d42xcvk4x4nxrfckbzah2ckb4d2aqzxab87789";
}
, ...
6 changes: 3 additions & 3 deletions pkgs/shells/zsh/oh-my-zsh/default.nix
Original file line number Diff line number Diff line change
@@ -4,13 +4,13 @@
{ stdenv, fetchgit }:

stdenv.mkDerivation rec {
version = "2020-01-01";
version = "2020-01-04";
pname = "oh-my-zsh";
rev = "ca627655dbd1d110dbea34ec4a8c1964a1da83d2";
rev = "78b07e92fd4a3a5e1f92ee4e3d680c39b72c2245";

src = fetchgit { inherit rev;
url = "https://github.com/ohmyzsh/ohmyzsh";
sha256 = "1hr7qaad8mr8bvx54ql5q97da6fhppdgk087mc5flygky6vf4yp6";
sha256 = "1s5vr89dxgm1g3jcqybx4an80x0gmda4lh8y36r2dafxwmb09qmk";
};

pathsToLink = [ "/share/oh-my-zsh" ];