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: 7d557a5d1b3b
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: 4e0f91170f11
Choose a head ref
  • 10 commits
  • 9 files changed
  • 4 contributors

Commits on Apr 21, 2020

  1. Copy the full SHA
    8a061eb View commit details

Commits on Jul 22, 2020

  1. Copy the full SHA
    68f6620 View commit details

Commits on Jul 23, 2020

  1. Copy the full SHA
    fa2b521 View commit details
  2. Copy the full SHA
    71532e9 View commit details
  3. nodejs-13_x: drop

    Node.js 13.x has reached EOL on June 01, 2020
    nodejs/Release#583
    marsam committed Jul 23, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8b0e3c7 View commit details
  4. Merge pull request #93618 from marsam/update-nodejs-10_x

    nodejs: 10.21.0 -> 10.22.0, 12.18.2 -> 12.18.3, 14.5.0 -> 14.6.0
    marsam authored Jul 23, 2020
    Copy the full SHA
    399b177 View commit details
  5. Merge pull request #85681 from Beskhue/improve-descriptions

    nixos/acme: improve some descriptions
    marsam authored Jul 23, 2020
    Copy the full SHA
    af5765b View commit details
  6. python.pkgs.fontforge: disable with Python 2

    Since the latest update, fontforge no longer supports building with Python 2. Let's prevent failing builds.
    jtojnar committed Jul 23, 2020
    Copy the full SHA
    ce55b09 View commit details
  7. pythonPackages.crashtest: mirror the python version range specified i…

    …n pyproject.toml
    
    Trying to build crashtest with python35 fails with:
    
    > ERROR: Package 'crashtest' requires a different Python: 3.5.9 not in
    > '>=3.6,<4.0'
    ento authored and FRidh committed Jul 23, 2020
    Copy the full SHA
    aff753d View commit details
  8. pythonPackages.clikit: fix dependency on crashtest

    From clikit's pyproject.toml:
    
    > Crashtest is only needed for Python ^3.6 to provide
    > better error messsages
    ento authored and FRidh committed Jul 23, 2020
    Copy the full SHA
    4e0f911 View commit details
22 changes: 11 additions & 11 deletions nixos/modules/security/acme.nix
Original file line number Diff line number Diff line change
@@ -23,16 +23,16 @@ let
type = types.nullOr types.str;
default = null;
description = ''
ACME Directory Resource URI. Defaults to let's encrypt
ACME Directory Resource URI. Defaults to Let's Encrypt's
production endpoint,
https://acme-v02.api.letsencrypt.org/directory, if unset.
<link xlink:href="https://acme-v02.api.letsencrypt.org/directory"/>, if unset.
'';
};

domain = mkOption {
type = types.str;
default = name;
description = "Domain to fetch certificate for (defaults to the entry name)";
description = "Domain to fetch certificate for (defaults to the entry name).";
};

email = mkOption {
@@ -103,7 +103,7 @@ let
description = ''
Key type to use for private keys.
For an up to date list of supported values check the --key-type option
at https://go-acme.github.io/lego/usage/cli/#usage.
at <link xlink:href="https://go-acme.github.io/lego/usage/cli/#usage"/>.
'';
};

@@ -113,7 +113,7 @@ let
example = "route53";
description = ''
DNS Challenge provider. For a list of supported providers, see the "code"
field of the DNS providers listed at https://go-acme.github.io/lego/dns/.
field of the DNS providers listed at <link xlink:href="https://go-acme.github.io/lego/dns/"/>.
'';
};

@@ -123,7 +123,7 @@ let
Path to an EnvironmentFile for the cert's service containing any required and
optional environment variables for your selected dnsProvider.
To find out what values you need to set, consult the documentation at
https://go-acme.github.io/lego/dns/ for the corresponding dnsProvider.
<link xlink:href="https://go-acme.github.io/lego/dns/"/> for the corresponding dnsProvider.
'';
example = "/var/src/secrets/example.org-route53-api-token";
};
@@ -169,7 +169,7 @@ in
(mkRemovedOptionModule [ "security" "acme" "production" ] ''
Use security.acme.server to define your staging ACME server URL instead.
To use the let's encrypt staging server, use security.acme.server =
To use Let's Encrypt's staging server, use security.acme.server =
"https://acme-staging-v02.api.letsencrypt.org/directory".
''
)
@@ -207,9 +207,9 @@ in
type = types.nullOr types.str;
default = null;
description = ''
ACME Directory Resource URI. Defaults to let's encrypt
ACME Directory Resource URI. Defaults to Let's Encrypt's
production endpoint,
<literal>https://acme-v02.api.letsencrypt.org/directory</literal>, if unset.
<link xlink:href="https://acme-v02.api.letsencrypt.org/directory"/>, if unset.
'';
};

