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: 2bd78b209d14
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: e79b1e6a9a21
Choose a head ref

Commits on Jun 22, 2020

  1. apache-storm: 1.2.1 -> 2.1.0

    rnhmjoj committed Jun 22, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    eadwu Edmund Wu
    Copy the full SHA
    aef5ee6 View commit details
  2. rzmq: use default zeromq

    rnhmjoj committed Jun 22, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c7b3e54 View commit details
  3. jzmq: remove

    This package does not support zeromq 4.x and is unmaintained.
    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    0006326 View commit details
  4. zeromq3: remove

    This zeromq version is really old and is no longer needed
    by any package in Nixpkgs.
    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    8415766 View commit details
  5. aliases: add zeromq3 packages

    rnhmjoj committed Jun 22, 2020
    Copy the full SHA
    7d20995 View commit details

Commits on Jul 17, 2020

  1. Copy the full SHA
    322d13e View commit details

Commits on Jul 23, 2020

  1. Copy the full SHA
    447fe2d View commit details

Commits on Jul 25, 2020

  1. nixos/wpa_supplicant: update config generation

    Ensure wpa_supplicant.conf is also generated when userControlled and
    extraConfig are used. (As discussed in issue #59959)
    bobismijnnaam committed Jul 25, 2020
    Copy the full SHA
    71ea6a9 View commit details

Commits on Jul 26, 2020

  1. Copy the full SHA
    59484f4 View commit details
  2. mu: 1.4.10 -> 1.4.12

    magnetophon committed Jul 26, 2020
    Copy the full SHA
    edb277a View commit details
  3. Merge pull request #93906 from magnetophon/mu

    mu: 1.4.10 -> 1.4.12
    zimbatm authored Jul 26, 2020
    Copy the full SHA
    aaceace View commit details
  4. Merge pull request #93884 from zowoq/gobetween

    gobetween: 0.7.0 -> 0.8.0
    zimbatm authored Jul 26, 2020
    Copy the full SHA
    dad2f74 View commit details
  5. pantheon: more build fixes by using older vala

    An extension of commit b49e798.  /cc PR #92592.
    I expect it's "safer" when whole pantheon uses the same version.
    Fixes build of wingpanel-indicator-session; maybe some others, too.
    Now I built whole pantheon attrset and tests.pantheon.x86_64-linux
    vcunat committed Jul 26, 2020
    Copy the full SHA
    28fce08 View commit details
  6. Merge pull request #88793 from veehaitch/redoc-cli

    nodePackages.redoc-cli: init at 0.9.8
    infinisil authored Jul 26, 2020
    Copy the full SHA
    a38d8d6 View commit details
  7. Merge pull request #93813 from bobismijnnaam/update-wpa-supplicant-co…

    …nfig
    
    Ensure wpa_supplicant.conf is written when userControlled and extraConfig are used
    infinisil authored Jul 26, 2020
    Copy the full SHA
    ff5bdca View commit details
  8. Merge pull request #93336 from rnhmjoj/qute-backend

    qutebrowser: re-add option to control the browser backend
    rnhmjoj authored Jul 26, 2020
    Copy the full SHA
    7f9a64c View commit details
  9. Merge pull request #91288 from rnhmjoj/zeromq

    Remove old zeromq 3.x packages
    rnhmjoj authored Jul 26, 2020
    Copy the full SHA
    bb395a9 View commit details
  10. python27Packages.crc32c: 2.0 -> 2.0.1

    r-ryantm authored and FRidh committed Jul 26, 2020
    Copy the full SHA
    bb2c199 View commit details
  11. python3Packages.daphne: 2.3.0 -> 2.5.0

    lsix authored and FRidh committed Jul 26, 2020
    Copy the full SHA
    13c492a View commit details
  12. Copy the full SHA
    62c481a View commit details
  13. recommonmark: marked broken

    It doesn't work with sphinx 3.
    DieGoldeneEnte authored and FRidh committed Jul 26, 2020
    Copy the full SHA
    36a6903 View commit details
  14. tiledb: disabled (sometimes) failing tests

    This only affects the python package
    fixes #84091
    DieGoldeneEnte authored and FRidh committed Jul 26, 2020
    Copy the full SHA
    e79b1e6 View commit details
2 changes: 1 addition & 1 deletion nixos/modules/services/networking/wpa_supplicant.nix
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ with lib;

let
cfg = config.networking.wireless;
configFile = if cfg.networks != {} then pkgs.writeText "wpa_supplicant.conf" ''
configFile = if cfg.networks != {} || cfg.extraConfig != "" || cfg.userControlled.enable then pkgs.writeText "wpa_supplicant.conf" ''
${optionalString cfg.userControlled.enable ''
ctrl_interface=DIR=/run/wpa_supplicant GROUP=${cfg.userControlled.group}
update_config=1''}
22 changes: 15 additions & 7 deletions pkgs/applications/networking/browsers/qutebrowser/default.nix
Original file line number Diff line number Diff line change
@@ -2,8 +2,9 @@
, mkDerivationWith, wrapQtAppsHook, wrapGAppsHook, qtbase, glib-networking
, asciidoc, docbook_xml_dtd_45, docbook_xsl, libxml2
, libxslt, gst_all_1 ? null
, withPdfReader ? true
, withMediaPlayback ? true
, withPdfReader ? true
, withMediaPlayback ? true
, backend ? "webkit"
}:

