Merge branch 'master' into staging-next
This commit is contained in:
commit
b61852cd94
24 changed files with 385 additions and 145 deletions
|
@ -55,6 +55,10 @@ in buildPythonApplication rec {
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/149812
|
||||||
|
# https://nixos.org/manual/nixpkgs/stable/#ssec-gnome-hooks-gobject-introspection
|
||||||
|
strictDeps = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Genealogy software";
|
description = "Genealogy software";
|
||||||
homepage = "https://gramps-project.org";
|
homepage = "https://gramps-project.org";
|
||||||
|
|
48
pkgs/applications/misc/kchmviewer/default.nix
Normal file
48
pkgs/applications/misc/kchmviewer/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ lib, stdenv, fetchFromGitHub, fetchpatch, qmake, wrapQtAppsHook, chmlib, libzip, qtwebengine }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "kchmviewer";
|
||||||
|
version = "8.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "gyunaev";
|
||||||
|
repo = pname;
|
||||||
|
rev = "RELEASE_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
||||||
|
sha256 = "sha256-YNpiBf6AFBCRbAZRPODvqGbQQedJJJrZFQIQyzIeBlw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# remove unused webkit
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/gyunaev/kchmviewer/commit/a4a3984465cb635822953350c571950ae726b539.patch";
|
||||||
|
sha256 = "sha256-nHW18a4SrTG4fETJmKS4ojHXwnX1d1uN1m4H0GIuI28=";
|
||||||
|
})
|
||||||
|
# QtWebengine fixes
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/gyunaev/kchmviewer/commit/9ac73e7ad15de08aab6b1198115be2eb44da7afe.patch";
|
||||||
|
sha256 = "sha256-qg2ytqA2On7jg19WZmHIOU7vLQI2hoyqItySLEA64SY=";
|
||||||
|
})
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/gyunaev/kchmviewer/commit/99a6d94bdfce9c4578cce82707e71863a71d1453.patch";
|
||||||
|
sha256 = "sha256-o8JkaMmcJObmMt+o/6ooCAPCi+yRAWDAgxV+tR5eHfY=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [ chmlib libzip qtwebengine ];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ qmake wrapQtAppsHook ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install -Dm755 bin/kchmviewer -t $out/bin
|
||||||
|
install -Dm644 packages/kchmviewer.png -t $out/share/pixmaps
|
||||||
|
install -Dm644 packages/kchmviewer.desktop -t $out/share/applications
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "CHM (Winhelp) files viewer";
|
||||||
|
homepage = "http://www.ulduzsoft.com/linux/kchmviewer/";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ sikmir ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -46,30 +46,30 @@ with lib;
|
||||||
# Those pieces of software we entirely ignore upstream's handling of, and just
|
# Those pieces of software we entirely ignore upstream's handling of, and just
|
||||||
# make sure they're in the path if desired.
|
# make sure they're in the path if desired.
|
||||||
let
|
let
|
||||||
k3sVersion = "1.23.3+k3s1"; # k3s git tag
|
k3sVersion = "1.23.4+k3s1"; # k3s git tag
|
||||||
k3sCommit = "6f4217a3405d16a1a51bbb40872d7dcb87207bb9"; # k3s git commit at the above version
|
k3sCommit = "43b1cb48200d8f6af85c16ed944d68fcc96b6506"; # k3s git commit at the above version
|
||||||
k3sRepoSha256 = "sha256-0dRusG1vL+1KbmViIUNCZK1b+FEgV6otcVUyFonHmm4=";
|
k3sRepoSha256 = "1sn7rd5hqfqvwj036blk0skmq6r8igbmiqk1dnpaqnkkddpzdgmc";
|
||||||
k3sVendorSha256 = "sha256-8Yp9csyRNSYi9wo8E8mF8cu92wG1t3l18wJ8Y4L7HEA=";
|
k3sVendorSha256 = "sha256-1/kQvNqFUWwch1JH+twWzBdjNYseoZyVObB1+s9WPM4=";
|
||||||
|
|
||||||
k3sServerVendorSha256 = "sha256-9+2k/ipAOhc8JJU+L2dwaM01Dkw+0xyrF5kt6mL19G0=";
|
k3sServerVendorSha256 = "sha256-2KIFff43jfqWdxX61aWofrjmc5mMkr5aEJRFdGpLyU8=";
|
||||||
|
|
||||||
# taken from ./manifests/traefik.yaml, extracted from '.spec.chart' https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/download#L9
|
# taken from ./manifests/traefik.yaml, extracted from '.spec.chart' https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/download#L9
|
||||||
# The 'patch' and 'minor' versions are currently hardcoded as single digits only, so ignore the trailing two digits. Weird, I know.
|
# The 'patch' and 'minor' versions are currently hardcoded as single digits only, so ignore the trailing two digits. Weird, I know.
|
||||||
traefikChartVersion = "10.9.1";
|
traefikChartVersion = "10.14.1";
|
||||||
traefikChartSha256 = "sha256-XM1DLofU1zEEFeB5bNQ7cgv102gXsToPP7SFh87QuGQ=";
|
traefikChartSha256 = "09a6cialx7nrh7nwi1gkkh8zcsasxcgb52dyx0r8bjq9ng29simj";
|
||||||
|
|
||||||
# taken from ./scripts/version.sh VERSION_ROOT https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/version.sh#L47
|
# taken from ./scripts/version.sh VERSION_ROOT https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/version.sh#L47
|
||||||
k3sRootVersion = "0.9.1";
|
k3sRootVersion = "0.11.0";
|
||||||
k3sRootSha256 = "0r2cj4l50cxkrvszpzxfk36lvbjf9vcmp6d5lvxg8qsah8lki3x8";
|
k3sRootSha256 = "016n56vi09xkvjph7wgzb2m86mhd5x65fs4d11pmh20hl249r620";
|
||||||
|
|
||||||
# taken from ./scripts/version.sh VERSION_CNIPLUGINS https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/version.sh#L45
|
# taken from ./scripts/version.sh VERSION_CNIPLUGINS https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/version.sh#L45
|
||||||
k3sCNIVersion = "0.9.1-k3s1";
|
k3sCNIVersion = "1.0.1-k3s1";
|
||||||
k3sCNISha256 = "1327vmfph7b8i14q05c2xdfzk60caflg1zhycx0mrf3d59f4zsz5";
|
k3sCNISha256 = "11ihlzzdnqf9p21y0a4ckpbxac016nm7746dcykhj26ym9zxyv92";
|
||||||
|
|
||||||
# taken from go.mod, the 'github.com/containerd/containerd' line
|
# taken from go.mod, the 'github.com/containerd/containerd' line
|
||||||
# run `grep github.com/containerd/containerd go.mod | head -n1 | awk '{print $4}'`
|
# run `grep github.com/containerd/containerd go.mod | head -n1 | awk '{print $4}'`
|
||||||
containerdVersion = "1.5.9-k3s1";
|
containerdVersion = "1.5.9-k3s1";
|
||||||
containerdSha256 = "sha256-7xlhBA6KuwFlw+jyThygv4Ow9F3xjjIUtS6x8YHwjic=";
|
containerdSha256 = "09wfy20z3c9fnla353pibpsb10xzl0f4xwp8qdjh3fwa1q2626gg";
|
||||||
|
|
||||||
# run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag
|
# run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag
|
||||||
criCtlVersion = "1.22.0-k3s1";
|
criCtlVersion = "1.22.0-k3s1";
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "juju";
|
pname = "juju";
|
||||||
version = "2.9.25";
|
version = "2.9.26";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "juju";
|
owner = "juju";
|
||||||
repo = "juju";
|
repo = "juju";
|
||||||
rev = "juju-${version}";
|
rev = "juju-${version}";
|
||||||
sha256 = "sha256-h4w12dmGEviV2N0BWXQKt1eUVxdbgwRKLQghnd6bLFI=";
|
sha256 = "sha256-phzjjW9KG0Z5WAzxtYdI7i2Nw4FHVNeEJswQreHga4M=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-AATK4tDg2eW8Bt8gU88tIk6I+qp5ZeUtXzD74/59c7w=";
|
vendorSha256 = "sha256-Jzd6I3a/2Un2a3/T2vzFuHwe9Y3eGEvfpZWSwjWokM0=";
|
||||||
|
|
||||||
# Disable tests because it attempts to use a mongodb instance
|
# Disable tests because it attempts to use a mongodb instance
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
328
pkgs/applications/networking/n8n/node-packages.nix
generated
328
pkgs/applications/networking/n8n/node-packages.nix
generated
|
@ -40,13 +40,13 @@ let
|
||||||
sha512 = "QmmJmexXKtPyc3/rsZR/YTLDvMatzbzAypJmLzvlfxgz/SkgnqV/D4f6F2LsK6tBj1qhyp8BoXiOebiej0zz3A==";
|
sha512 = "QmmJmexXKtPyc3/rsZR/YTLDvMatzbzAypJmLzvlfxgz/SkgnqV/D4f6F2LsK6tBj1qhyp8BoXiOebiej0zz3A==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@azure/core-lro-2.2.3" = {
|
"@azure/core-lro-2.2.4" = {
|
||||||
name = "_at_azure_slash_core-lro";
|
name = "_at_azure_slash_core-lro";
|
||||||
packageName = "@azure/core-lro";
|
packageName = "@azure/core-lro";
|
||||||
version = "2.2.3";
|
version = "2.2.4";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.2.3.tgz";
|
url = "https://registry.npmjs.org/@azure/core-lro/-/core-lro-2.2.4.tgz";
|
||||||
sha512 = "UMdlR9NsqDCLTba3EUbRjfMF4gDmWvld196JmUjbz9WWhJ2XT00OR5MXeWiR+vmGT+ETiO4hHFCi2/eGO5YVtg==";
|
sha512 = "e1I2v2CZM0mQo8+RSix0x091Av493e4bnT22ds2fcQGslTHzM2oTbswkB65nP4iEpCxBrFxOSDPKExmTmjCVtQ==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@azure/core-paging-1.2.1" = {
|
"@azure/core-paging-1.2.1" = {
|
||||||
|
@ -103,22 +103,22 @@ let
|
||||||
sha512 = "UA/8dgLy3+ZiwJjAZHxL4MUB14fFQPkaAOZ94jsTW/Z6WmoOeny2+cLk0+dyIX/iH6qSrEWKwbStEeB970B9pA==";
|
sha512 = "UA/8dgLy3+ZiwJjAZHxL4MUB14fFQPkaAOZ94jsTW/Z6WmoOeny2+cLk0+dyIX/iH6qSrEWKwbStEeB970B9pA==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@azure/storage-blob-12.8.0" = {
|
"@azure/storage-blob-12.9.0" = {
|
||||||
name = "_at_azure_slash_storage-blob";
|
name = "_at_azure_slash_storage-blob";
|
||||||
packageName = "@azure/storage-blob";
|
packageName = "@azure/storage-blob";
|
||||||
version = "12.8.0";
|
version = "12.9.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.8.0.tgz";
|
url = "https://registry.npmjs.org/@azure/storage-blob/-/storage-blob-12.9.0.tgz";
|
||||||
sha512 = "c8+Wz19xauW0bGkTCoqZH4dYfbtBniPiGiRQOn1ca6G5jsjr4azwaTk9gwjVY8r3vY2Taf95eivLzipfIfiS4A==";
|
sha512 = "ank38FdCLfJ+EoeMzCz3hkYJuZAd63ARvDKkxZYRDb+beBYf+/+gx8jNTqkq/hfyUl4dJQ/a7tECU0Y0F98CHg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@babel/runtime-7.17.2" = {
|
"@babel/runtime-7.17.7" = {
|
||||||
name = "_at_babel_slash_runtime";
|
name = "_at_babel_slash_runtime";
|
||||||
packageName = "@babel/runtime";
|
packageName = "@babel/runtime";
|
||||||
version = "7.17.2";
|
version = "7.17.7";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.2.tgz";
|
url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.7.tgz";
|
||||||
sha512 = "hzeyJyMA1YGdJTuWU0e/j4wKXrU4OMFvY2MSlaI9B7VQb0r5cxTE3EAIS2Q7Tn2RIcDkRvTA/v2JsAEhxe99uw==";
|
sha512 = "L6rvG9GDxaLgFjg41K+5Yv9OMrU98sWe+Ykmc6FDJW/+vYZMhdOMKkISgzptMaERHvS2Y2lw9MDRm2gHhlQQoA==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@colors/colors-1.5.0" = {
|
"@colors/colors-1.5.0" = {
|
||||||
|
@ -139,13 +139,13 @@ let
|
||||||
sha512 = "hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==";
|
sha512 = "hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@fontsource/open-sans-4.5.5" = {
|
"@fontsource/open-sans-4.5.6" = {
|
||||||
name = "_at_fontsource_slash_open-sans";
|
name = "_at_fontsource_slash_open-sans";
|
||||||
packageName = "@fontsource/open-sans";
|
packageName = "@fontsource/open-sans";
|
||||||
version = "4.5.5";
|
version = "4.5.6";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.5.tgz";
|
url = "https://registry.npmjs.org/@fontsource/open-sans/-/open-sans-4.5.6.tgz";
|
||||||
sha512 = "h1oUPSQpoMnDrnzIZTVS9PPBFhWXS87v6/cd9FY2Xc+GKbOVcjPZxcvUDU1TnCie2QSoYY9aifERRV/d8JHtWQ==";
|
sha512 = "bQuNS0H1VL1VLC6FwmReHlpJaICVe/seODU3Q9cpTQbJ5OtRD4TwWMrAjfTxqcFNollA6O0AlE4BnRSWMQLfvw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@icetee/ftp-0.3.15" = {
|
"@icetee/ftp-0.3.15" = {
|
||||||
|
@ -445,13 +445,13 @@ let
|
||||||
sha512 = "zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==";
|
sha512 = "zm6xBQpFDIDM6o9r6HSgDeIcLy82TKWctCXEPbJJcXb5AKmi5BNNdLXneixK4lplX3PqIVcwLBCGE/kAGnlD4A==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@types/lodash-4.14.179" = {
|
"@types/lodash-4.14.180" = {
|
||||||
name = "_at_types_slash_lodash";
|
name = "_at_types_slash_lodash";
|
||||||
packageName = "@types/lodash";
|
packageName = "@types/lodash";
|
||||||
version = "4.14.179";
|
version = "4.14.180";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.179.tgz";
|
url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.180.tgz";
|
||||||
sha512 = "uwc1x90yCKqGcIOAT6DwOSuxnrAbpkdPsUOZtwrXb4D/6wZs+6qG7QnIawDuZWg0sWpxl+ltIKCaLoMlna678w==";
|
sha512 = "XOKXa1KIxtNXgASAnwj7cnttJxS4fksBRywK/9LzRV5YxrF80BXZIGeQSuoESQ/VkUj30Ae0+YcuHc15wJCB2g==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@types/lossless-json-1.0.1" = {
|
"@types/lossless-json-1.0.1" = {
|
||||||
|
@ -472,13 +472,13 @@ let
|
||||||
sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==";
|
sha512 = "YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@types/node-12.20.46" = {
|
"@types/node-12.20.47" = {
|
||||||
name = "_at_types_slash_node";
|
name = "_at_types_slash_node";
|
||||||
packageName = "@types/node";
|
packageName = "@types/node";
|
||||||
version = "12.20.46";
|
version = "12.20.47";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/@types/node/-/node-12.20.46.tgz";
|
url = "https://registry.npmjs.org/@types/node/-/node-12.20.47.tgz";
|
||||||
sha512 = "cPjLXj8d6anFPzFvOPxS3fvly3Shm5nTfl6g8X5smexixbuGUf7hfr21J5tX9JW+UPStp/5P5R8qrKL5IyVJ+A==";
|
sha512 = "BzcaRsnFuznzOItW1WpQrDHM7plAa7GIDMZ6b5pnMbkqEtM/6WCOhvZar39oeMQP79gwvFUWjjptE7/KGcNqFg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"@types/node-17.0.21" = {
|
"@types/node-17.0.21" = {
|
||||||
|
@ -976,13 +976,13 @@ let
|
||||||
sha512 = "uUbetCWczQHbsKyX1C99XpQHBM8SWfovvaZhPIj23/1uV7SQf0WeRZbiLpw0JZm+LHTChfNgrLfDJOVoU2kU+A==";
|
sha512 = "uUbetCWczQHbsKyX1C99XpQHBM8SWfovvaZhPIj23/1uV7SQf0WeRZbiLpw0JZm+LHTChfNgrLfDJOVoU2kU+A==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"aws-sdk-2.1087.0" = {
|
"aws-sdk-2.1093.0" = {
|
||||||
name = "aws-sdk";
|
name = "aws-sdk";
|
||||||
packageName = "aws-sdk";
|
packageName = "aws-sdk";
|
||||||
version = "2.1087.0";
|
version = "2.1093.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1087.0.tgz";
|
url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1093.0.tgz";
|
||||||
sha512 = "m5EERT29Fwh2cv3SaSdygeAjJBXnjSaXRRERy70bf6PQ7KgmASJouBxY11g5G7LTEPK/yfB0TGshujKh3hEtPA==";
|
sha512 = "YD6VNemoKkzDMHsUiGP/MwpM0T20ukp3KTSxPY34Xw3Ww0zP19C54CfjaXhn//R27f2c57BtVez+he2RZ5GwyQ==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"aws-sign2-0.7.0" = {
|
"aws-sign2-0.7.0" = {
|
||||||
|
@ -1471,6 +1471,15 @@ let
|
||||||
sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==";
|
sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"clamp-1.0.1" = {
|
||||||
|
name = "clamp";
|
||||||
|
packageName = "clamp";
|
||||||
|
version = "1.0.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/clamp/-/clamp-1.0.1.tgz";
|
||||||
|
sha1 = "66a0e64011816e37196828fdc8c8c147312c8634";
|
||||||
|
};
|
||||||
|
};
|
||||||
"class-validator-0.13.2" = {
|
"class-validator-0.13.2" = {
|
||||||
name = "class-validator";
|
name = "class-validator";
|
||||||
packageName = "class-validator";
|
packageName = "class-validator";
|
||||||
|
@ -1777,6 +1786,15 @@ let
|
||||||
sha512 = "Mn4AJiYkR3TAZH1Xm/RU7gFS/0kM5TBSAQDry8y40Aez0ASY+3boUhv+3QE5XbOXiXM2JjdhkKve3IsBvWCibQ==";
|
sha512 = "Mn4AJiYkR3TAZH1Xm/RU7gFS/0kM5TBSAQDry8y40Aez0ASY+3boUhv+3QE5XbOXiXM2JjdhkKve3IsBvWCibQ==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"cookie-0.4.1" = {
|
||||||
|
name = "cookie";
|
||||||
|
packageName = "cookie";
|
||||||
|
version = "0.4.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz";
|
||||||
|
sha512 = "ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA==";
|
||||||
|
};
|
||||||
|
};
|
||||||
"cookie-0.4.2" = {
|
"cookie-0.4.2" = {
|
||||||
name = "cookie";
|
name = "cookie";
|
||||||
packageName = "cookie";
|
packageName = "cookie";
|
||||||
|
@ -1786,6 +1804,15 @@ let
|
||||||
sha512 = "aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==";
|
sha512 = "aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"cookie-parser-1.4.6" = {
|
||||||
|
name = "cookie-parser";
|
||||||
|
packageName = "cookie-parser";
|
||||||
|
version = "1.4.6";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.6.tgz";
|
||||||
|
sha512 = "z3IzaNjdwUC2olLIB5/ITd0/setiaFMLYiZJle7xg5Fe9KWAceil7xszYfHHBtDFYLSgJduS2Ty0P1uJdPDJeA==";
|
||||||
|
};
|
||||||
|
};
|
||||||
"cookie-signature-1.0.6" = {
|
"cookie-signature-1.0.6" = {
|
||||||
name = "cookie-signature";
|
name = "cookie-signature";
|
||||||
packageName = "cookie-signature";
|
packageName = "cookie-signature";
|
||||||
|
@ -3604,13 +3631,13 @@ let
|
||||||
sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
|
sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"isbot-3.4.3" = {
|
"isbot-3.4.5" = {
|
||||||
name = "isbot";
|
name = "isbot";
|
||||||
packageName = "isbot";
|
packageName = "isbot";
|
||||||
version = "3.4.3";
|
version = "3.4.5";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/isbot/-/isbot-3.4.3.tgz";
|
url = "https://registry.npmjs.org/isbot/-/isbot-3.4.5.tgz";
|
||||||
sha512 = "5hAgiY9ysMIJcVQlGHcXptwgZr1yYbIGNBE36a3sPo7cLZ9eLTLx0qOssekFKaTHiXTwd/ZZMTuOS7w4faOmpw==";
|
sha512 = "+KD6q1BBtw0iK9aGBGSfxJ31/ZgizKRjhm8ebgJUBMx0aeeQuIJ1I72beCoIrltIZGrSm4vmrxRxrG5n1aUTtw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"isexe-2.0.0" = {
|
"isexe-2.0.0" = {
|
||||||
|
@ -4045,6 +4072,15 @@ let
|
||||||
sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23";
|
sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"lodash.throttle-4.1.1" = {
|
||||||
|
name = "lodash.throttle";
|
||||||
|
packageName = "lodash.throttle";
|
||||||
|
version = "4.1.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz";
|
||||||
|
sha1 = "c23e91b710242ac70c37f1e1cda9274cc39bf2f4";
|
||||||
|
};
|
||||||
|
};
|
||||||
"lodash.uniqby-4.7.0" = {
|
"lodash.uniqby-4.7.0" = {
|
||||||
name = "lodash.uniqby";
|
name = "lodash.uniqby";
|
||||||
packageName = "lodash.uniqby";
|
packageName = "lodash.uniqby";
|
||||||
|
@ -4135,6 +4171,15 @@ let
|
||||||
sha512 = "IXAq50s4qwrOBrXJklY+KhgZF+5y98PDaNo0gi/v2KQBFLyWr+JyFvijZXkGKjQj/h9c0OwoE+JZbwUXce76hQ==";
|
sha512 = "IXAq50s4qwrOBrXJklY+KhgZF+5y98PDaNo0gi/v2KQBFLyWr+JyFvijZXkGKjQj/h9c0OwoE+JZbwUXce76hQ==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"luxon-2.3.1" = {
|
||||||
|
name = "luxon";
|
||||||
|
packageName = "luxon";
|
||||||
|
version = "2.3.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/luxon/-/luxon-2.3.1.tgz";
|
||||||
|
sha512 = "I8vnjOmhXsMSlNMZlMkSOvgrxKJl0uOsEzdGgGNZuZPaS9KlefpE9KV95QFftlJSC+1UyCC9/I69R02cz/zcCA==";
|
||||||
|
};
|
||||||
|
};
|
||||||
"mailparser-3.4.0" = {
|
"mailparser-3.4.0" = {
|
||||||
name = "mailparser";
|
name = "mailparser";
|
||||||
packageName = "mailparser";
|
packageName = "mailparser";
|
||||||
|
@ -4180,13 +4225,22 @@ let
|
||||||
sha512 = "etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg==";
|
sha512 = "etgt+n4LlOkGSJbBTV9VROHA5R7ekIPS4vfh+bCAoJgRrJWdqJCBbpS3osRJ/HrT7R68MzMiY3L3sDJ/Fd8aBg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"mappersmith-2.37.1" = {
|
"mappersmith-2.38.0" = {
|
||||||
name = "mappersmith";
|
name = "mappersmith";
|
||||||
packageName = "mappersmith";
|
packageName = "mappersmith";
|
||||||
version = "2.37.1";
|
version = "2.38.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.37.1.tgz";
|
url = "https://registry.npmjs.org/mappersmith/-/mappersmith-2.38.0.tgz";
|
||||||
sha512 = "3QiXhRADHTK/it1riJMJm/sHmLlGdw3pfLgZJQu9MfT1CNeiO93keNY0BVLlRmpPBsMER/P7kj3mtcAK2V331Q==";
|
sha512 = "D2+ICkvNGnGCz01MADdQQilcHGffwLd1ell4b4uXS9QYvLfrX0r5nl5zb9V+2YDy3142u6VUl1b154pxJAxw3g==";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"material-colors-1.2.6" = {
|
||||||
|
name = "material-colors";
|
||||||
|
packageName = "material-colors";
|
||||||
|
version = "1.2.6";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/material-colors/-/material-colors-1.2.6.tgz";
|
||||||
|
sha512 = "6qE4B9deFBIa9YSpOc9O0Sgc43zTeVYbgDT5veRKSlB2+ZuHNoVVxA1L/ckMUayV9Ay9y7Z/SZCLcGteW9i7bg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"md5-2.3.0" = {
|
"md5-2.3.0" = {
|
||||||
|
@ -4261,22 +4315,22 @@ let
|
||||||
sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
|
sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"mime-db-1.51.0" = {
|
"mime-db-1.52.0" = {
|
||||||
name = "mime-db";
|
name = "mime-db";
|
||||||
packageName = "mime-db";
|
packageName = "mime-db";
|
||||||
version = "1.51.0";
|
version = "1.52.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz";
|
url = "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz";
|
||||||
sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g==";
|
sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"mime-types-2.1.34" = {
|
"mime-types-2.1.35" = {
|
||||||
name = "mime-types";
|
name = "mime-types";
|
||||||
packageName = "mime-types";
|
packageName = "mime-types";
|
||||||
version = "2.1.34";
|
version = "2.1.35";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz";
|
url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz";
|
||||||
sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==";
|
sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"mimic-fn-2.1.0" = {
|
"mimic-fn-2.1.0" = {
|
||||||
|
@ -4486,49 +4540,49 @@ let
|
||||||
sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==";
|
sha512 = "z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"n8n-core-0.107.0" = {
|
"n8n-core-0.109.0" = {
|
||||||
name = "n8n-core";
|
name = "n8n-core";
|
||||||
packageName = "n8n-core";
|
packageName = "n8n-core";
|
||||||
version = "0.107.0";
|
version = "0.109.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.107.0.tgz";
|
url = "https://registry.npmjs.org/n8n-core/-/n8n-core-0.109.0.tgz";
|
||||||
sha512 = "jwlEv67bPCn1Npp5SkZ11MViQgN96B2bUmSdsKPIBkJGkAPdd6BAUNAhF6qlAS53KhkbSqjuZkn71sDwbHv1cg==";
|
sha512 = "hzimsUZbWHfG9RofSX7czg0DgB7YAIcLi7JRFUVB90HVdasFf1HQFVM2AwFZC/lLVckktuadWSpq2MOKW+lE3Q==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"n8n-design-system-0.13.0" = {
|
"n8n-design-system-0.14.0" = {
|
||||||
name = "n8n-design-system";
|
name = "n8n-design-system";
|
||||||
packageName = "n8n-design-system";
|
packageName = "n8n-design-system";
|
||||||
version = "0.13.0";
|
version = "0.14.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.13.0.tgz";
|
url = "https://registry.npmjs.org/n8n-design-system/-/n8n-design-system-0.14.0.tgz";
|
||||||
sha512 = "dnweYfFdU9RLdZhmllAlF35dFp0F8Cxw2YAVPMTYOJ2saTs992kvI+09k5iVHDdRxA92BKRXgRRfvY1p0goXcQ==";
|
sha512 = "E9Tvnjd9hktVPsqBcX579Fr4Nn/QEVAHQaYZlPGrqxXLVD76mF0WQWJpU6XTZEs/9pKfEftk/TmDihtENLVTxg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"n8n-editor-ui-0.133.0" = {
|
"n8n-editor-ui-0.135.0" = {
|
||||||
name = "n8n-editor-ui";
|
name = "n8n-editor-ui";
|
||||||
packageName = "n8n-editor-ui";
|
packageName = "n8n-editor-ui";
|
||||||
version = "0.133.0";
|
version = "0.135.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.133.0.tgz";
|
url = "https://registry.npmjs.org/n8n-editor-ui/-/n8n-editor-ui-0.135.0.tgz";
|
||||||
sha512 = "lKi2eyx5mn5vfo5sArvsnQ+1khdkX7I1Aqml5VFgzTUhHDLZB2Pvupu+czE55l9QSGs6oqaN9a9NRblWOHc0zQ==";
|
sha512 = "oM+Pnh4ZaUnDy5lj6u71EyXUPGNlbEIn3lpi4+xyO8tYtFyaN1kifS/q/a1sYrgZlwbWaksgUvTqufZ3Te6Yqw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"n8n-nodes-base-0.164.0" = {
|
"n8n-nodes-base-0.166.0" = {
|
||||||
name = "n8n-nodes-base";
|
name = "n8n-nodes-base";
|
||||||
packageName = "n8n-nodes-base";
|
packageName = "n8n-nodes-base";
|
||||||
version = "0.164.0";
|
version = "0.166.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.164.0.tgz";
|
url = "https://registry.npmjs.org/n8n-nodes-base/-/n8n-nodes-base-0.166.0.tgz";
|
||||||
sha512 = "5GSd0f1rQZfKt9e0S1zwn5K34TSd1lYkd3MEPKDHjvksxfNOumtZpf0rwEgb/7Uf6azw7ESqk4VXwxiVQu0sgw==";
|
sha512 = "Iet76bGJrS3rTal5KbuBsJvYzAw3o9xfcLHERpDJyXOxgvrPfZ62A7RpmLMLA3KJLfKevY+VLGLWW5odTSvtEg==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"n8n-workflow-0.89.0" = {
|
"n8n-workflow-0.91.0" = {
|
||||||
name = "n8n-workflow";
|
name = "n8n-workflow";
|
||||||
packageName = "n8n-workflow";
|
packageName = "n8n-workflow";
|
||||||
version = "0.89.0";
|
version = "0.91.0";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.89.0.tgz";
|
url = "https://registry.npmjs.org/n8n-workflow/-/n8n-workflow-0.91.0.tgz";
|
||||||
sha512 = "hggmmjHsa3VjP5puRssH4Q8hoigqJ3W+KQeY54Qsa1rJoJEjZYy53NGOQ3QMmuPuTUvVMHe4Z/Hb6u4Bbh1wAg==";
|
sha512 = "a4yqSvcalQs2MEDkOeadQc9cwK/3f6t+EKr/e8rEN5D9djnmuvoRJC+V9v6KPuHy66q1pv6w7fpmnrLRO+2WrA==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"named-placeholders-1.1.2" = {
|
"named-placeholders-1.1.2" = {
|
||||||
|
@ -5089,6 +5143,42 @@ let
|
||||||
sha512 = "uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==";
|
sha512 = "uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"passport-0.5.2" = {
|
||||||
|
name = "passport";
|
||||||
|
packageName = "passport";
|
||||||
|
version = "0.5.2";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/passport/-/passport-0.5.2.tgz";
|
||||||
|
sha512 = "w9n/Ot5I7orGD4y+7V3EFJCQEznE5RxHamUxcqLT2QoJY0f2JdN8GyHonYFvN0Vz+L6lUJfVhrk2aZz2LbuREw==";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"passport-cookie-1.0.9" = {
|
||||||
|
name = "passport-cookie";
|
||||||
|
packageName = "passport-cookie";
|
||||||
|
version = "1.0.9";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/passport-cookie/-/passport-cookie-1.0.9.tgz";
|
||||||
|
sha512 = "8a6foX2bbGoJzup0RAiNcC2tTqzYS46RQEK3Z4u8p86wesPUjgDaji3C7+5j4TGyCq4ZoOV+3YLw1Hy6cV6kyw==";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"passport-jwt-4.0.0" = {
|
||||||
|
name = "passport-jwt";
|
||||||
|
packageName = "passport-jwt";
|
||||||
|
version = "4.0.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/passport-jwt/-/passport-jwt-4.0.0.tgz";
|
||||||
|
sha512 = "BwC0n2GP/1hMVjR4QpnvqA61TxenUMlmfNjYNgK0ZAs0HK4SOQkHcSv4L328blNTLtHq7DbmvyNJiH+bn6C5Mg==";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"passport-strategy-1.0.0" = {
|
||||||
|
name = "passport-strategy";
|
||||||
|
packageName = "passport-strategy";
|
||||||
|
version = "1.0.0";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz";
|
||||||
|
sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4";
|
||||||
|
};
|
||||||
|
};
|
||||||
"path-case-3.0.4" = {
|
"path-case-3.0.4" = {
|
||||||
name = "path-case";
|
name = "path-case";
|
||||||
packageName = "path-case";
|
packageName = "path-case";
|
||||||
|
@ -5134,6 +5224,15 @@ let
|
||||||
sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==";
|
sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"pause-0.0.1" = {
|
||||||
|
name = "pause";
|
||||||
|
packageName = "pause";
|
||||||
|
version = "0.0.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz";
|
||||||
|
sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d";
|
||||||
|
};
|
||||||
|
};
|
||||||
"pdf-parse-1.1.1" = {
|
"pdf-parse-1.1.1" = {
|
||||||
name = "pdf-parse";
|
name = "pdf-parse";
|
||||||
packageName = "pdf-parse";
|
packageName = "pdf-parse";
|
||||||
|
@ -5287,13 +5386,13 @@ let
|
||||||
sha512 = "vrlOGvNVELko0+J8NpGC5lHWDGrk8LQJq9nwAMIVEVBfN1Lib3BLxAaLRGDTuUnvl45j5N9dT2H85PULz6IjjQ==";
|
sha512 = "vrlOGvNVELko0+J8NpGC5lHWDGrk8LQJq9nwAMIVEVBfN1Lib3BLxAaLRGDTuUnvl45j5N9dT2H85PULz6IjjQ==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"popsicle-redirects-1.1.0" = {
|
"popsicle-redirects-1.1.1" = {
|
||||||
name = "popsicle-redirects";
|
name = "popsicle-redirects";
|
||||||
packageName = "popsicle-redirects";
|
packageName = "popsicle-redirects";
|
||||||
version = "1.1.0";
|
version = "1.1.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/popsicle-redirects/-/popsicle-redirects-1.1.0.tgz";
|
url = "https://registry.npmjs.org/popsicle-redirects/-/popsicle-redirects-1.1.1.tgz";
|
||||||
sha512 = "XCpzVjVk7tty+IJnSdqWevmOr1n8HNDhL86v7mZ6T1JIIf2KGybxUk9mm7ZFOhWMkGB0e8XkacHip7BV8AQWQA==";
|
sha512 = "mC2HrKjdTAWDalOjGxlXw9j6Qxrz/Yd2ui6bPxpi2IQDYWpF4gUAMxbA8EpSWJhLi0PuWKDwTHHPrUPGutAoIA==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
"popsicle-transport-http-1.2.1" = {
|
"popsicle-transport-http-1.2.1" = {
|
||||||
|
@ -6682,6 +6781,15 @@ let
|
||||||
sha512 = "a7wPxPdVlQL7lqvitHGGRsofhdwtkoSXPGATFuSOA2i1ZNQEPLrGnj68vOp2sOJTCFAQVXPeNMX/GctBaO9L2w==";
|
sha512 = "a7wPxPdVlQL7lqvitHGGRsofhdwtkoSXPGATFuSOA2i1ZNQEPLrGnj68vOp2sOJTCFAQVXPeNMX/GctBaO9L2w==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"tinycolor2-1.4.2" = {
|
||||||
|
name = "tinycolor2";
|
||||||
|
packageName = "tinycolor2";
|
||||||
|
version = "1.4.2";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz";
|
||||||
|
sha512 = "vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==";
|
||||||
|
};
|
||||||
|
};
|
||||||
"tlds-1.224.0" = {
|
"tlds-1.224.0" = {
|
||||||
name = "tlds";
|
name = "tlds";
|
||||||
packageName = "tlds";
|
packageName = "tlds";
|
||||||
|
@ -7159,6 +7267,24 @@ let
|
||||||
sha512 = "xwTm7NLh/uOjARRBs8/95H0e8fT3Ukw5D/JJWhxMbhKzNh1Nu981jQKvkep9iKYNxzlVrdzD0mlBGkDKZWprlw==";
|
sha512 = "xwTm7NLh/uOjARRBs8/95H0e8fT3Ukw5D/JJWhxMbhKzNh1Nu981jQKvkep9iKYNxzlVrdzD0mlBGkDKZWprlw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"vue-2.6.14" = {
|
||||||
|
name = "vue";
|
||||||
|
packageName = "vue";
|
||||||
|
version = "2.6.14";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/vue/-/vue-2.6.14.tgz";
|
||||||
|
sha512 = "x2284lgYvjOMj3Za7kqzRcUSxBboHqtgRE2zlos1qWaOye5yUmHn42LB1250NJBLRwEcdrB0JRwyPTEPhfQjiQ==";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"vue-color-2.8.1" = {
|
||||||
|
name = "vue-color";
|
||||||
|
packageName = "vue-color";
|
||||||
|
version = "2.8.1";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/vue-color/-/vue-color-2.8.1.tgz";
|
||||||
|
sha512 = "BoLCEHisXi2QgwlhZBg9UepvzZZmi4176vbr+31Shen5WWZwSLVgdScEPcB+yrAtuHAz42309C0A4+WiL9lNBw==";
|
||||||
|
};
|
||||||
|
};
|
||||||
"vue-fragment-1.5.2" = {
|
"vue-fragment-1.5.2" = {
|
||||||
name = "vue-fragment";
|
name = "vue-fragment";
|
||||||
packageName = "vue-fragment";
|
packageName = "vue-fragment";
|
||||||
|
@ -7177,6 +7303,15 @@ let
|
||||||
sha512 = "SX35iJHL5PJ4Gfh0Mo/q0shyHiI2V6Zkh51c+k8E9O1RKv5BQyYrCxRzpvPrsIOJEnLaeiovet3dsUB0e/kDzw==";
|
sha512 = "SX35iJHL5PJ4Gfh0Mo/q0shyHiI2V6Zkh51c+k8E9O1RKv5BQyYrCxRzpvPrsIOJEnLaeiovet3dsUB0e/kDzw==";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"vue2-boring-avatars-0.3.4" = {
|
||||||
|
name = "vue2-boring-avatars";
|
||||||
|
packageName = "vue2-boring-avatars";
|
||||||
|
version = "0.3.4";
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://registry.npmjs.org/vue2-boring-avatars/-/vue2-boring-avatars-0.3.4.tgz";
|
||||||
|
sha512 = "N3FYX9Z6rZdTeP3BOBz2LMxlWo9WRmPF6SOsYzz+tEuUH0QjX8UD7c1X95J8pZ7cFvbh9QflVujYQRqRiiwoAg==";
|
||||||
|
};
|
||||||
|
};
|
||||||
"webidl-conversions-3.0.1" = {
|
"webidl-conversions-3.0.1" = {
|
||||||
name = "webidl-conversions";
|
name = "webidl-conversions";
|
||||||
packageName = "webidl-conversions";
|
packageName = "webidl-conversions";
|
||||||
|
@ -7480,10 +7615,10 @@ in
|
||||||
n8n = nodeEnv.buildNodePackage {
|
n8n = nodeEnv.buildNodePackage {
|
||||||
name = "n8n";
|
name = "n8n";
|
||||||
packageName = "n8n";
|
packageName = "n8n";
|
||||||
version = "0.166.0";
|
version = "0.168.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://registry.npmjs.org/n8n/-/n8n-0.166.0.tgz";
|
url = "https://registry.npmjs.org/n8n/-/n8n-0.168.1.tgz";
|
||||||
sha512 = "t8tRpOyrEIxaIuLzfBajDPjAMygcCapiIqHDjU8YloJalI0MnbuoQ6DgA2RdRDZElN0yew0rQR8ZxZ2nMUk8Fg==";
|
sha512 = "bghyOcF+KZmRsmyC9p2ARb+RIlUBDwTKCMLd5eUFW1SKMBCWgQZwG8KCLCRApWjXjP1SYekeyDo1PSl5fa7Hxw==";
|
||||||
};
|
};
|
||||||
dependencies = [
|
dependencies = [
|
||||||
(sources."@azure/abort-controller-1.0.5" // {
|
(sources."@azure/abort-controller-1.0.5" // {
|
||||||
|
@ -7503,7 +7638,7 @@ in
|
||||||
sources."tslib-2.3.1"
|
sources."tslib-2.3.1"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
(sources."@azure/core-lro-2.2.3" // {
|
(sources."@azure/core-lro-2.2.4" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."tslib-2.3.1"
|
sources."tslib-2.3.1"
|
||||||
];
|
];
|
||||||
|
@ -7530,12 +7665,12 @@ in
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
sources."@azure/ms-rest-nodeauth-3.1.1"
|
sources."@azure/ms-rest-nodeauth-3.1.1"
|
||||||
(sources."@azure/storage-blob-12.8.0" // {
|
(sources."@azure/storage-blob-12.9.0" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."tslib-2.3.1"
|
sources."tslib-2.3.1"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
sources."@babel/runtime-7.17.2"
|
sources."@babel/runtime-7.17.7"
|
||||||
sources."@colors/colors-1.5.0"
|
sources."@colors/colors-1.5.0"
|
||||||
(sources."@dabh/diagnostics-2.0.3" // {
|
(sources."@dabh/diagnostics-2.0.3" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
@ -7543,7 +7678,7 @@ in
|
||||||
sources."kuler-2.0.0"
|
sources."kuler-2.0.0"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
sources."@fontsource/open-sans-4.5.5"
|
sources."@fontsource/open-sans-4.5.6"
|
||||||
sources."@icetee/ftp-0.3.15"
|
sources."@icetee/ftp-0.3.15"
|
||||||
sources."@kafkajs/confluent-schema-registry-1.0.6"
|
sources."@kafkajs/confluent-schema-registry-1.0.6"
|
||||||
sources."@kwsites/file-exists-1.1.1"
|
sources."@kwsites/file-exists-1.1.1"
|
||||||
|
@ -7592,7 +7727,7 @@ in
|
||||||
sources."@types/ftp-0.3.33"
|
sources."@types/ftp-0.3.33"
|
||||||
sources."@types/json-diff-0.5.2"
|
sources."@types/json-diff-0.5.2"
|
||||||
sources."@types/jsonwebtoken-8.5.8"
|
sources."@types/jsonwebtoken-8.5.8"
|
||||||
sources."@types/lodash-4.14.179"
|
sources."@types/lodash-4.14.180"
|
||||||
sources."@types/lossless-json-1.0.1"
|
sources."@types/lossless-json-1.0.1"
|
||||||
sources."@types/mime-1.3.2"
|
sources."@types/mime-1.3.2"
|
||||||
sources."@types/node-17.0.21"
|
sources."@types/node-17.0.21"
|
||||||
|
@ -7664,7 +7799,7 @@ in
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
sources."avsc-5.7.3"
|
sources."avsc-5.7.3"
|
||||||
(sources."aws-sdk-2.1087.0" // {
|
(sources."aws-sdk-2.1093.0" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."buffer-4.9.2"
|
sources."buffer-4.9.2"
|
||||||
sources."events-1.1.1"
|
sources."events-1.1.1"
|
||||||
|
@ -7774,6 +7909,7 @@ in
|
||||||
sources."cheerio-select-1.5.0"
|
sources."cheerio-select-1.5.0"
|
||||||
sources."chokidar-3.5.2"
|
sources."chokidar-3.5.2"
|
||||||
sources."chownr-1.1.4"
|
sources."chownr-1.1.4"
|
||||||
|
sources."clamp-1.0.1"
|
||||||
sources."class-validator-0.13.2"
|
sources."class-validator-0.13.2"
|
||||||
sources."clean-stack-3.0.1"
|
sources."clean-stack-3.0.1"
|
||||||
sources."cli-color-0.1.7"
|
sources."cli-color-0.1.7"
|
||||||
|
@ -7835,7 +7971,8 @@ in
|
||||||
sources."content-disposition-0.5.4"
|
sources."content-disposition-0.5.4"
|
||||||
sources."content-type-1.0.4"
|
sources."content-type-1.0.4"
|
||||||
sources."convict-6.2.1"
|
sources."convict-6.2.1"
|
||||||
sources."cookie-0.4.2"
|
sources."cookie-0.4.1"
|
||||||
|
sources."cookie-parser-1.4.6"
|
||||||
sources."cookie-signature-1.0.6"
|
sources."cookie-signature-1.0.6"
|
||||||
sources."core-js-3.21.1"
|
sources."core-js-3.21.1"
|
||||||
sources."core-util-is-1.0.2"
|
sources."core-util-is-1.0.2"
|
||||||
|
@ -7923,6 +8060,7 @@ in
|
||||||
sources."expand-tilde-2.0.2"
|
sources."expand-tilde-2.0.2"
|
||||||
(sources."express-4.17.3" // {
|
(sources."express-4.17.3" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
sources."cookie-0.4.2"
|
||||||
sources."debug-2.6.9"
|
sources."debug-2.6.9"
|
||||||
sources."ms-2.0.0"
|
sources."ms-2.0.0"
|
||||||
];
|
];
|
||||||
|
@ -8078,7 +8216,7 @@ in
|
||||||
sources."is-windows-1.0.2"
|
sources."is-windows-1.0.2"
|
||||||
sources."is-wsl-2.2.0"
|
sources."is-wsl-2.2.0"
|
||||||
sources."isarray-0.0.1"
|
sources."isarray-0.0.1"
|
||||||
sources."isbot-3.4.3"
|
sources."isbot-3.4.5"
|
||||||
sources."isexe-2.0.0"
|
sources."isexe-2.0.0"
|
||||||
sources."iso-639-1-2.1.13"
|
sources."iso-639-1-2.1.13"
|
||||||
sources."isstream-0.1.2"
|
sources."isstream-0.1.2"
|
||||||
|
@ -8137,6 +8275,7 @@ in
|
||||||
sources."lodash.merge-4.6.2"
|
sources."lodash.merge-4.6.2"
|
||||||
sources."lodash.once-4.1.1"
|
sources."lodash.once-4.1.1"
|
||||||
sources."lodash.set-4.3.2"
|
sources."lodash.set-4.3.2"
|
||||||
|
sources."lodash.throttle-4.1.1"
|
||||||
sources."lodash.uniqby-4.7.0"
|
sources."lodash.uniqby-4.7.0"
|
||||||
sources."lodash.unset-4.5.2"
|
sources."lodash.unset-4.5.2"
|
||||||
sources."logform-2.4.0"
|
sources."logform-2.4.0"
|
||||||
|
@ -8154,6 +8293,7 @@ in
|
||||||
sources."yallist-2.1.2"
|
sources."yallist-2.1.2"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
|
sources."luxon-2.3.1"
|
||||||
(sources."mailparser-3.4.0" // {
|
(sources."mailparser-3.4.0" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."iconv-lite-0.6.3"
|
sources."iconv-lite-0.6.3"
|
||||||
|
@ -8168,7 +8308,8 @@ in
|
||||||
})
|
})
|
||||||
sources."make-error-1.3.6"
|
sources."make-error-1.3.6"
|
||||||
sources."make-error-cause-2.3.0"
|
sources."make-error-cause-2.3.0"
|
||||||
sources."mappersmith-2.37.1"
|
sources."mappersmith-2.38.0"
|
||||||
|
sources."material-colors-1.2.6"
|
||||||
sources."md5-2.3.0"
|
sources."md5-2.3.0"
|
||||||
sources."media-typer-0.3.0"
|
sources."media-typer-0.3.0"
|
||||||
sources."merge-descriptors-1.0.1"
|
sources."merge-descriptors-1.0.1"
|
||||||
|
@ -8177,8 +8318,8 @@ in
|
||||||
sources."micromatch-4.0.4"
|
sources."micromatch-4.0.4"
|
||||||
sources."millisecond-0.1.2"
|
sources."millisecond-0.1.2"
|
||||||
sources."mime-1.6.0"
|
sources."mime-1.6.0"
|
||||||
sources."mime-db-1.51.0"
|
sources."mime-db-1.52.0"
|
||||||
sources."mime-types-2.1.34"
|
sources."mime-types-2.1.35"
|
||||||
sources."mimic-fn-2.1.0"
|
sources."mimic-fn-2.1.0"
|
||||||
sources."minimalistic-assert-1.0.1"
|
sources."minimalistic-assert-1.0.1"
|
||||||
sources."minimatch-3.1.2"
|
sources."minimatch-3.1.2"
|
||||||
|
@ -8224,19 +8365,19 @@ in
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
sources."mz-2.7.0"
|
sources."mz-2.7.0"
|
||||||
(sources."n8n-core-0.107.0" // {
|
(sources."n8n-core-0.109.0" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."qs-6.10.3"
|
sources."qs-6.10.3"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
sources."n8n-design-system-0.13.0"
|
sources."n8n-design-system-0.14.0"
|
||||||
sources."n8n-editor-ui-0.133.0"
|
sources."n8n-editor-ui-0.135.0"
|
||||||
(sources."n8n-nodes-base-0.164.0" // {
|
(sources."n8n-nodes-base-0.166.0" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."iconv-lite-0.6.3"
|
sources."iconv-lite-0.6.3"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
sources."n8n-workflow-0.89.0"
|
sources."n8n-workflow-0.91.0"
|
||||||
(sources."named-placeholders-1.1.2" // {
|
(sources."named-placeholders-1.1.2" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."lru-cache-4.1.5"
|
sources."lru-cache-4.1.5"
|
||||||
|
@ -8341,6 +8482,10 @@ in
|
||||||
sources."tslib-2.3.1"
|
sources."tslib-2.3.1"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
|
sources."passport-0.5.2"
|
||||||
|
sources."passport-cookie-1.0.9"
|
||||||
|
sources."passport-jwt-4.0.0"
|
||||||
|
sources."passport-strategy-1.0.0"
|
||||||
(sources."path-case-3.0.4" // {
|
(sources."path-case-3.0.4" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."tslib-2.3.1"
|
sources."tslib-2.3.1"
|
||||||
|
@ -8350,6 +8495,7 @@ in
|
||||||
sources."path-is-absolute-1.0.1"
|
sources."path-is-absolute-1.0.1"
|
||||||
sources."path-to-regexp-0.1.7"
|
sources."path-to-regexp-0.1.7"
|
||||||
sources."path-type-4.0.0"
|
sources."path-type-4.0.0"
|
||||||
|
sources."pause-0.0.1"
|
||||||
(sources."pdf-parse-1.1.1" // {
|
(sources."pdf-parse-1.1.1" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."debug-3.2.7"
|
sources."debug-3.2.7"
|
||||||
|
@ -8378,7 +8524,7 @@ in
|
||||||
sources."popsicle-12.1.0"
|
sources."popsicle-12.1.0"
|
||||||
sources."popsicle-content-encoding-1.0.0"
|
sources."popsicle-content-encoding-1.0.0"
|
||||||
sources."popsicle-cookie-jar-1.0.0"
|
sources."popsicle-cookie-jar-1.0.0"
|
||||||
sources."popsicle-redirects-1.1.0"
|
sources."popsicle-redirects-1.1.1"
|
||||||
sources."popsicle-transport-http-1.2.1"
|
sources."popsicle-transport-http-1.2.1"
|
||||||
sources."popsicle-transport-xhr-2.0.0"
|
sources."popsicle-transport-xhr-2.0.0"
|
||||||
sources."popsicle-user-agent-1.0.0"
|
sources."popsicle-user-agent-1.0.0"
|
||||||
|
@ -8564,7 +8710,7 @@ in
|
||||||
sources."tdigest-0.1.1"
|
sources."tdigest-0.1.1"
|
||||||
(sources."tedious-6.7.1" // {
|
(sources."tedious-6.7.1" // {
|
||||||
dependencies = [
|
dependencies = [
|
||||||
sources."@types/node-12.20.46"
|
sources."@types/node-12.20.47"
|
||||||
sources."bl-3.0.1"
|
sources."bl-3.0.1"
|
||||||
sources."depd-2.0.0"
|
sources."depd-2.0.0"
|
||||||
sources."iconv-lite-0.5.2"
|
sources."iconv-lite-0.5.2"
|
||||||
|
@ -8588,6 +8734,7 @@ in
|
||||||
sources."through2-filter-3.0.0"
|
sources."through2-filter-3.0.0"
|
||||||
sources."throwback-4.1.0"
|
sources."throwback-4.1.0"
|
||||||
sources."timeago.js-4.0.2"
|
sources."timeago.js-4.0.2"
|
||||||
|
sources."tinycolor2-1.4.2"
|
||||||
sources."tlds-1.224.0"
|
sources."tlds-1.224.0"
|
||||||
sources."tmp-0.0.33"
|
sources."tmp-0.0.33"
|
||||||
(sources."tmp-promise-3.0.3" // {
|
(sources."tmp-promise-3.0.3" // {
|
||||||
|
@ -8663,8 +8810,11 @@ in
|
||||||
sources."vary-1.1.2"
|
sources."vary-1.1.2"
|
||||||
sources."verror-1.10.0"
|
sources."verror-1.10.0"
|
||||||
sources."vm2-3.9.9"
|
sources."vm2-3.9.9"
|
||||||
|
sources."vue-2.6.14"
|
||||||
|
sources."vue-color-2.8.1"
|
||||||
sources."vue-fragment-1.5.2"
|
sources."vue-fragment-1.5.2"
|
||||||
sources."vue-i18n-8.27.0"
|
sources."vue-i18n-8.27.0"
|
||||||
|
sources."vue2-boring-avatars-0.3.4"
|
||||||
sources."webidl-conversions-3.0.1"
|
sources."webidl-conversions-3.0.1"
|
||||||
sources."whatwg-url-5.0.0"
|
sources."whatwg-url-5.0.0"
|
||||||
sources."which-1.3.1"
|
sources."which-1.3.1"
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
pname = "bada-bib";
|
pname = "bada-bib";
|
||||||
version = "0.5.1";
|
version = "0.6.0";
|
||||||
format = "other";
|
format = "other";
|
||||||
strictDeps = false; # https://github.com/NixOS/nixpkgs/issues/56943
|
strictDeps = false; # https://github.com/NixOS/nixpkgs/issues/56943
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ python3Packages.buildPythonApplication rec {
|
||||||
owner = "RogerCrocker";
|
owner = "RogerCrocker";
|
||||||
repo = "BadaBib";
|
repo = "BadaBib";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-tb/720WPqcO4w1EMmidjtEidsjZ0dEhe+/vnJPM6kxo=";
|
sha256 = "sha256-gfZc3R8hrYy4Nco+XwG29lzZd537ByEgd3RL8h7f6DQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -52,7 +52,6 @@ python3Packages.buildPythonApplication rec {
|
||||||
pythonPath = with python3Packages; [
|
pythonPath = with python3Packages; [
|
||||||
bibtexparser
|
bibtexparser
|
||||||
pygobject3
|
pygobject3
|
||||||
watchgod
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
|
|
|
@ -9,11 +9,11 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "stm32cubemx";
|
pname = "stm32cubemx";
|
||||||
version = "6.4.0";
|
version = "6.5.0";
|
||||||
|
|
||||||
src = fetchzip {
|
src = fetchzip {
|
||||||
url = "https://sw-center.st.com/packs/resource/library/stm32cube_mx_v${builtins.replaceStrings ["."] [""] version}-lin.zip";
|
url = "https://sw-center.st.com/packs/resource/library/stm32cube_mx_v${builtins.replaceStrings ["."] [""] version}-lin.zip";
|
||||||
sha256 = "sha256-5qotjAyaNFtYUjHlNKwywmBJGAzS/IM9bF+dmONE4bk=";
|
sha256 = "sha256-19RG+bJCmkaytMtDpDLbDvfKo27Z+Mo/sOrs8lOVV44=";
|
||||||
stripRoot = false;
|
stripRoot = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,13 +1,13 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, cmake, check, subunit }:
|
{ lib, stdenv, fetchFromGitHub, cmake, check, subunit }:
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "orcania";
|
pname = "orcania";
|
||||||
version = "2.2.1";
|
version = "2.2.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "babelouest";
|
owner = "babelouest";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-6Libn+S5c7sCmKGq8KojiUhI18zO37rgiiVwQxP3p4o=";
|
sha256 = "sha256-lrc4VEqmCp/P/h0+5/ix6tx4pjfkLy9BLBZtKYLlyGI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, isPy27
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, pythonOlder
|
||||||
, azure-common
|
, azure-common
|
||||||
, azure-mgmt-core
|
, azure-mgmt-core
|
||||||
, msrest
|
, msrest
|
||||||
|
@ -6,13 +9,14 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "6.0.1";
|
|
||||||
pname = "azure-mgmt-netapp";
|
pname = "azure-mgmt-netapp";
|
||||||
disabled = isPy27;
|
version = "7.0.0";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "6ce683587be1638d8d77620b7af118060b8b7dfc4fd23d46a623a66edcb388e1";
|
hash = "sha256-ziaddG+6MoPG18OYZyQ9HRx8nfGsz2UbWPC1pWacKto=";
|
||||||
extension = "zip";
|
extension = "zip";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -26,7 +30,10 @@ buildPythonPackage rec {
|
||||||
# no tests included
|
# no tests included
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
pythonImportsCheck = [ "azure.common" "azure.mgmt.netapp" ];
|
pythonImportsCheck = [
|
||||||
|
"azure.common"
|
||||||
|
"azure.mgmt.netapp"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Microsoft Azure NetApp Files Management Client Library for Python";
|
description = "Microsoft Azure NetApp Files Management Client Library for Python";
|
||||||
|
|
|
@ -8,14 +8,14 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "traitsui";
|
pname = "traitsui";
|
||||||
version = "7.3.0";
|
version = "7.3.1";
|
||||||
format = "setuptools";
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
hash = "sha256-ZkSz+PYColdgcC3IchuneM51lFBAk68UpIadI56GdPQ=";
|
hash = "sha256-lHStZ/NF2Wsya0AemgFAXICCyS+kO/R8CwOYGOWHrGk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
|
|
|
@ -2,17 +2,17 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-insta";
|
pname = "cargo-insta";
|
||||||
version = "1.11.0";
|
version = "1.13.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mitsuhiko";
|
owner = "mitsuhiko";
|
||||||
repo = "insta";
|
repo = "insta";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-Vi3FwetCpL8qMniaXypw1EYVHh6lfZu6GjDXPDKda5c=";
|
sha256 = "sha256-cSQEwsUqn+Q0ZWndBVatHL0btO7xLOJWO+MMjtSL0Zo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
sourceRoot = "source/cargo-insta";
|
sourceRoot = "source/cargo-insta";
|
||||||
cargoSha256 = "sha256-Bjh9we0OD8kqMJtovO1yw9Yta5u93dlYMRsxPdErkaY=";
|
cargoSha256 = "sha256-rn4ln/MeaDAQmWpxeTn3mGH4sEvO4876o1VPYiz/CR8=";
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
29
pkgs/development/tools/rust/cargo-nextest/default.nix
Normal file
29
pkgs/development/tools/rust/cargo-nextest/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, fetchFromGitHub, rustPlatform, stdenv, libiconv }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "cargo-nextest";
|
||||||
|
version = "0.9.10";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "nextest-rs";
|
||||||
|
repo = "nextest";
|
||||||
|
rev = "cargo-nextest-${version}";
|
||||||
|
sha256 = "0gbh990dd4514bfqh4x2nymh5w608ljp3s7akq100m4v723b6339";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0c0i274dkz3jx9dzcxl9hyf3imiga8vb6m6jc5z1f1wdq3vknh9r";
|
||||||
|
|
||||||
|
cargoTestFlags = [ # TODO: investigate some more why these tests fail in nix
|
||||||
|
"--"
|
||||||
|
"--skip=tests_integration::test_relocated_run"
|
||||||
|
"--skip=tests_integration::test_run"
|
||||||
|
"--skip=tests_integration::test_run_after_build"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Next-generation test runner for Rust projects";
|
||||||
|
homepage = "https://github.com/nextest-rs/nextest";
|
||||||
|
license = with licenses; [ mit asl20 ];
|
||||||
|
maintainers = [ maintainers.ekleog ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2,12 +2,12 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "terraria-server";
|
pname = "terraria-server";
|
||||||
version = "1.4.3.5";
|
version = "1.4.3.6";
|
||||||
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
|
urlVersion = lib.replaceChars [ "." ] [ "" ] version;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${urlVersion}.zip";
|
url = "https://terraria.org/api/download/pc-dedicated-server/terraria-server-${urlVersion}.zip";
|
||||||
sha256 = "sha256-N1GnxEe0A6Wuzy08lL3CFPWjQJECGGf504FE+lnhDcw=";
|
sha256 = "sha256-OFI7U6Mqu09pIbgJQs0O+GS8jf1uVuhAVEJhYNYXrBE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ file ];
|
buildInputs = [ file ];
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
# Do not edit!
|
# Do not edit!
|
||||||
|
|
||||||
{
|
{
|
||||||
version = "2022.3.4";
|
version = "2022.3.5";
|
||||||
components = {
|
components = {
|
||||||
"abode" = ps: with ps; [ abodepy ];
|
"abode" = ps: with ps; [ abodepy ];
|
||||||
"accuweather" = ps: with ps; [ accuweather ];
|
"accuweather" = ps: with ps; [ accuweather ];
|
||||||
|
|
|
@ -164,7 +164,7 @@ let
|
||||||
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);
|
extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs);
|
||||||
|
|
||||||
# Don't forget to run parse-requirements.py after updating
|
# Don't forget to run parse-requirements.py after updating
|
||||||
hassVersion = "2022.3.4";
|
hassVersion = "2022.3.5";
|
||||||
|
|
||||||
in python.pkgs.buildPythonApplication rec {
|
in python.pkgs.buildPythonApplication rec {
|
||||||
pname = "homeassistant";
|
pname = "homeassistant";
|
||||||
|
@ -182,7 +182,7 @@ in python.pkgs.buildPythonApplication rec {
|
||||||
owner = "home-assistant";
|
owner = "home-assistant";
|
||||||
repo = "core";
|
repo = "core";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-7de1m7pvPkgCcZN/Slhy26Y1j2NtkebkGanSTl9jN1M=";
|
hash = "sha256-VXE2zQH/HHhogo5qjneC0zlo9892wgGN1qd3ZFKfyqw=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# leave this in, so users don't have to constantly update their downstream patch handling
|
# leave this in, so users don't have to constantly update their downstream patch handling
|
||||||
|
|
|
@ -4,7 +4,7 @@ buildPythonPackage rec {
|
||||||
# the frontend version corresponding to a specific home-assistant version can be found here
|
# the frontend version corresponding to a specific home-assistant version can be found here
|
||||||
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
|
# https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json
|
||||||
pname = "home-assistant-frontend";
|
pname = "home-assistant-frontend";
|
||||||
version = "20220301.1";
|
version = "20220301.2";
|
||||||
format = "wheel";
|
format = "wheel";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
|
@ -12,7 +12,7 @@ buildPythonPackage rec {
|
||||||
pname = "home_assistant_frontend";
|
pname = "home_assistant_frontend";
|
||||||
dist = "py3";
|
dist = "py3";
|
||||||
python = "py3";
|
python = "py3";
|
||||||
sha256 = "sha256-+S888lUHbWqEJQm5HvZqimTfqoDEHYRVAoGQ5UvU4u4=";
|
sha256 = "sha256-iIywlG9ATLV/+bHtOQFx4mRwToelpPdE3DOKSp4yxN0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# there is nothing to strip in this package
|
# there is nothing to strip in this package
|
||||||
|
|
|
@ -3,16 +3,16 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "imgproxy";
|
pname = "imgproxy";
|
||||||
version = "3.3.0";
|
version = "3.3.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = pname;
|
owner = pname;
|
||||||
repo = pname;
|
repo = pname;
|
||||||
sha256 = "sha256-8oUPqtoxdJ768CmDNBicBGCyejt2v9GIahVRL6pYDJ4=";
|
sha256 = "sha256-GZYaFK6g26gbVa3sHwTZ4fNGMFWBWevqcfJc/3SC890=";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-Dr5qCLVsv22BcISo2OyB+VEDncPwpcp323w9IfDTQv0=";
|
vendorSha256 = "sha256-uV5pnnvVYviw2LnceQUiTJXva3WI51pgW6IeZzVhULc=";
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
|
|
@ -15,13 +15,13 @@ in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "janus-gateway";
|
pname = "janus-gateway";
|
||||||
version = "0.11.8";
|
version = "1.0.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "meetecho";
|
owner = "meetecho";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-otTIDwcbF8Rcas048Vkn30v39GYIYbAIY72ipJhIwC4=";
|
sha256 = "sha256-BREPSDmGR85kDx1PWLdwpbwImAFuctLLx3AcHqAcURk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkg-config gengetopt ];
|
nativeBuildInputs = [ autoreconfHook pkg-config gengetopt ];
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "redis_exporter";
|
pname = "redis_exporter";
|
||||||
version = "1.35.1";
|
version = "1.36.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "oliver006";
|
owner = "oliver006";
|
||||||
repo = "redis_exporter";
|
repo = "redis_exporter";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-S89Okd57QyMHb/QYUQbib2HLdH9qo0duNxcdaP8wKUg=";
|
sha256 = "sha256-n+LvWl0KMAay90GQg42ODcvxX9QbvQ1Ixo4PfJYEAWA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-u9FfKOD6kiCFTjwQ7LHE9WC4j2vPm0ZCluL8pC4aQIc=";
|
vendorSha256 = "sha256-u9FfKOD6kiCFTjwQ7LHE9WC4j2vPm0ZCluL8pC4aQIc=";
|
||||||
|
|
|
@ -2,11 +2,11 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "iperf";
|
pname = "iperf";
|
||||||
version = "3.10.1";
|
version = "3.11";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://downloads.es.net/pub/iperf/iperf-${version}.tar.gz";
|
url = "https://downloads.es.net/pub/iperf/iperf-${version}.tar.gz";
|
||||||
sha256 = "0nkisr2215w68ivadg3sx3q50iwamznwigs63lclb8jlrih9gg03";
|
sha256 = "0pvy1cj92phpbldw0bdc0ds70n8irqcyn1ybyis0a6nnz84v936y";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ openssl ];
|
buildInputs = [ openssl ];
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "minio-client";
|
pname = "minio-client";
|
||||||
version = "2022-03-09T02-08-36Z";
|
version = "2022-03-13T22-34-00Z";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "minio";
|
owner = "minio";
|
||||||
repo = "mc";
|
repo = "mc";
|
||||||
rev = "RELEASE.${version}";
|
rev = "RELEASE.${version}";
|
||||||
sha256 = "sha256-OaV0Xb3nNeZJLayGperQah0JQ7BlGFPWa1//Kt5+EiU=";
|
sha256 = "sha256-NIhowfkG2bFIcCNXUQ3cETHsR5/NLvIHQ9LeftgSyd0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "sha256-Wdw9mZ3UupoJ4yDwS4f3mOmCn+7TvHmx4aRu+96pHM4=";
|
vendorSha256 = "sha256-Wdw9mZ3UupoJ4yDwS4f3mOmCn+7TvHmx4aRu+96pHM4=";
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-about";
|
pname = "cargo-about";
|
||||||
version = "0.4.7";
|
version = "0.4.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "EmbarkStudios";
|
owner = "EmbarkStudios";
|
||||||
repo = "cargo-about";
|
repo = "cargo-about";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-KrUb71/wEQnAD2VVkufw12kXrz35sU5fNciSJsMyGrc=";
|
sha256 = "sha256-cKzGg3fAXKqnBZES3YUMbv1ZAcLqo6AdrXKXSFSAnis=";
|
||||||
};
|
};
|
||||||
|
|
||||||
# enable pkg-config feature of zstd
|
# enable pkg-config feature of zstd
|
||||||
cargoPatches = [ ./zstd-pkg-config.patch ];
|
cargoPatches = [ ./zstd-pkg-config.patch ];
|
||||||
|
|
||||||
cargoSha256 = "sha256-JewI+23eNrMHfSUwsA3CaeTvG61/ZOFFLpm7rKZKsoU=";
|
cargoSha256 = "sha256-OLrxqbTIhHMNPEnSAUbTqoYnaZi/BxbWUCxaTo9Zyww=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
|
|
@ -11,14 +11,14 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-outdated";
|
pname = "cargo-outdated";
|
||||||
version = "0.10.2";
|
version = "0.11.0";
|
||||||
|
|
||||||
src = fetchCrate {
|
src = fetchCrate {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "sha256-U6qElZkray4kjScv9X4I5m2z1ZWQzqcPYAuPzpyRpW0=";
|
sha256 = "sha256-43PqIM61MXY35BSprRNPTMyVUEVD15sq4+6PHS/P2o0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-0J02Uz184zx5xZYhqUmyaAFCQ0aogwy0fQTXbteBdV8=";
|
cargoSha256 = "sha256-ue93L8pyjKR+bxNdltQcsHSPJ3Iz+4gpeskIhhR2/wI=";
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
|
|
@ -13328,6 +13328,7 @@ with pkgs;
|
||||||
cargo-msrv = callPackage ../development/tools/rust/cargo-msrv {
|
cargo-msrv = callPackage ../development/tools/rust/cargo-msrv {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
cargo-nextest = callPackage ../development/tools/rust/cargo-nextest { };
|
||||||
cargo-play = callPackage ../development/tools/rust/cargo-play { };
|
cargo-play = callPackage ../development/tools/rust/cargo-play { };
|
||||||
cargo-raze = callPackage ../development/tools/rust/cargo-raze {
|
cargo-raze = callPackage ../development/tools/rust/cargo-raze {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
@ -26902,6 +26903,8 @@ with pkgs;
|
||||||
|
|
||||||
kapow = libsForQt5.callPackage ../applications/misc/kapow { };
|
kapow = libsForQt5.callPackage ../applications/misc/kapow { };
|
||||||
|
|
||||||
|
kchmviewer = libsForQt5.callPackage ../applications/misc/kchmviewer { };
|
||||||
|
|
||||||
kappanhang = callPackage ../applications/radio/kappanhang { };
|
kappanhang = callPackage ../applications/radio/kappanhang { };
|
||||||
|
|
||||||
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
okteta = libsForQt5.callPackage ../applications/editors/okteta { };
|
||||||
|
|
Loading…
Reference in a new issue