@@ -230,8 +230,8 @@ in
type = types.bool;
default = false;
description = ''
Accept the CA's terms of service. The default provier is Let's Encrypt,
you can find their ToS at https://letsencrypt.org/repository/
Accept the CA's terms of service. The default provider is Let's Encrypt,
you can find their ToS at <link xlink:href="https://letsencrypt.org/repository/"/>.
'';
};

8 changes: 5 additions & 3 deletions pkgs/development/python-modules/clikit/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ lib, buildPythonPackage, fetchPypi
, isPy27
, isPy27, pythonAtLeast
, pylev, pastel, typing, enum34, crashtest }:

buildPythonPackage rec {
@@ -12,8 +12,10 @@ buildPythonPackage rec {
};

propagatedBuildInputs = [
crashtest pylev pastel
] ++ lib.optionals isPy27 [ typing enum34 ];
pylev pastel
]
++ lib.optionals (pythonAtLeast "3.6") [ crashtest ]
++ lib.optionals isPy27 [ typing enum34 ];

# The Pypi tarball doesn't include tests, and the GitHub source isn't
# buildable until we bootstrap poetry, see
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/crashtest/default.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{ lib, buildPythonPackage, fetchFromGitHub, fetchPypi, isPy27, pytest }:
{ lib, buildPythonPackage, fetchFromGitHub, fetchPypi, pythonAtLeast, pytest }:

buildPythonPackage rec {
pname = "crashtest";
version = "0.3.0";
disabled = isPy27;
disabled = !(pythonAtLeast "3.6");

src = fetchPypi {
inherit pname version;
4 changes: 2 additions & 2 deletions pkgs/development/web/nodejs/v10.nix
Original file line number Diff line number Diff line change
@@ -8,6 +8,6 @@ let
in
buildNodejs {
inherit enableNpm;
version = "10.21.0";
sha256 = "0fxpvjm3gyfwapn55av8q9w1ds0l4nmn6ybdlslcmjiqhfi1zc16";
version = "10.22.0";
sha256 = "1nz18fa550li10r0kzsm28c2rvvq61nq8bqdygip0rmvbi2paxg0";
}
4 changes: 2 additions & 2 deletions pkgs/development/web/nodejs/v12.nix
Original file line number Diff line number Diff line change
@@ -8,6 +8,6 @@ let
in
buildNodejs {
inherit enableNpm;
version = "12.18.2";
sha256 = "1wnxab2shqgs5in0h39qy2fc7f32pcz4gl9i2mj1001pfani1g9q";
version = "12.18.3";
sha256 = "03hdds6ghlmbz8q61alqj18pdnyd6hxmbhiws4pl51wlawk805bi";
}
13 changes: 0 additions & 13 deletions pkgs/development/web/nodejs/v13.nix

This file was deleted.

8 changes: 4 additions & 4 deletions pkgs/development/web/nodejs/v14.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{ callPackage, openssl, icu66, python3, enableNpm ? true }:
{ callPackage, openssl, icu67, python3, enableNpm ? true }:

let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
icu = icu66;
icu = icu67;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "14.5.0";
sha256 = "1d6w7ycdiqbkip7m6m8xly31qgx7ywakzvrnqdq8ini5sricjlgb";
version = "14.6.0";
sha256 = "153a07ffrmvwbsc78wrc0xnwymmzrhva0kn6mgnfi3086v3h1wss";
}
6 changes: 1 addition & 5 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -4903,10 +4903,6 @@ in
nodejs-slim-12_x = callPackage ../development/web/nodejs/v12.nix {
enableNpm = false;
};
nodejs-13_x = callPackage ../development/web/nodejs/v13.nix { };
nodejs-slim-13_x = callPackage ../development/web/nodejs/v13.nix {
enableNpm = false;
};
nodejs-14_x = callPackage ../development/web/nodejs/v14.nix { };
nodejs-slim-14_x = callPackage ../development/web/nodejs/v14.nix {
enableNpm = false;
@@ -9680,7 +9676,7 @@ in
kanif = callPackage ../applications/networking/cluster/kanif { };

lumo = callPackage ../development/interpreters/clojurescript/lumo {
nodejs = nodejs-13_x;
nodejs = nodejs_latest;
};

lxappearance = callPackage ../desktops/lxde/core/lxappearance { };
4 changes: 2 additions & 2 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -3996,10 +3996,10 @@ in {

folium = callPackage ../development/python-modules/folium { };

fontforge = toPythonModule (pkgs.fontforge.override {
fontforge = disabledIf (!isPy3k) (toPythonModule (pkgs.fontforge.override {
withPython = true;
inherit python;
});
}));

fonttools = callPackage ../development/python-modules/fonttools { };