assert withMediaPlayback -> gst_all_1 != null;
@@ -19,6 +20,14 @@ let
stripRoot = false;
};

backendPackage =
if backend == "webengine" then python3Packages.pyqtwebengine else
if backend == "webkit" then python3Packages.pyqt5_with_qtwebkit else
throw ''
Unknown qutebrowser backend "${backend}".
Valid choices are qtwebengine (recommended) or qtwebkit.
'';

in mkDerivationWith python3Packages.buildPythonApplication rec {
pname = "qutebrowser";
version = "1.13.0";
@@ -46,16 +55,14 @@ in mkDerivationWith python3Packages.buildPythonApplication rec {
];

propagatedBuildInputs = with python3Packages; [
pyyaml pyqt5 pyqtwebengine jinja2 pygments
pyyaml backendPackage jinja2 pygments
pypeg2 cssutils pyopengl attrs setuptools
# scripts and userscripts libs
tldextract beautifulsoup4
pyreadability pykeepass stem
];

patches = [
./fix-restart.patch
];
patches = [ ./fix-restart.patch ];

dontWrapGApps = true;
dontWrapQtApps = true;
@@ -101,7 +108,8 @@ in mkDerivationWith python3Packages.buildPythonApplication rec {
postFixup = ''
wrapProgram $out/bin/qutebrowser \
"''${gappsWrapperArgs[@]}" \
"''${qtWrapperArgs[@]}"
"''${qtWrapperArgs[@]}" \
--add-flags '--backend ${backend}'
'';

meta = with stdenv.lib; {
5 changes: 2 additions & 3 deletions pkgs/desktops/pantheon/default.nix
Original file line number Diff line number Diff line change
@@ -87,7 +87,6 @@ lib.makeScope pkgs.newScope (self: with self; {

gala = callPackage ./desktop/gala {
inherit (gnome3) gnome-desktop;
vala = pkgs.vala_0_46;
};

wingpanel = callPackage ./desktop/wingpanel { };
@@ -199,12 +198,12 @@ lib.makeScope pkgs.newScope (self: with self; {

elementary-wallpapers = callPackage ./artwork/elementary-wallpapers { };

vala = pkgs.vala_0_46; # multiple pantheon packages have issues with vala 0.48.7

} // lib.optionalAttrs (config.allowAliases or true) {

### ALIASES

inherit (pkgs) vala; # added 2019-10-10

cerbere = throw "Cerbere is now obsolete https://github.com/elementary/cerbere/releases/tag/2.5.1.";

})
30 changes: 0 additions & 30 deletions pkgs/development/libraries/java/jzmq/default.nix

This file was deleted.

22 changes: 0 additions & 22 deletions pkgs/development/libraries/zeromq/3.x.nix

This file was deleted.

1 change: 1 addition & 0 deletions pkgs/development/node-packages/node-packages.json
Original file line number Diff line number Diff line change
@@ -149,6 +149,7 @@
, "pyright"
, "react-native-cli"
, "react-tools"
, "redoc-cli"
, "reveal.js"
, "rollup"
, { "rust-analyzer-build-deps": "../../misc/vscode-extensions/rust-analyzer/build-deps" }
Loading