Merge master into staging-next

This commit is contained in:
github-actions[bot] 2022-08-25 12:01:30 +00:00 committed by GitHub
commit c91ed9564a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
44 changed files with 353 additions and 246 deletions

View file

@ -38,4 +38,4 @@ d08ede042b74b8199dc748323768227b88efcf7c
d1c1a0c656ccd8bd3b25d3c4287f2d075faf3cf3
# fix indentation in meteor default.nix
f76b359e4a55267ddd4e9e149e7cc13ae5cad98a
a37a6de881ec4c6708e6b88fd16256bbc7f26bbd

View file

@ -8,14 +8,23 @@ let
makeColor = i: concatMapStringsSep "," (x: "0x" + substring (2*i) 2 x);
isUnicode = hasSuffix "UTF-8" (toUpper config.i18n.defaultLocale);
isUnicode = '' \
LOCALE_ARCHIVE=${config.i18n.glibcLocales}/lib/locale/locale-archive \
LANG=${config.i18n.defaultLocale} \
LC_IDENTIFICATION=${config.i18n.defaultLocale} \
locale -k identification-codeset | grep -i UTF-8 \
'';
optimizedKeymap = pkgs.runCommand "keymap" {
nativeBuildInputs = [ pkgs.buildPackages.kbd ];
nativeBuildInputs = with pkgs.buildPackages; [ kbd locale ];
LOADKEYS_KEYMAP_PATH = "${consoleEnv pkgs.kbd}/share/keymaps/**";
preferLocalBuild = true;
} ''
loadkeys -b ${optionalString isUnicode "-u"} "${cfg.keyMap}" > $out
if ${isUnicode} ; then
loadkeys -b -u "${cfg.keyMap}" > $out
else
loadkeys -b "${cfg.keyMap}" > $out
fi
'';
# Sadly, systemd-vconsole-setup doesn't support binary keymaps.
@ -130,7 +139,7 @@ in
})
(mkIf setVconsole (mkMerge [
{ environment.systemPackages = [ pkgs.kbd ];
{ environment.systemPackages = with pkgs; [ kbd locale ];
# Let systemd-vconsole-setup.service do the work of setting up the
# virtual consoles.
@ -139,8 +148,13 @@ in
environment.etc.kbd.source = "${consoleEnv pkgs.kbd}/share";
boot.initrd.preLVMCommands = mkIf (!config.boot.initrd.systemd.enable) (mkBefore ''
kbd_mode ${if isUnicode then "-u" else "-a"} -C /dev/console
printf "\033%%${if isUnicode then "G" else "@"}" >> /dev/console
if ${isUnicode} ; then
kbd_mode -u -C /dev/console
printf "\033%%G" >> /dev/console
else
kbd_mode -a -C /dev/console
printf "\033%%@" >> /dev/console
fi
loadkmap < ${optimizedKeymap}
${optionalString cfg.earlySetup ''

View file

@ -260,8 +260,6 @@ in
# - Configure the display manager to run specific `xrandr` commands which will
# configure/enable displays connected to the Intel iGPU / AMD APU.
services.xserver.useGlamor = mkDefault offloadCfg.enable;
services.xserver.drivers = let
in optional primeEnabled {
name = igpuDriver;

View file

@ -11,11 +11,11 @@
stdenv.mkDerivation rec {
pname = "ocenaudio";
version = "3.11.11";
version = "3.11.14";
src = fetchurl {
url = "https://www.ocenaudio.com/downloads/index.php/ocenaudio_debian9_64.deb?version=${version}";
sha256 = "sha256-S3Fqg5DjhVoYwfF3A/P7WcOUsU1x+IGwLopyNA3FkRQ=";
sha256 = "sha256-5HQ64jCM8kyWLqxFqsFN3lJgM/JlWf1/RYKSpAFYTYE=";
};
nativeBuildInputs = [

View file

@ -2,13 +2,13 @@
python3Packages.buildPythonApplication rec {
pname = "pyradio";
version = "0.8.9.22";
version = "0.8.9.25";
src = fetchFromGitHub {
owner = "coderholic";
repo = pname;
rev = "refs/tags/${version}";
sha256 = "sha256-QBgXg2SNEQX1ngY+cEWqStC0zsFZ0Er81tuhTszbHWM=";
sha256 = "sha256-bkZ+zgFtENQUjks9HwVcqHIREcKQ5XCt3AEh3QAyiEc=";
};
nativeBuildInputs = [ installShellFiles ];

View file

@ -19,13 +19,13 @@
stdenv.mkDerivation rec {
pname = "reaper";
version = "6.61";
version = "6.66";
src = fetchurl {
url = "https://www.reaper.fm/files/${lib.versions.major version}.x/reaper${builtins.replaceStrings ["."] [""] version}_linux_${stdenv.hostPlatform.qemuArch}.tar.xz";
hash = {
x86_64-linux = "sha256-Lp2EVky1+ruc86LdMmvhZIisoYl0OxdkVnN3h/u09IQ=";
aarch64-linux = "sha256-sPLCMA//xAdWXjY7++R6eLWS56Zi0u+9ju7JlICGvVc=";
x86_64-linux = "sha256-kMXHHd+uIc5tKlDlxKjphZsfNMYvvV/4Zx84eRwPGcs=";
aarch64-linux = "sha256-pB3qj9CJbI5iWBNKNX2niIfHrpSz9+qotX/zKGYDwYo=";
}.${stdenv.hostPlatform.system};
};

View file

@ -3,12 +3,12 @@
, libGLU, lv2, gtk2, cairo, pango, fftwFloat, zita-convolver }:
stdenv.mkDerivation rec {
version = "20220327";
version = "20220714";
pname = "x42-plugins";
src = fetchurl {
url = "https://gareus.org/misc/x42-plugins/${pname}-${version}.tar.xz";
sha256 = "sha256-IhuPqTlCbCxExT5B9Au42RQQl4sDEvz6+HhsuT02KVs=";
sha256 = "sha256-myrHOfgpCwuW8YX0jZ3RutoqtXysU0ejBNcuxN3stXU=";
};
nativeBuildInputs = [ pkg-config ];

View file

@ -2,17 +2,17 @@
buildGoModule rec {
pname = "erigon";
version = "2022.07.03";
version = "2022.08.02";
src = fetchFromGitHub {
owner = "ledgerwatch";
repo = pname;
rev = "v${version}";
sha256 = "sha256-zWygG06H5+QuG11klRq+7T2v40FNMxmYENdsK3KB+ko=";
sha256 = "sha256-JXVVfhR7XQKPLpH9F+78+y5hLBGdq/qSA2wniM/sf5s=";
fetchSubmodules = true;
};
vendorSha256 = "sha256-vxLe8uEjuQ96JiIDxlSrpVATScNl2fscXVUqFKmMPxs=";
vendorSha256 = "sha256-Muksput9s0I9AeQNG+QSbfz0/s14EmSERFg8h0rqaJ8=";
proxyVendor = true;
# Build errors in mdbx when format hardening is enabled:

View file

@ -21,13 +21,13 @@
stdenv.mkDerivation rec{
pname = "corectrl";
version = "1.2.4";
version = "1.2.7";
src = fetchFromGitLab {
owner = "corectrl";
repo = "corectrl";
rev = "v${version}";
sha256 = "sha256-3WOuPOJEY941JVoF5aQp5LvPeh3shalb6H9FMmmctN4=";
sha256 = "sha256-X+S+k9LuZveNOV3X7fulsnk9GfGO1czWEvU41q9/cJI=";
};
nativeBuildInputs = [

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "psi-notify";
version = "1.2.1";
version = "1.3.1";
src = fetchFromGitHub {
owner = "cdown";
repo = pname;
rev = version;
sha256 = "0hn37plim1smmlrjjmz8kybyms8pz3wxcgf8vmqjrsqi6bfcym7g";
sha256 = "sha256-GhGiSI5r0Ki6+MYNa5jCDyYZEW5R9LDNZ/S8K+6L0jo=";
};
buildInputs = [ systemd libnotify ];

View file

@ -50,11 +50,11 @@ let
in stdenv.mkDerivation rec {
pname = "opera";
version = "84.0.4316.42";
version = "90.0.4480.48";
src = fetchurl {
url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb";
sha256 = "sha256-ZjVuw30YfHQ69BVxPvIde6VuOcqtnXrGwhZpA26vLpw=";
sha256 = "sha256-nFReaBvtIQ1N5lfOJHoayiI4TWlfmGocNWirbvPRbnM=";
};
unpackCmd = "${dpkg}/bin/dpkg-deb -x $curSrc .";

View file

@ -3,12 +3,12 @@ electron, libsecret }:
stdenv.mkDerivation rec {
pname = "tutanota-desktop";
version = "3.98.17";
version = "3.98.20";
src = fetchurl {
url = "https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-${version}/${pname}-${version}-unpacked-linux.tar.gz";
name = "tutanota-desktop-${version}.tar.gz";
sha256 = "sha256-rVAiutjFI3/KJZeiTy6H2IdMh+SFz9+NvEoriPTnW2w=";
sha256 = "sha256-ddRuIFmsZcyrZ/0T0Sk6pnmxuG5osZVYFw7NCmgvECc=";
};
nativeBuildInputs = [

View file

@ -220,13 +220,13 @@ let
sha512 = "na+FisoARuaOWaHWpmdtk3FeuTWf2VWamdJ9/TJJzj5ZdXPLC3juoDgFs6XVuJIoK30yuBpyFBEDXVRK4pB7Tg==";
};
};
"@babel/parser-7.18.11" = {
"@babel/parser-7.18.13" = {
name = "_at_babel_slash_parser";
packageName = "@babel/parser";
version = "7.18.11";
version = "7.18.13";
src = fetchurl {
url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.11.tgz";
sha512 = "9JKn5vN+hDt0Hdqn1PiJ2guflwP+B6Ga8qbDuoF0PzzVhrzsKIJo8yGqVk6CmMHiMei9w1C1Bp9IMJSIK+HPIQ==";
url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.13.tgz";
sha512 = "dgXcIfMuQ0kgzLB2b9tRZs7TTFFaGM2AbtA4fJgUUYukzGH4jwsS7hzQHEGs67jdehpm22vkgKwvbU+aEflgwg==";
};
};
"@babel/runtime-7.18.9" = {
@ -292,13 +292,13 @@ let
sha512 = "RxSa9VjcDWgWCYsaLdZItdCnJj7p4LxggaEk+Y3MP0dHKoxez8ioG07DVekVbZZqccsrL+oPB/N9AzVPxj4blg==";
};
};
"@js-joda/core-5.3.0" = {
"@js-joda/core-5.3.1" = {
name = "_at_js-joda_slash_core";
packageName = "@js-joda/core";
version = "5.3.0";
version = "5.3.1";
src = fetchurl {
url = "https://registry.npmjs.org/@js-joda/core/-/core-5.3.0.tgz";
sha512 = "3uObVJ08i0vSbtsTWQ8omy8XUlVDnoest5MOLp6delLUZev8bu++S+3Aua7xWPPWzQt9pcuwDqjEOKslQVDj8g==";
url = "https://registry.npmjs.org/@js-joda/core/-/core-5.3.1.tgz";
sha512 = "iHHyIRLEfXLqBN+BkyH8u8imMYr4ihRbFDEk8toqTwUECETVQFCTh2U59Sw2oMoRVaS3XRIb7pyCulltq2jFVA==";
};
};
"@jsdevtools/ono-7.1.3" = {
@ -409,13 +409,13 @@ let
sha512 = "sBpko86IrTscc39EvHUhL+c++81BVTsIZ3ETu/vG+cCdi0N6vb2DoahR67A9FI2CGnxRRHjnTfa3m6LulwNATA==";
};
};
"@oclif/core-1.14.1" = {
"@oclif/core-1.16.0" = {
name = "_at_oclif_slash_core";
packageName = "@oclif/core";
version = "1.14.1";
version = "1.16.0";
src = fetchurl {
url = "https://registry.npmjs.org/@oclif/core/-/core-1.14.1.tgz";
sha512 = "FgAjfY3Cvzj+i8j08WiD/8adJhZvclFESXAE8Kcp7qglErFKUFK9XY9BS2NyIzLN1NCKc52A64pWunVvPv8g3w==";
url = "https://registry.npmjs.org/@oclif/core/-/core-1.16.0.tgz";
sha512 = "xtqhAbjQHBcz+xQpEHJ3eJEVfRQ4zl41Yw5gw/N+D1jgaIUrHTxCY/sfTvhw93LAQo7B++ozHzSb7DISFXsQFQ==";
};
};
"@oclif/errors-1.3.5" = {
@ -463,13 +463,13 @@ let
sha512 = "S/SF/XYJeevwIgHFmVDAFRUvM3m+OjhvCAYMk78ZJQCYCQ5wS7j+LTt1ZEv2jpEEGg2tx/F6TYYWxddNAYHrFQ==";
};
};
"@opentelemetry/api-1.1.0" = {
"@opentelemetry/api-1.2.0" = {
name = "_at_opentelemetry_slash_api";
packageName = "@opentelemetry/api";
version = "1.1.0";
version = "1.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.1.0.tgz";
sha512 = "hf+3bwuBwtXsugA2ULBc95qxrOqP2pOekLz34BJhcAKawt94vfeNyUKpYc0lZQ/3sCP6LqRa7UAdHA7i5UODzQ==";
url = "https://registry.npmjs.org/@opentelemetry/api/-/api-1.2.0.tgz";
sha512 = "0nBr+VZNKm9tvNDZFstI3Pq1fCTEDK5OZTnVKNvBNAKgd0yIvmwsP4m61rEv7ZP+tOUjWJhROpxK5MsnlF911g==";
};
};
"@rudderstack/rudder-sdk-node-1.0.6" = {
@ -688,22 +688,22 @@ let
sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==";
};
};
"@types/jsonwebtoken-8.5.8" = {
"@types/jsonwebtoken-8.5.9" = {
name = "_at_types_slash_jsonwebtoken";
packageName = "@types/jsonwebtoken";
version = "8.5.8";
version = "8.5.9";
src = fetchurl {
url = "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.8.tgz";
sha512 = "zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==";
url = "https://registry.npmjs.org/@types/jsonwebtoken/-/jsonwebtoken-8.5.9.tgz";
sha512 = "272FMnFGzAVMGtu9tkr29hRL6bZj4Zs1KZNeHLnKqAvp06tAIcarTMwOh8/8bz4FmKRcMxZhZNeUAQsNLoiPhg==";
};
};
"@types/lodash-4.14.183" = {
"@types/lodash-4.14.184" = {
name = "_at_types_slash_lodash";
packageName = "@types/lodash";
version = "4.14.183";
version = "4.14.184";
src = fetchurl {
url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.183.tgz";
sha512 = "UXavyuxzXKMqJPEpFPri6Ku5F9af6ZJXUneHhvQJxavrEjuHkFp2YnDWHcxJiG7hk8ZkWqjcyNeW1s/smZv5cw==";
url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.184.tgz";
sha512 = "RoZphVtHbxPZizt4IcILciSWiC6dcn+eZ8oX9IWEYfDMcocdd42f7NPI6fQj+6zI8y4E0L7gu2pcZKLGTRaV9Q==";
};
};
"@types/lodash.intersection-4.4.7" = {
@ -733,13 +733,13 @@ let
sha512 = "Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA==";
};
};
"@types/minimatch-3.0.5" = {
"@types/minimatch-5.1.0" = {
name = "_at_types_slash_minimatch";
packageName = "@types/minimatch";
version = "3.0.5";
version = "5.1.0";
src = fetchurl {
url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz";
sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==";
url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.0.tgz";
sha512 = "0RJHq5FqDWo17kdHe+SMDJLfxmLaqHbWnqZ6gNKzDvStUlrmx/eKIY17+ifLS1yybo7X86aUshQMlittDOVNnw==";
};
};
"@types/multer-1.4.7" = {
@ -751,13 +751,13 @@ let
sha512 = "/SNsDidUFCvqqcWDwxv2feww/yqhNeTRL5CVoL3jU4Goc4kKEL10T7Eye65ZqPNi4HRx8sAEX59pV1aEH7drNA==";
};
};
"@types/node-18.7.6" = {
"@types/node-18.7.13" = {
name = "_at_types_slash_node";
packageName = "@types/node";
version = "18.7.6";
version = "18.7.13";
src = fetchurl {
url = "https://registry.npmjs.org/@types/node/-/node-18.7.6.tgz";
sha512 = "EdxgKRXgYsNITy5mjjXjVE/CS8YENSdhiagGrLqjG0pvA2owgJ6i4l7wy/PFZGC0B1/H20lWKN7ONVDNYDZm7A==";
url = "https://registry.npmjs.org/@types/node/-/node-18.7.13.tgz";
sha512 = "46yIhxSe5xEaJZXWdIBP7GU4HDTG8/eo0qd9atdiL+lFpA03y8KS+lkTN834TWJj5767GbWv4n/P6efyTFt1Dw==";
};
};
"@types/node-fetch-2.6.2" = {
@ -868,13 +868,13 @@ let
sha512 = "QcJ5ZczaXAqbVD3o8mw/mEBhRvO5UAdTtbvgwL/OgoWubvNBh6/MxLBAigtcgIFaq3shon9m3POIxQaLQt4fxQ==";
};
};
"@vue/compiler-sfc-2.7.8" = {
"@vue/compiler-sfc-2.7.10" = {
name = "_at_vue_slash_compiler-sfc";
packageName = "@vue/compiler-sfc";
version = "2.7.8";
version = "2.7.10";
src = fetchurl {
url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.8.tgz";
sha512 = "2DK4YWKfgLnW9VDR9gnju1gcYRk3flKj8UNsms7fsRmFcg35slVTZEkqwBtX+wJBXaamFfn6NxSsZh3h12Ix/Q==";
url = "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.10.tgz";
sha512 = "55Shns6WPxlYsz4WX7q9ZJBL77sKE1ZAYNYStLs6GbhIOMrNtjMvzcob6gu3cGlfpCR4bT7NXgyJ3tly2+Hx8Q==";
};
};
"abbrev-1.1.1" = {
@ -1264,13 +1264,13 @@ let
sha512 = "vkyt1+sj6qaD9oMtqqLE2pZ2IcHI66kFx8lpnVuXp55SnNPjKghfOhVfZpaDwDPpY0oVWP3Qu1uHZWxF3E856A==";
};
};
"aws-sdk-2.1196.0" = {
"aws-sdk-2.1202.0" = {
name = "aws-sdk";
packageName = "aws-sdk";
version = "2.1196.0";
version = "2.1202.0";
src = fetchurl {
url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1196.0.tgz";
sha512 = "iOGhCY5IqGfHCJ70p0H/uxkXDh/96KanAMfhnGGbIKbpVliuEV7SYxTfsWORaaUHey+N8FE6OMKfzo7F4X+wQg==";
url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1202.0.tgz";
sha512 = "fFoEX+Id8/h/RIHw/gTZl3GnFF+RaXRmXueF7qCOqHm4g7mFOOgUUbc4BLbZ4gCDYRiyxNlGgija/je8EhLNRw==";
};
};
"aws-sign2-0.7.0" = {
@ -1300,6 +1300,15 @@ let
sha512 = "ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==";
};
};
"axios-0.24.0" = {
name = "axios";
packageName = "axios";
version = "0.24.0";
src = fetchurl {
url = "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz";
sha512 = "Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==";
};
};
"axios-0.27.2" = {
name = "axios";
packageName = "axios";
@ -2245,13 +2254,13 @@ let
sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==";
};
};
"core-js-3.24.1" = {
"core-js-3.25.0" = {
name = "core-js";
packageName = "core-js";
version = "3.24.1";
version = "3.25.0";
src = fetchurl {
url = "https://registry.npmjs.org/core-js/-/core-js-3.24.1.tgz";
sha512 = "0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==";
url = "https://registry.npmjs.org/core-js/-/core-js-3.25.0.tgz";
sha512 = "CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA==";
};
};
"core-util-is-1.0.2" = {
@ -3181,13 +3190,13 @@ let
sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==";
};
};
"flatted-3.2.6" = {
"flatted-3.2.7" = {
name = "flatted";
packageName = "flatted";
version = "3.2.6";
version = "3.2.7";
src = fetchurl {
url = "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz";
sha512 = "0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==";
url = "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz";
sha512 = "5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==";
};
};
"fn.name-1.1.0" = {
@ -4315,13 +4324,13 @@ let
sha512 = "VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==";
};
};
"isbot-3.5.0" = {
"isbot-3.5.2" = {
name = "isbot";
packageName = "isbot";
version = "3.5.0";
version = "3.5.2";
src = fetchurl {
url = "https://registry.npmjs.org/isbot/-/isbot-3.5.0.tgz";
sha512 = "QOFF7IE7hUdzo8pbhCubeiMzKdLZt+W/UwRZWwg+zghmnqXoMwh2V0bi5UT+oIvoD0IWCWjzAtp30ZrrRwJVCg==";
url = "https://registry.npmjs.org/isbot/-/isbot-3.5.2.tgz";
sha512 = "7iXQPDK1GBKvWS9N71bNnQ2KMcqwlMhdLkPma/EBn+8ZRkCbhun3yqqS1hmRqysTwJLGvJrUTmRIHibLWrXQQA==";
};
};
"isexe-2.0.0" = {
@ -4630,13 +4639,13 @@ let
sha512 = "xOqorG21Va+3CjpFOfFTU7SWohHH2uIX9ZY4Byz6J+lvpfvc486tOAT/G9GfbrKtJ9O7NCX9o0aC2lxqbnZ9EA==";
};
};
"libphonenumber-js-1.10.12" = {
"libphonenumber-js-1.10.13" = {
name = "libphonenumber-js";
packageName = "libphonenumber-js";
version = "1.10.12";
version = "1.10.13";
src = fetchurl {
url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.12.tgz";
sha512 = "xTFBs3ipFQNmjCUkDj6ZzRJvs97IyazFHBKWtrQrLiYs0Zk0GANob1hkMRlQUQXbJrpQGwnI+/yU4oyD4ohvpw==";
url = "https://registry.npmjs.org/libphonenumber-js/-/libphonenumber-js-1.10.13.tgz";
sha512 = "b74iyWmwb4GprAUPjPkJ11GTC7KX4Pd3onpJfKxYyY8y9Rbb4ERY47LvCMEDM09WD3thiLDMXtkfDK/AX+zT7Q==";
};
};
"libqp-1.1.0" = {
@ -5269,13 +5278,13 @@ let
sha512 = "5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==";
};
};
"moment-timezone-0.5.34" = {
"moment-timezone-0.5.35" = {
name = "moment-timezone";
packageName = "moment-timezone";
version = "0.5.34";
version = "0.5.35";
src = fetchurl {
url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.34.tgz";
sha512 = "3zAEHh2hKUs3EXLESx/wsgw6IQdusOT8Bxm3D9UrHPQR7zlMmzwybC8zHEM1tQ4LJwP7fcxrWr8tuBg05fFCbg==";
url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.35.tgz";
sha512 = "cY/pBOEXepQvlgli06ttCTKcIf8cD1nmNwOKQQAdHBqYApQSpAqotBMX0RJZNgMp6i0PlZuf1mFtnlyEkwyvFw==";
};
};
"monaco-editor-0.30.1" = {
@ -5350,13 +5359,13 @@ let
sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==";
};
};
"mssql-8.1.3" = {
"mssql-8.1.4" = {
name = "mssql";
packageName = "mssql";
version = "8.1.3";
version = "8.1.4";
src = fetchurl {
url = "https://registry.npmjs.org/mssql/-/mssql-8.1.3.tgz";
sha512 = "XGxNNNeKZMMTM71na2M4eLMkPWKckcfZtMiCKR1mLzN887x31NisekNhoBAoRpqizErUZxSW8gSDZc8PVig7Kw==";
url = "https://registry.npmjs.org/mssql/-/mssql-8.1.4.tgz";
sha512 = "nqkYYehETWVvFLB9zAGJV2kegOsdtLjUnkHA52aFhlE0ZIoOXC3BL8pLERwFicFypM4i3DX1hYeuM726EEIxjQ==";
};
};
"multer-1.4.5-lts.1" = {
@ -5395,49 +5404,49 @@ let
sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==";
};
};
"n8n-core-0.131.0" = {
"n8n-core-0.132.0" = {
name = "n8n-core";
packageName = "n8n-core";
version = "0.131.0";
version = "0.132.0";
src = fetchurl {
url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.131.0.tgz";
sha512 = "XDR0udjVD1t16DZKT3Bx0oFa/qnDjv9KSJRmzUxcTzU2QzcLJ3nv3mi/E7AObUGOvXsKgKRSdsFyWoMcPGb5cQ==";
url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.132.0.tgz";
sha512 = "MfP86+vK7fF7T5Qvq55ej5Uq0Lt1kGlCdvfxhukDDIqM+I5UwRjoyaU+8NIN+BEs5jNrfgJtA9iTKGB7pvx9IQ==";
};
};
"n8n-design-system-0.31.0" = {
"n8n-design-system-0.32.0" = {
name = "n8n-design-system";
packageName = "n8n-design-system";
version = "0.31.0";
version = "0.32.0";
src = fetchurl {
url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.31.0.tgz";
sha512 = "RvE18Fv4tzvsuDZwszWuEodzVoHcKVxYdAA57qIKZyxLbwtLYe2MoBtmOeKlQBvYaZBIwxLFbPnm2fZvIfMdsA==";
url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.32.0.tgz";
sha512 = "zyVpImrrIt9KgHn7GTGfAMJD5nD53Y+JYU/m96uoT7QJS3VPoAm22uvPEhn+rhLgFN+4znG24g8cFbt6hX2b7g==";
};
};
"n8n-editor-ui-0.157.0" = {
"n8n-editor-ui-0.158.0" = {
name = "n8n-editor-ui";
packageName = "n8n-editor-ui";
version = "0.157.0";
version = "0.158.0";
src = fetchurl {
url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.157.0.tgz";
sha512 = "SzS6xCIa7D1nDnvV0p6OOOc2s9gxuJNkQ3UzWw3VG6C5vtsBhpKDsUZ2BKlCLip2jLZgeNAFHCmttSmXHmm9Lg==";
url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.158.0.tgz";
sha512 = "FN6uzwSR6xA4S270uCxTrDJ/gaHAnA3wnV+l7lBwgwvZC0yRJj5S8ogCoSpj/wJt/uKUJ6ufrfh31zSSnN4QsA==";
};
};
"n8n-nodes-base-0.189.0" = {
"n8n-nodes-base-0.190.0" = {
name = "n8n-nodes-base";
packageName = "n8n-nodes-base";
version = "0.189.0";
version = "0.190.0";
src = fetchurl {
url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.189.0.tgz";
sha512 = "8Xdbtz26wpvO5MguARdc/vOflmKyOCazV9rt9OMsT6HJLTFq1U4xgEw85VWB9GQJPbDvXPRPqilTedKgM9POlw==";
url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.190.0.tgz";
sha512 = "jdL3V9FGZA/xQIFtQhdZ5BUCjUyH4IwPDYuTd3epu1wKW0SdnUNjATiBF1AjX0/+axZjTLwm43gSN3JA8ZK+Wg==";
};
};
"n8n-workflow-0.113.0" = {
"n8n-workflow-0.114.0" = {
name = "n8n-workflow";
packageName = "n8n-workflow";
version = "0.113.0";
version = "0.114.0";
src = fetchurl {
url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.113.0.tgz";
sha512 = "ajeZR9etpx9Tjy10X/bbmKYEBp8edUMUrUTL5qLmQLEODoua/NV7C7NCZwlVUtsTbIeTq9Osas2tYhDI74Cubw==";
url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.114.0.tgz";
sha512 = "fLYrprWB8P3GyJmKN/St8H7t0DxLQv/ozuVjYeWlXkJoDbKXT7S6OCzAx55YhUF6zf1MSQT1+UR3YVR20m0utw==";
};
};
"named-placeholders-1.1.2" = {
@ -6268,13 +6277,13 @@ let
sha512 = "7bdYcv7V6U3KAtWjpQJJBww0UEsWuh4yQ/EjNf2HeO/NnvKjpvhEIe/A/TleP6wtmSKnUnghs5A9jUoK6iDdkA==";
};
};
"pg-8.7.3" = {
"pg-8.8.0" = {
name = "pg";
packageName = "pg";
version = "8.7.3";
version = "8.8.0";
src = fetchurl {
url = "https://registry.npmjs.org/pg/-/pg-8.7.3.tgz";
sha512 = "HPmH4GH4H3AOprDJOazoIcpI49XFsHCe8xlrjHkWiapdbHK+HLtbm/GQzXYAZwmPju/kzKhjaSfMACG+8cgJcw==";
url = "https://registry.npmjs.org/pg/-/pg-8.8.0.tgz";
sha512 = "UXYN0ziKj+AeNNP7VDMwrehpACThH7LUl/p8TDFpEUuSejCUIwGSfxpHsPvtM6/WXFy6SU4E5RG4IJV/TZAGjw==";
};
};
"pg-connection-string-2.5.0" = {
@ -6304,13 +6313,13 @@ let
sha512 = "1KdmFGGTP6jplJoI8MfvRlfvMiyBivMRP7/ffh4a11RUFJ7kC2J0ZHlipoKiH/1hz+DVgceon9U2qbaHpPeyPg==";
};
};
"pg-pool-3.5.1" = {
"pg-pool-3.5.2" = {
name = "pg-pool";
packageName = "pg-pool";
version = "3.5.1";
version = "3.5.2";
src = fetchurl {
url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.1.tgz";
sha512 = "6iCR0wVrro6OOHFsyavV+i6KYL4lVNyYAB9RD18w66xSzN+d8b66HiwuP30Gp1SH5O9T82fckkzsRjlrhD0ioQ==";
url = "https://registry.npmjs.org/pg-pool/-/pg-pool-3.5.2.tgz";
sha512 = "His3Fh17Z4eg7oANLob6ZvH8xIVen3phEZh2QuyrIl4dQSDVEabNducv6ysROKpDNPSD+12tONZVWfSgMvDD9w==";
};
};
"pg-promise-10.11.1" = {
@ -6475,6 +6484,15 @@ let
sha512 = "9ZhXKM/rw350N1ovuWHbGxnGh/SNJ4cnxHiM0rxE4VN41wsg8P8zWn9hv/buK00RP4WvlOyr/RBDiptyxVbkZQ==";
};
};
"posthog-node-1.3.0" = {
name = "posthog-node";
packageName = "posthog-node";
version = "1.3.0";
src = fetchurl {
url = "https://registry.npmjs.org/posthog-node/-/posthog-node-1.3.0.tgz";
sha512 = "2+VhqiY/rKIqKIXyvemBFHbeijHE25sP7eKltnqcFqAssUE6+sX6vusN9A4luzToOqHQkUZexiCKxvuGagh7JA==";
};
};
"prelude-ls-1.1.2" = {
name = "prelude-ls";
packageName = "prelude-ls";
@ -7411,13 +7429,13 @@ let
sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==";
};
};
"simple-git-3.12.0" = {
"simple-git-3.13.0" = {
name = "simple-git";
packageName = "simple-git";
version = "3.12.0";
version = "3.13.0";
src = fetchurl {
url = "https://registry.npmjs.org/simple-git/-/simple-git-3.12.0.tgz";
sha512 = "cy1RSRFHGZSrlYa3MnUuNVOXLUdifEZD2X8+AZjg8mKCdRvtCFSga6acq5N2g0ggb8lH3jBi369MrFZ+Y6sfsA==";
url = "https://registry.npmjs.org/simple-git/-/simple-git-3.13.0.tgz";
sha512 = "VYrs3joeHvWGcN3K135RpGpPjm4AHYeOrclwew6LlfHgq6ozQYIW2yMnmjf4PCgVOuSYCbXkdUjyiFawuJz8MA==";
};
};
"simple-lru-cache-0.0.2" = {
@ -7465,13 +7483,13 @@ let
sha512 = "LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==";
};
};
"snowflake-sdk-1.6.12" = {
"snowflake-sdk-1.6.13" = {
name = "snowflake-sdk";
packageName = "snowflake-sdk";
version = "1.6.12";
version = "1.6.13";
src = fetchurl {
url = "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.6.12.tgz";
sha512 = "nkwtsWsZr4KrloLgpMpLgCnJIxfcuWlD4sqR53kn8BQRmhOi6cSBgnvZmoYcFvW2arVvfHh/Dc3vOQ/4OuRSLg==";
url = "https://registry.npmjs.org/snowflake-sdk/-/snowflake-sdk-1.6.13.tgz";
sha512 = "X/eiT4v/yw6+aLdEJK85te4lvkB45lkTzad2CtJdofzxWqtfi1CB2hafTJTfXoDKKJTxLTyYVo+zIYhvhcEarA==";
};
};
"socks-2.7.0" = {
@ -7798,13 +7816,13 @@ let
sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==";
};
};
"swagger-ui-dist-4.13.2" = {
"swagger-ui-dist-4.14.0" = {
name = "swagger-ui-dist";
packageName = "swagger-ui-dist";
version = "4.13.2";
version = "4.14.0";
src = fetchurl {
url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.13.2.tgz";
sha512 = "jHL6UyIYpvEI7NsuWd0R3hJaPQTg6Oo4qSBo+oVfOEkv6rrQm/475RGSMmZgV6ajp+Sgrp9CqrDjQYAgQqiv1A==";
url = "https://registry.npmjs.org/swagger-ui-dist/-/swagger-ui-dist-4.14.0.tgz";
sha512 = "TBzhheU15s+o54Cgk9qxuYcZMiqSm/SkvKnapoGHOF66kz0Y5aGjpzj5BT/vpBbn6rTPJ9tUYXQxuDWfsjiGMw==";
};
};
"swagger-ui-express-4.5.0" = {
@ -8050,13 +8068,13 @@ let
sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==";
};
};
"tough-cookie-4.0.0" = {
"tough-cookie-4.1.1" = {
name = "tough-cookie";
packageName = "tough-cookie";
version = "4.0.0";
version = "4.1.1";
src = fetchurl {
url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz";
sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==";
url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.1.tgz";
sha512 = "Ns3k8QxkEzIfLZbRwLOrMPDqRa1BEAl4BzNNAOYY4BhBmEkf+HvP467F4NrD9loK3NcYflWOpUH3LJg0ehq/rQ==";
};
};
"tr46-0.0.3" = {
@ -8257,6 +8275,15 @@ let
sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==";
};
};
"universalify-0.2.0" = {
name = "universalify";
packageName = "universalify";
version = "0.2.0";
src = fetchurl {
url = "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz";
sha512 = "CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==";
};
};
"universalify-2.0.0" = {
name = "universalify";
packageName = "universalify";
@ -8482,13 +8509,13 @@ let
sha512 = "AuECTSvwu2OHLAZYhG716YzwodKCIJxB6u1zG7PgSQwIgAlEaoXH52bxdcvT8GkGjnYK7r7yWDW0m0sOsPuBjQ==";
};
};
"vue-2.7.8" = {
"vue-2.7.10" = {
name = "vue";
packageName = "vue";
version = "2.7.8";
version = "2.7.10";
src = fetchurl {
url = "https://registry.npmjs.org/vue/-/vue-2.7.8.tgz";
sha512 = "ncwlZx5qOcn754bCu5/tS/IWPhXHopfit79cx+uIlLMyt3vCMGcXai5yCG5y+I6cDmEj4ukRYyZail9FTQh7lQ==";
url = "https://registry.npmjs.org/vue/-/vue-2.7.10.tgz";
sha512 = "HmFC70qarSHPXcKtW8U8fgIkF6JGvjEmDiVInTkKZP0gIlEPhlVlcJJLkdGIDiNkIeA2zJPQTWJUI4iWe+AVfg==";
};
};
"vue-color-2.8.1" = {
@ -8938,10 +8965,10 @@ in
n8n = nodeEnv.buildNodePackage {
name = "n8n";
packageName = "n8n";
version = "0.191.0";
version = "0.192.0";
src = fetchurl {
url = "https://registry.npmjs.org/n8n/-/n8n-0.191.0.tgz";
sha512 = "HnnhsQqWcx4azUB9DZHtdT+nJBr7gWEr5c/sr7PFrcZwLoF1fW8ydxTGj6weyl62GggrE+RBR4MuKRVRNY7hcg==";
url = "https://registry.npmjs.org/n8n/-/n8n-0.192.0.tgz";
sha512 = "5Rv7u7cMKaThA6py4MSa/nIPmWEmyIa9x2r0xxMhaMFzsfbRWDokXYdsYVW+/ICSi6frZLFFjCmhSP5Evj/YyQ==";
};
dependencies = [
sources."@apidevtools/json-schema-ref-parser-8.0.0"
@ -8971,9 +8998,9 @@ in
(sources."@azure/core-http-2.2.6" // {
dependencies = [
sources."@azure/core-tracing-1.0.0-preview.13"
sources."tough-cookie-4.0.0"
sources."tough-cookie-4.1.1"
sources."tslib-2.4.0"
sources."universalify-0.1.2"
sources."universalify-0.2.0"
];
})
sources."@azure/core-http-compat-1.3.0"
@ -9031,7 +9058,7 @@ in
sources."tslib-2.4.0"
];
})
sources."@babel/parser-7.18.11"
sources."@babel/parser-7.18.13"
sources."@babel/runtime-7.18.9"
sources."@colors/colors-1.5.0"
(sources."@dabh/diagnostics-2.0.3" // {
@ -9050,7 +9077,7 @@ in
sources."string_decoder-0.10.31"
];
})
sources."@js-joda/core-5.3.0"
sources."@js-joda/core-5.3.1"
sources."@jsdevtools/ono-7.1.3"
sources."@kafkajs/confluent-schema-registry-1.0.6"
sources."@kwsites/file-exists-1.1.1"
@ -9066,7 +9093,7 @@ in
sources."tslib-2.4.0"
];
})
(sources."@oclif/core-1.14.1" // {
(sources."@oclif/core-1.16.0" // {
dependencies = [
(sources."chalk-4.1.2" // {
dependencies = [
@ -9101,7 +9128,7 @@ in
];
})
sources."@oclif/screen-3.0.2"
sources."@opentelemetry/api-1.1.0"
sources."@opentelemetry/api-1.2.0"
sources."@rudderstack/rudder-sdk-node-1.0.6"
sources."@segment/loosely-validate-event-2.0.0"
sources."@selderee/plugin-htmlparser2-0.6.0"
@ -9124,14 +9151,14 @@ in
sources."@types/glob-7.2.0"
sources."@types/json-diff-0.5.2"
sources."@types/json-schema-7.0.11"
sources."@types/jsonwebtoken-8.5.8"
sources."@types/lodash-4.14.183"
sources."@types/jsonwebtoken-8.5.9"
sources."@types/lodash-4.14.184"
sources."@types/lodash.intersection-4.4.7"
sources."@types/lossless-json-1.0.1"
sources."@types/mime-3.0.1"
sources."@types/minimatch-3.0.5"
sources."@types/minimatch-5.1.0"
sources."@types/multer-1.4.7"
sources."@types/node-18.7.6"
sources."@types/node-18.7.13"
(sources."@types/node-fetch-2.6.2" // {
dependencies = [
sources."form-data-3.0.1"
@ -9148,7 +9175,7 @@ in
sources."@types/tough-cookie-2.3.8"
sources."@types/tunnel-0.0.3"
sources."@types/yamljs-0.2.31"
sources."@vue/compiler-sfc-2.7.8"
sources."@vue/compiler-sfc-2.7.10"
sources."abbrev-1.1.1"
sources."accepts-1.3.8"
sources."access-control-1.0.1"
@ -9207,7 +9234,7 @@ in
})
sources."available-typed-arrays-1.0.5"
sources."avsc-5.7.5"
(sources."aws-sdk-2.1196.0" // {
(sources."aws-sdk-2.1202.0" // {
dependencies = [
sources."buffer-4.9.2"
sources."events-1.1.1"
@ -9375,7 +9402,7 @@ in
sources."cookie-parser-1.4.6"
sources."cookie-signature-1.0.6"
sources."copy-to-2.0.1"
sources."core-js-3.24.1"
sources."core-js-3.25.0"
sources."core-util-is-1.0.3"
sources."crc-32-1.2.2"
sources."cron-1.7.2"
@ -9505,7 +9532,7 @@ in
];
})
sources."find-up-4.1.0"
sources."flatted-3.2.6"
sources."flatted-3.2.7"
sources."fn.name-1.1.0"
sources."follow-redirects-1.15.1"
sources."for-each-0.3.3"
@ -9666,7 +9693,7 @@ in
sources."is-windows-1.0.2"
sources."is-wsl-2.2.0"
sources."isarray-1.0.0"
sources."isbot-3.5.0"
sources."isbot-3.5.2"
sources."isexe-2.0.0"
sources."iso-639-1-2.1.15"
sources."isstream-0.1.2"
@ -9714,7 +9741,7 @@ in
sources."iconv-lite-0.6.3"
];
})
sources."libphonenumber-js-1.10.12"
sources."libphonenumber-js-1.10.13"
sources."libqp-1.1.0"
sources."limiter-1.1.5"
sources."linkify-it-4.0.0"
@ -9814,7 +9841,7 @@ in
];
})
sources."moment-2.29.4"
sources."moment-timezone-0.5.34"
sources."moment-timezone-0.5.35"
sources."monaco-editor-0.30.1"
sources."mongodb-3.7.3"
sources."moo-0.5.1"
@ -9831,7 +9858,7 @@ in
];
})
sources."ms-2.1.2"
(sources."mssql-8.1.3" // {
(sources."mssql-8.1.4" // {
dependencies = [
sources."commander-9.4.0"
];
@ -9845,15 +9872,15 @@ in
];
})
sources."mz-2.7.0"
sources."n8n-core-0.131.0"
sources."n8n-design-system-0.31.0"
sources."n8n-editor-ui-0.157.0"
(sources."n8n-nodes-base-0.189.0" // {
sources."n8n-core-0.132.0"
sources."n8n-design-system-0.32.0"
sources."n8n-editor-ui-0.158.0"
(sources."n8n-nodes-base-0.190.0" // {
dependencies = [
sources."iconv-lite-0.6.3"
];
})
sources."n8n-workflow-0.113.0"
sources."n8n-workflow-0.114.0"
(sources."named-placeholders-1.1.2" // {
dependencies = [
sources."lru-cache-4.1.5"
@ -9972,11 +9999,11 @@ in
})
sources."peek-readable-4.1.0"
sources."performance-now-2.1.0"
sources."pg-8.7.3"
sources."pg-8.8.0"
sources."pg-connection-string-2.5.0"
sources."pg-int8-1.0.1"
sources."pg-minify-1.6.2"
sources."pg-pool-3.5.1"
sources."pg-pool-3.5.2"
(sources."pg-promise-10.11.1" // {
dependencies = [
sources."pg-8.7.1"
@ -10003,6 +10030,12 @@ in
sources."postgres-bytea-1.0.0"
sources."postgres-date-1.0.7"
sources."postgres-interval-1.2.0"
(sources."posthog-node-1.3.0" // {
dependencies = [
sources."axios-0.24.0"
sources."ms-2.1.3"
];
})
sources."prelude-ls-1.1.2"
sources."printj-1.1.2"
sources."process-0.11.10"
@ -10149,7 +10182,7 @@ in
})
sources."side-channel-1.0.4"
sources."signal-exit-3.0.7"
sources."simple-git-3.12.0"
sources."simple-git-3.13.0"
sources."simple-lru-cache-0.0.2"
sources."simple-swizzle-0.2.2"
sources."slash-3.0.0"
@ -10159,7 +10192,7 @@ in
sources."tslib-2.4.0"
];
})
(sources."snowflake-sdk-1.6.12" // {
(sources."snowflake-sdk-1.6.13" // {
dependencies = [
sources."axios-0.27.2"
sources."debug-3.2.7"
@ -10216,7 +10249,7 @@ in
sources."supports-color-7.2.0"
sources."supports-hyperlinks-2.2.0"
sources."supports-preserve-symlinks-flag-1.0.0"
sources."swagger-ui-dist-4.13.2"
sources."swagger-ui-dist-4.14.0"
sources."swagger-ui-express-4.5.0"
(sources."tar-6.1.11" // {
dependencies = [
@ -10344,7 +10377,7 @@ in
];
})
sources."vm2-3.9.10"
sources."vue-2.7.8"
sources."vue-2.7.10"
sources."vue-color-2.8.1"
sources."vue-fragment-1.5.1"
sources."vue-i18n-8.27.2"

View file

@ -2,11 +2,11 @@
mkDerivation rec {
pname = "owncloud-client";
version = "2.10.1.7187";
version = "2.11.0.8354";
src = fetchurl {
url = "https://download.owncloud.com/desktop/ownCloud/stable/${version}/source/ownCloud-${version}.tar.xz";
sha256 = "sha256-SNabKv5z7viDI3XDQ2mWjEgFKAGSR5K9sI3Tu5eZbwU=";
sha256 = "sha256-YraWvGgeF5b1+3i5Jlk+bwvAULr7KFOSX8y0ZoPpljI=";
};
nativeBuildInputs = [ pkg-config cmake extra-cmake-modules ];

View file

@ -4,12 +4,12 @@ with lib;
stdenv.mkDerivation rec {
pname = "marvin";
version = "22.8.0";
version = "22.13.0";
src = fetchurl {
name = "marvin-${version}.deb";
url = "http://dl.chemaxon.com/marvin/${version}/marvin_linux_${versions.majorMinor version}.deb";
sha256 = "sha256-dmG2p4KqzjLuuVw+wPWaxVoqOqba8Tx5l44PauWpqv4=";
sha256 = "sha256-cZ9SFdKNURhcInM6zZNwoi+WyHAsGCeAgkfpAVi7GYE=";
};
nativeBuildInputs = [ dpkg makeWrapper ];

View file

@ -2,13 +2,13 @@
buildGoModule rec {
pname = "gh";
version = "2.14.6";
version = "2.14.7";
src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
sha256 = "sha256-lortdE+qp+ejxu/QJKz+wNzaNqxcG83nHZi1txblr7E=";
sha256 = "sha256-IOpMq9Oyy51UzaPdkGQJQ15jr1JH6iMlvozurIQy0SY=";
};
vendorSha256 = "sha256-ZgUU9G9BLjGSDvS15fmSpvGD0POKuX9mTF9+XxYciZI=";

View file

@ -12,16 +12,16 @@
rustPlatform.buildRustPackage rec {
pname = "gitoxide";
version = "0.14.0";
version = "0.15.0";
src = fetchFromGitHub {
owner = "Byron";
repo = "gitoxide";
rev = "v${version}";
sha256 = "sha256-lppg5x2VMzRo4SqAFgtiklc1WfTXi/jty92Z91CxZPM=";
sha256 = "sha256-6U2B+L/42okpYJrJ6gjS8tRxstFq1QBFq4ZZtzwOwac=";
};
cargoSha256 = "sha256-j4riS3OzfbEriAlqcjq6GcyTrK5sjFEopMesmWTGxp4=";
cargoSha256 = "sha256-cOQ9GRoQxZInoijRW4BtsNPEVipa8YcBo8aj5D2u+u0=";
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = if stdenv.isDarwin

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "stdman";
version = "2021.12.21";
version = "2022.07.30";
src = fetchFromGitHub {
owner = "jeaye";
repo = "stdman";
rev = version;
sha256 = "sha256-wOMQzC5w8aDmxNxQ5HK8jMgoow1wXBfHGUwFBw2WiPA=";
sha256 = "sha256-ABogxVQS6p3wUV8GuB2tp7vMxe63t51dNoclEnYpa/0=";
};
outputDevdoc = "out";

View file

@ -19,6 +19,11 @@ stdenv.mkDerivation rec {
url = "https://github.com/WebAssembly/binaryen/commit/93b8849d9f98ef7ed812938ff0b3219819c2be77.patch";
sha256 = "sha256-Duan/B9A+occ5Lj2SbRX793xIfhzHbdYPI5PyTNCZoU=";
})
# https://github.com/WebAssembly/binaryen/pull/4913
(fetchpatch {
url = "https://github.com/WebAssembly/binaryen/commit/b70fe755aa4c90727edfd91dc0a9a51febf0239d.patch";
sha256 = "sha256-kjPLbdiMVQepSJ7J1gK6dRSMI/2SsH39k7W5AMOIrkM=";
})
];
nativeBuildInputs = [ cmake python3 ];

View file

@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, makeWrapper, jre, ncurses }:
stdenv.mkDerivation rec {
version = "3.1.0";
version = "3.1.3";
pname = "scala-bare";
src = fetchurl {
url = "https://github.com/lampepfl/dotty/releases/download/${version}/scala3-${version}.tar.gz";
sha256 = "9bsZ2FtIb6AvA3W3r2Vv0dPNicuYjMBz3X48z45Avv8=";
sha256 = "sha256-nh7v3Kt3stKpBXs9b3gwFZHpwnUTySQT88NTp3CT8tc=";
};
propagatedBuildInputs = [ jre ncurses.dev ] ;

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
pname = "sqlcipher";
version = "4.5.1";
version = "4.5.2";
src = fetchFromGitHub {
owner = "sqlcipher";
repo = "sqlcipher";
rev = "v${version}";
sha256 = "sha256-cvbR3tav6DjIdJB/x2q5Oq7ju9q63z75b6q1uHYY9bE=";
sha256 = "sha256-EUm4akVWUiK8U6Je1uWMo8KLQLsk57kOFCCU5Uajjt8=";
};
nativeBuildInputs = [ installShellFiles tcl ];

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchFromGitHub, autoreconfHook, doxygen
{ lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook, doxygen
, numactl, rdma-core, libbfd, libiberty, perl, zlib, symlinkJoin
, enableCuda ? false
, cudatoolkit
@ -22,6 +22,16 @@ in stdenv.mkDerivation rec {
sha256 = "sha256-DWiOmqxBAAH8DE7H0teoKyp+m3wYEo652ac7ey43Erg=";
};
patches = [
# Pull upstream fix for binutils-2.39:
# https://github.com/openucx/ucx/pull/8450
(fetchpatch {
name = "binutils-2.39.patch";
url = "https://github.com/openucx/ucx/commit/6b6128efd416831cec3a1820f7d1c8e648b79448.patch";
sha256 = "sha256-ci00nZG8iOUEFXbmgr/5XkIfiw4eAAdG1wcEYjQSiT8=";
})
];
nativeBuildInputs = [ autoreconfHook doxygen ];
buildInputs = [

View file

@ -2,13 +2,13 @@
buildDunePackage rec {
pname = "camlp-streams";
version = "5.0";
version = "5.0.1";
src = fetchFromGitHub {
owner = "ocaml";
repo = pname;
rev = "v${version}";
sha256 = "sha256:1wd5k0irzwi841b27pbx0n5fdybbgx97184zm8cjajizd2j8w0g5";
sha256 = "sha256-kHuFBqu0mjFv53sOtmFZcX2reo5ToaOpItP7P53bfGQ=";
};
meta = {

View file

@ -9,7 +9,7 @@
buildPythonPackage rec {
pname = "fjaraskupan";
version = "1.0.2";
version = "2.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
@ -18,7 +18,7 @@ buildPythonPackage rec {
owner = "elupus";
repo = pname;
rev = version;
sha256 = "sha256-nUrgV4keJpYRkKZE+udvmPdCW3O3YQTS1ye40IdA7vA=";
hash = "sha256-ohadGQxtW8YcSDIF7xZhy84xu0Vi5yj/QEVi8WRRBSI=";
};
propagatedBuildInputs = [
@ -30,10 +30,12 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [ "fjaraskupan" ];
pythonImportsCheck = [
"fjaraskupan"
];
meta = with lib; {
description = "Python module for controlling Fjäråskupan kitchen fans";
description = "Module for controlling Fjäråskupan kitchen fans";
homepage = "https://github.com/elupus/fjaraskupan";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];

View file

@ -21,7 +21,7 @@
buildPythonPackage rec {
pname = "openai";
version = "0.22.1";
version = "0.23.0";
disabled = pythonOlder "3.7.1";
@ -30,7 +30,7 @@ buildPythonPackage rec {
owner = "openai";
repo = "openai-python";
rev = "v${version}";
sha256 = "sha256-QUnsm0ui1BFlLqAlH1bp7uDbhiRigePrAPAkSRjftM4=";
sha256 = "sha256-VH1XR2FocRX5AYpCruAKwQUXjXqvdJsVwKdtot5Bo+Y=";
};
propagatedBuildInputs = [

View file

@ -13,7 +13,7 @@
buildPythonPackage rec {
pname = "pubnub";
version = "6.5.1";
version = "7.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
@ -21,8 +21,8 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = pname;
repo = "python";
rev = "refs/tags/v${version}";
hash = "sha256-+x58aEvemav0Pz2jeICLFG36FTtZCu5dk/arb+j5nmo=";
rev = "refs/tags/${version}";
hash = "sha256-+uW6fsYsn/3PGK4wTQLKcoq+NFNI8SjJ9cL6Q3Fh2uQ=";
};
propagatedBuildInputs = [

View file

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchPypi
, hypothesis
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "pyisbn";
version = "1.3.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "06fm9rn31cb4b61hzy63cnwfjpppgyy517k8a04gzcv9g60n7xbh";
};
postPatch = ''
substituteInPlace setup.cfg \
--replace "--cov pyisbn --cov-report term-missing --no-cov-on-fail" ""
'';
checkInputs = [
hypothesis
pytestCheckHook
];
pythonImportsCheck = [
"pyisbn"
];
meta = with lib; {
description = "Python module for working with 10- and 13-digit ISBNs";
homepage = "https://github.com/JNRowe/pyisbn";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ eigengrau ];
};
}

View file

@ -6,13 +6,13 @@
buildPythonPackage rec {
pname = "pypinyin";
version = "0.46.0";
version = "0.47.0";
src = fetchFromGitHub {
owner = "mozillazg";
repo = "python-pinyin";
rev = "v${version}";
sha256 = "sha256-KPyFvO6TR0mg09xcraHFaWklJgzF5oqk3d8H+G4gh3I=";
rev = "refs/tags/v${version}";
sha256 = "sha256-DsSrWbnBFEGQTXP1+C8j5RqSplDitsFl+13YwwE+3pE=";
};
postPatch = ''

View file

@ -9,12 +9,12 @@
buildPythonPackage rec {
pname = "pytest-httpserver";
version = "1.0.4";
version = "1.0.5";
src = fetchPypi {
pname = "pytest_httpserver";
inherit version;
sha256 = "6de464ba5f74628d6182ebbdcb56783edf2c9b0caf598dc35c11f014f24a3f0d";
sha256 = "sha256-rjKWYm0KEOg1qfQjxhtFQFR9WCQivgVMP8wIYmuqECQ=";
};
propagatedBuildInputs = [ werkzeug ];

View file

@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "slowapi";
version = "0.1.5";
version = "0.1.6";
format = "pyproject";
disabled = pythonOlder "3.6";
@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "laurentS";
repo = pname;
rev = "v${version}";
sha256 = "1wjnlhjfgil86h6i5yij723ncg18rqdprs1q6i68w4msaspwpxg9";
sha256 = "sha256-3ZkQnroHMCHuTPH/cvi/iWndvdyQ/ZJQ2Qtu1CZyeGg=";
};
nativeBuildInputs = [

View file

@ -11,7 +11,7 @@
buildPythonPackage rec {
pname = "twilio";
version = "7.12.1";
version = "7.13.0";
format = "setuptools";
disabled = pythonOlder "3.6";
@ -20,7 +20,7 @@ buildPythonPackage rec {
owner = "twilio";
repo = "twilio-python";
rev = "refs/tags/${version}";
hash = "sha256-gM4P65YMT61kCkvUJPc0fvs+CNYGdgD1dkJ8h3qYzWs=";
hash = "sha256-FlleulcjroFyzI6JWr1sUe/jgXlevHwzZZpyAvCQRu8=";
};
propagatedBuildInputs = [

View file

@ -10,16 +10,18 @@
buildPythonPackage rec {
pname = "whitenoise";
version = "6.0.0";
version = "6.2.0";
format = "setuptools";
disabled = pythonOlder "3.7";
__darwinAllowLocalNetworking = true;
src = fetchFromGitHub {
owner = "evansd";
repo = pname;
rev = version;
hash = "sha256-mUjyX4eQOiMweje6UPyfyJsiHwzF5OQ93KuxFedWxbQ=";
hash = "sha256-HcWWWMIuU8kfcOnntgXUnHD3pFogq8OEAd3wRtCnXjQ=";
};
propagatedBuildInputs = [
@ -50,7 +52,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Radically simplified static file serving for WSGI applications";
homepage = "http://whitenoise.evans.io/";
homepage = "https://whitenoise.evans.io/";
license = licenses.mit;
maintainers = with maintainers; [ ];
};

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "mill";
version = "0.10.5";
version = "0.10.6";
src = fetchurl {
url = "https://github.com/com-lihaoyi/mill/releases/download/${version}/${version}-assembly";
hash = "sha256-oz61tJYNwGQEImeg2fMIKHIKVA2Ic6nF5VG5eQt3cAY=";
hash = "sha256-4lbW755RLgWyihjeb/KB5CwQsBwXBzDT4PUSyBQiSpE=";
};
nativeBuildInputs = [ makeWrapper ];

View file

@ -1,4 +1,4 @@
{ callPackage, python3, fetchpatch, enableNpm ? true }:
{ callPackage, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
@ -7,17 +7,9 @@ let
in
buildNodejs {
inherit enableNpm;
version = "18.7.0";
sha256 = "sha256-iDSjPJLf5rqJA+ZxXK6qJd/0ZX5wPFTNBuwRNJPiw8I=";
version = "18.8.0";
sha256 = "sha256-K12YJdBe3mYU8WaKjZfXdP6S68gQiOxf31gYTc48hrk=";
patches = [
./disable-darwin-v8-system-instrumentation.patch
# Fix npm silently fail without a HOME directory https://github.com/npm/cli/issues/4996
(fetchpatch {
url = "https://github.com/npm/cli/commit/9905d0e24c162c3f6cc006fa86b4c9d0205a4c6f.patch";
sha256 = "sha256-RlabXWtjzTZ5OgrGf4pFkolonvTDIPlzPY1QcYDd28E=";
includes = [ "deps/npm/lib/npm.js" "deps/npm/lib/utils/log-file.js" ];
stripLen = 1;
extraPrefix = "deps/npm/";
})
];
}

View file

@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "system76-firmware";
# Check Makefile when updating, make sure postInstall matches make install
version = "1.0.39";
version = "1.0.42";
src = fetchFromGitHub {
owner = "pop-os";
repo = pname;
rev = version;
sha256 = "sha256-nPHBL73hmvW9z5SQjmfu+ozMXxUEajNQxNtE/V9QwZ0=";
sha256 = "sha256-8raRfmNAvgxBVsFeOu/XPs5YU1wPpRBo3Cog/UpE5/o=";
};
nativeBuildInputs = [ pkg-config makeWrapper ];
@ -17,7 +17,7 @@ rustPlatform.buildRustPackage rec {
cargoBuildFlags = [ "--workspace" ];
cargoSha256 = "sha256-BrzicLj7FbUqRG1BgQIRqh801tRQpRZkHSiX3ekAYqc=";
cargoSha256 = "sha256-aKyLAISZlQz5e8MvOoydAZ4bwCEZ1K3FldyoG6R9FJU=";
# Purposefully don't install systemd unit file, that's for NixOS
postInstall = ''

View file

@ -8,13 +8,14 @@
#
# See also <nixos/modules/profiles/hardened.nix>
{ lib, version }:
{ stdenv, lib, version }:
with lib;
with lib.kernel;
with (lib.kernel.whenHelpers version);
assert (versionAtLeast version "4.9");
assert (stdenv.hostPlatform.isx86_64 -> versions.majorMinor version != "5.4");
{
# Report BUG() conditions and kill the offending process.

View file

@ -1,15 +1,16 @@
{ lib, stdenv, fetchurl, pkg-config, gnutls, liburcu, lmdb, libcap_ng, libidn2, libunistring
, systemd, nettle, libedit, zlib, libiconv, libintl, libmaxminddb, libbpf, nghttp2, libmnl
, autoreconfHook, nixosTests, knot-resolver
, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "knot-dns";
version = "3.1.9";
version = "3.2.0";
src = fetchurl {
url = "https://secure.nic.cz/files/knot-dns/knot-${version}.tar.xz";
sha256 = "sha256-s8pPHUROlf8n0gltPMWkfBDB1poeSIWuipcngfYnnYI=";
sha256 = "426d120994daf93af348aa6c48428e583dd286656415de4daf7a59106fd98631";
};
outputs = [ "bin" "out" "dev" ];
@ -21,6 +22,11 @@ stdenv.mkDerivation rec {
];
patches = [
(fetchpatch {
name = "test-32bit-xdp.patch";
url = "https://gitlab.nic.cz/knot/knot-dns/-/commit/325dfeefdfd8a3dd318cfe0ab52cd7efbf839ccd.diff";
sha256 = "E5J2Jf4/m5H59Xn6TyATu2gKs3CgShYlMF2Qj1SW1zw=";
})
# Don't try to create directories like /var/lib/knot at build time.
# They are later created from NixOS itself.
./dont-create-run-time-dirs.patch

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "metabase";
version = "0.43.3";
version = "0.44.1";
src = fetchurl {
url = "https://downloads.metabase.com/v${version}/metabase.jar";
hash = "sha256-XUJNnyzBGYC3jMi1pVvdMNRo8zxkFcxzdHjytmCAVqM=";
hash = "sha256-TIQrmzdLD/pwMbd1dyLh3d2bauu7Wv6C2CtuuXMNN5E=";
};
nativeBuildInputs = [ makeWrapper ];

View file

@ -5,17 +5,17 @@
buildGoModule rec {
pname = "serf";
version = "0.9.8";
version = "0.10.0";
rev = "a2bba5676d6e37953715ea10e583843793a0c507";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "serf";
rev = "v${version}";
sha256 = "sha256-UWCxzwV2bcT8Sfl296HpBThe+qYX19M7sNcEJHs/sXc=";
sha256 = "sha256-5P2Pq2yzTGyw0hLwHdJB4YB+du0D8Q3MagRH3WXZ100=";
};
vendorSha256 = "sha256-DaPcCuj0KGpuOC6XynltMBE9wO7w5qKrTChC401249o=";
vendorSha256 = "sha256-2v2KcULgrwMRVGA91p7LJQPyQqwHLHhJa1WSivXHQG4=";
subPackages = [ "cmd/serf" ];

View file

@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
pname = "mtools";
version = "4.0.38";
version = "4.0.40";
src = fetchurl {
url = "mirror://gnu/mtools/${pname}-${version}.tar.bz2";
sha256 = "sha256-e5RIX0huffCMymiwChZKE8049MY8uGhNGIdZ7nvF5yk=";
sha256 = "sha256-oi/KQjVAEd0ik6f1HyKLRuu9gC53QLCXWRKv7LedXfQ=";
};
patches = lib.optional stdenv.isDarwin ./UNUSED-darwin.patch;

View file

@ -1,12 +1,13 @@
{ lib, fetchurl, desktop-file-utils, file, python3Packages }:
python3Packages.buildPythonApplication rec {
let version = "2022.7";
in python3Packages.buildPythonApplication {
pname = "mimeo";
version = "2021.11";
inherit version;
src = fetchurl {
url = "https://xyne.dev/projects/mimeo/src/${pname}-${version}.tar.xz";
sha256 = "1fi8svn4hg2hmvv28j026sks1hc0v8wh974g7ixcwfcg2xda6c4p";
url = "https://xyne.dev/projects/mimeo/src/mimeo-${version}.tar.xz";
hash = "sha256-xzWPMtlKj35mkE04jcGalbf/94qEOOUi9pvZgSPgdj8=";
};
buildInputs = [ file desktop-file-utils ];
@ -31,7 +32,7 @@ python3Packages.buildPythonApplication rec {
meta = with lib; {
description = "Open files by MIME-type or file name using regular expressions";
homepage = "https://xyne.dev/projects/mimeo/";
license = [ licenses.gpl2 ];
license = [ licenses.gpl2Only ];
maintainers = [ maintainers.rycee ];
platforms = platforms.unix;
};

View file

@ -4,13 +4,13 @@
stdenv.mkDerivation rec {
pname = "tgt";
version = "1.0.82";
version = "1.0.84";
src = fetchFromGitHub {
owner = "fujita";
repo = pname;
rev = "v${version}";
sha256 = "sha256-uVd1qPNBIqs9+pRnRP/Q8Z5sXpRdcwBejKjt0BJbXWA=";
sha256 = "sha256-NlEEakmut4WMI+mpm+SJOgHmWELRcl/dZJspks3VoqY=";
};
nativeBuildInputs = [ libxslt docbook_xsl makeWrapper ];

View file

@ -36,7 +36,7 @@ let
modDirVersion' = builtins.replaceStrings [ kernel.version ] [ version ] kernel.modDirVersion;
in kernel.override {
structuredExtraConfig = import ../os-specific/linux/kernel/hardened/config.nix {
inherit lib version;
inherit stdenv lib version;
};
argsOverride = {
inherit version;

View file

@ -7780,6 +7780,8 @@ in {
pyiqvia = callPackage ../development/python-modules/pyiqvia { };
pyisbn = callPackage ../development/python-modules/pyisbn { };
pyjet = callPackage ../development/python-modules/pyjet { };
pyjks = callPackage ../development/python-modules/pyjks { };