Merge master into staging-next
This commit is contained in:
@@ -12443,6 +12443,11 @@
|
||||
githubId = 18661391;
|
||||
name = "Malte Janz";
|
||||
};
|
||||
malteneuss = {
|
||||
github = "malteneuss";
|
||||
githubId = 5301202;
|
||||
name = "Malte Neuss";
|
||||
};
|
||||
malte-v = {
|
||||
email = "nixpkgs@mal.tc";
|
||||
github = "malte-v";
|
||||
|
||||
@@ -139,6 +139,8 @@ The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been m
|
||||
|
||||
- [ollama](https://ollama.ai), server for running large language models locally.
|
||||
|
||||
- [nextjs-ollama-llm-ui](https://github.com/jakobhoeg/nextjs-ollama-llm-ui), light-weight frontend server to chat with Ollama models through a web app.
|
||||
|
||||
- [ownCloud Infinite Scale Stack](https://owncloud.com/infinite-scale-4-0/), a modern and scalable rewrite of ownCloud.
|
||||
|
||||
- [PhotonVision](https://photonvision.org/), a free, fast, and easy-to-use computer vision solution for the FIRST® Robotics Competition.
|
||||
|
||||
@@ -1399,6 +1399,7 @@
|
||||
./services/web-apps/netbox.nix
|
||||
./services/web-apps/nextcloud.nix
|
||||
./services/web-apps/nextcloud-notify_push.nix
|
||||
./services/web-apps/nextjs-ollama-llm-ui.nix
|
||||
./services/web-apps/nexus.nix
|
||||
./services/web-apps/nifi.nix
|
||||
./services/web-apps/node-red.nix
|
||||
|
||||
@@ -0,0 +1,87 @@
|
||||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}:
|
||||
let
|
||||
cfg = config.services.nextjs-ollama-llm-ui;
|
||||
# we have to override the URL to a Ollama service here, because it gets baked into the web app.
|
||||
nextjs-ollama-llm-ui = cfg.package.override { ollamaUrl = "https://ollama.lambdablob.com"; };
|
||||
in
|
||||
{
|
||||
options = {
|
||||
services.nextjs-ollama-llm-ui = {
|
||||
enable = lib.mkEnableOption ''
|
||||
Simple Ollama web UI service; an easy to use web frontend for a Ollama backend service.
|
||||
Run state-of-the-art AI large language models (LLM) similar to ChatGPT locally with privacy
|
||||
on your personal computer.
|
||||
This service is stateless and doesn't store any data on the server; all data is kept
|
||||
locally in your web browser.
|
||||
See https://github.com/jakobhoeg/nextjs-ollama-llm-ui.
|
||||
|
||||
Required: You need the Ollama backend service running by having
|
||||
"services.nextjs-ollama-llm-ui.ollamaUrl" point to the correct url.
|
||||
You can host such a backend service with NixOS through "services.ollama".
|
||||
'';
|
||||
package = lib.mkPackageOption pkgs "nextjs-ollama-llm-ui" { };
|
||||
|
||||
hostname = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "127.0.0.1";
|
||||
example = "ui.example.org";
|
||||
description = ''
|
||||
The hostname under which the Ollama UI interface should be accessible.
|
||||
By default it uses localhost/127.0.0.1 to be accessible only from the local machine.
|
||||
Change to "0.0.0.0" to make it directly accessible from the local network.
|
||||
|
||||
Note: You should keep it at 127.0.0.1 and only serve to the local
|
||||
network or internet from a (home) server behind a reverse-proxy and secured encryption.
|
||||
See https://wiki.nixos.org/wiki/Nginx for instructions on how to set up a reverse-proxy.
|
||||
'';
|
||||
};
|
||||
|
||||
port = lib.mkOption {
|
||||
type = lib.types.port;
|
||||
default = 3000;
|
||||
example = 3000;
|
||||
description = ''
|
||||
The port under which the Ollama UI interface should be accessible.
|
||||
'';
|
||||
};
|
||||
|
||||
ollamaUrl = lib.mkOption {
|
||||
type = lib.types.str;
|
||||
default = "127.0.0.1:11434";
|
||||
example = "https://ollama.example.org";
|
||||
description = ''
|
||||
The address (including host and port) under which we can access the Ollama backend server.
|
||||
!Note that if the the UI service is running under a domain "https://ui.example.org",
|
||||
the Ollama backend service must allow "CORS" requests from this domain, e.g. by adding
|
||||
"services.ollama.environment.OLLAMA_ORIGINS = [ ... "https://ui.example.org" ];"!
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
systemd.services = {
|
||||
|
||||
nextjs-ollama-llm-ui = {
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
description = "Nextjs Ollama LLM Ui.";
|
||||
after = [ "network.target" ];
|
||||
environment = {
|
||||
HOSTNAME = cfg.hostname;
|
||||
PORT = toString cfg.port;
|
||||
NEXT_PUBLIC_OLLAMA_URL = cfg.ollamaUrl;
|
||||
};
|
||||
serviceConfig = {
|
||||
ExecStart = "${lib.getExe nextjs-ollama-llm-ui}";
|
||||
DynamicUser = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
meta.maintainers = with lib.maintainers; [ malteneuss ];
|
||||
}
|
||||
@@ -616,6 +616,7 @@ in {
|
||||
# TODO: put in networking.nix after the test becomes more complete
|
||||
networkingProxy = handleTest ./networking-proxy.nix {};
|
||||
nextcloud = handleTest ./nextcloud {};
|
||||
nextjs-ollama-llm-ui = runTest ./web-apps/nextjs-ollama-llm-ui.nix;
|
||||
nexus = handleTest ./nexus.nix {};
|
||||
# TODO: Test nfsv3 + Kerberos
|
||||
nfs3 = handleTest ./nfs { version = 3; };
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
{ lib, ... }:
|
||||
|
||||
{
|
||||
name = "nextjs-ollama-llm-ui";
|
||||
meta.maintainers = with lib.maintainers; [ malteneuss ];
|
||||
|
||||
nodes.machine =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
services.nextjs-ollama-llm-ui = {
|
||||
enable = true;
|
||||
port = 8080;
|
||||
};
|
||||
};
|
||||
|
||||
testScript = ''
|
||||
# Ensure the service is started and reachable
|
||||
machine.wait_for_unit("nextjs-ollama-llm-ui.service")
|
||||
machine.wait_for_open_port(8080)
|
||||
machine.succeed("curl --fail http://127.0.0.1:8080")
|
||||
'';
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
{ lib, fetchFromGitHub
|
||||
, pkg-config, meson ,ninja
|
||||
, python3Packages
|
||||
, gdk-pixbuf, glib, gobject-introspection, gtk3
|
||||
, libnotify
|
||||
, wrapGAppsHook3 }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "mpdevil";
|
||||
version = "1.11.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SoongNoonien";
|
||||
repo = pname;
|
||||
rev = "refs/tags/v${version}";
|
||||
sha256 = "sha256-ooNZSsVtIeueqgj9hR9OZp08qm8gGokiq8IU3U/ZV5w=";
|
||||
};
|
||||
|
||||
format = "other";
|
||||
|
||||
nativeBuildInputs = [
|
||||
glib.dev gobject-introspection gtk3 pkg-config meson ninja wrapGAppsHook3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
gdk-pixbuf glib libnotify
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
beautifulsoup4 distutils-extra mpd2 notify-py pygobject3 requests
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
glib-compile-schemas $out/share/glib-2.0/schemas
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||
'';
|
||||
|
||||
# Prevent double wrapping.
|
||||
dontWrapGApps = true;
|
||||
# Otherwise wrapGAppsHook3 do not pick up the dependencies correctly.
|
||||
strictDeps = false;
|
||||
# There aren't any checks.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple music browser for MPD";
|
||||
homepage = "https://github.com/SoongNoonien/mpdevil";
|
||||
license = licenses.gpl3Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ apfelkuchen6 ];
|
||||
mainProgram = "mpdevil";
|
||||
};
|
||||
}
|
||||
@@ -6,6 +6,7 @@
|
||||
pkg-config,
|
||||
python3,
|
||||
rustPlatform,
|
||||
stdenv,
|
||||
lib,
|
||||
wayland,
|
||||
xorg,
|
||||
@@ -18,6 +19,7 @@
|
||||
gsettings-desktop-schemas,
|
||||
glib,
|
||||
libxkbcommon,
|
||||
darwin,
|
||||
}:
|
||||
|
||||
let
|
||||
@@ -34,56 +36,62 @@ rustPlatform.buildRustPackage {
|
||||
hash = "sha256-WfoYQku1NFhvWyqeSVKtsMMEyUA97YFD7cvdn4XYIPI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
glib
|
||||
gsettings-desktop-schemas
|
||||
jre_minimal
|
||||
makeWrapper
|
||||
pkg-config
|
||||
python3
|
||||
wrapGAppsHook3
|
||||
];
|
||||
nativeBuildInputs =
|
||||
[ jre_minimal ]
|
||||
++ lib.optionals stdenv.isLinux [
|
||||
glib
|
||||
gsettings-desktop-schemas
|
||||
makeWrapper
|
||||
pkg-config
|
||||
python3
|
||||
wrapGAppsHook3
|
||||
]
|
||||
++ lib.optionals stdenv.isDarwin [ rustPlatform.bindgenHook ];
|
||||
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
cairo
|
||||
gtk3
|
||||
openssl
|
||||
wayland
|
||||
xorg.libX11
|
||||
xorg.libXcursor
|
||||
xorg.libXrandr
|
||||
xorg.libXi
|
||||
xorg.libxcb
|
||||
xorg.libXrender
|
||||
vulkan-loader
|
||||
udev
|
||||
];
|
||||
buildInputs =
|
||||
lib.optionals stdenv.isLinux [
|
||||
alsa-lib
|
||||
cairo
|
||||
gtk3
|
||||
openssl
|
||||
wayland
|
||||
xorg.libX11
|
||||
xorg.libXcursor
|
||||
xorg.libXrandr
|
||||
xorg.libXi
|
||||
xorg.libxcb
|
||||
xorg.libXrender
|
||||
vulkan-loader
|
||||
udev
|
||||
]
|
||||
++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.AppKit ];
|
||||
|
||||
dontWrapGApps = true;
|
||||
|
||||
preFixup = ''
|
||||
preFixup = lib.optionalString stdenv.isLinux ''
|
||||
patchelf $out/bin/ruffle_desktop \
|
||||
--add-needed libxkbcommon-x11.so \
|
||||
--add-needed libwayland-client.so \
|
||||
--add-rpath ${libxkbcommon}/lib:${wayland}/lib
|
||||
'';
|
||||
|
||||
postFixup = ''
|
||||
# This name is too generic
|
||||
mv $out/bin/exporter $out/bin/ruffle_exporter
|
||||
postFixup =
|
||||
''
|
||||
# This name is too generic
|
||||
mv $out/bin/exporter $out/bin/ruffle_exporter
|
||||
''
|
||||
+ lib.optionalString stdenv.isLinux ''
|
||||
vulkanWrapperArgs+=(
|
||||
--prefix LD_LIBRARY_PATH ':' ${vulkan-loader}/lib
|
||||
)
|
||||
|
||||
vulkanWrapperArgs+=(
|
||||
--prefix LD_LIBRARY_PATH ':' ${vulkan-loader}/lib
|
||||
)
|
||||
wrapProgram $out/bin/ruffle_exporter \
|
||||
"''${vulkanWrapperArgs[@]}"
|
||||
|
||||
wrapProgram $out/bin/ruffle_exporter \
|
||||
"''${vulkanWrapperArgs[@]}"
|
||||
|
||||
wrapProgram $out/bin/ruffle_desktop \
|
||||
"''${vulkanWrapperArgs[@]}" \
|
||||
"''${gappsWrapperArgs[@]}"
|
||||
'';
|
||||
wrapProgram $out/bin/ruffle_desktop \
|
||||
"''${vulkanWrapperArgs[@]}" \
|
||||
"''${gappsWrapperArgs[@]}"
|
||||
'';
|
||||
|
||||
cargoBuildFlags = [ "--workspace" ];
|
||||
|
||||
@@ -109,7 +117,7 @@ rustPlatform.buildRustPackage {
|
||||
govanify
|
||||
jchw
|
||||
];
|
||||
platforms = platforms.linux;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
mainProgram = "ruffle_desktop";
|
||||
};
|
||||
}
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
, pkg-config
|
||||
, stdenv
|
||||
, hyprland
|
||||
, fetchpatch
|
||||
}:
|
||||
let
|
||||
mkHyprlandPlugin = hyprland:
|
||||
@@ -24,15 +25,27 @@ let
|
||||
hy3 = { fetchFromGitHub, cmake, hyprland }:
|
||||
mkHyprlandPlugin hyprland {
|
||||
pluginName = "hy3";
|
||||
version = "0.39.1";
|
||||
version = "0.40.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "outfoxxed";
|
||||
repo = "hy3";
|
||||
rev = "hl0.39.1";
|
||||
hash = "sha256-PqVld+oFziSt7VZTNBomPyboaMEAIkerPQFwNJL/Wjw=";
|
||||
rev = "hl0.40.0";
|
||||
hash = "sha256-Y9bIML3C5xyKKv+Yel4LUfSkScwGunOVZkg+Z1dPwHI=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/outfoxxed/hy3/commit/33c8d761ff1c1d2264f7549a7bcfc010929d153c.patch";
|
||||
hash = "sha256-GcLQ38IVGB6VFMviKqWAM9ayjC2lpWekx3kqrnwsLhk=";
|
||||
})
|
||||
|
||||
(fetchpatch {
|
||||
url = "https://github.com/outfoxxed/hy3/commit/400930e0391a0e13ebbc6a3b9fe162e00aaad89a.patch";
|
||||
hash = "sha256-DVrZSkXE4uKrAceGpUZklqrVRzV1CpNRgjpq0uOz0jk=";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
@@ -27,13 +27,13 @@ let
|
||||
in
|
||||
buildNpmPackage' rec {
|
||||
pname = "bruno";
|
||||
version = "1.17.0";
|
||||
version = "1.18.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "usebruno";
|
||||
repo = "bruno";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-z4KL6CX1jtuC4lxqYA6Mg1zPSc9/OpRb530jPIQK3Is=";
|
||||
hash = "sha256-vYN245vMt/NjISaaFSXOkELONVld6knaKbi5FiN/0tA=";
|
||||
|
||||
postFetch = ''
|
||||
${lib.getExe npm-lockfile-fix} $out/package-lock.json
|
||||
|
||||
@@ -6,13 +6,13 @@
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "cano";
|
||||
version = "0-unstable-2024-31-3";
|
||||
version = "0.1.0-alpha";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CobbCoding1";
|
||||
repo = "Cano";
|
||||
rev = "6b3488545b4180f20a7fa892fb0ee719e9298ddc";
|
||||
hash = "sha256-qFo0szZVGLUf7c7KdEIofcieWZqtM6kQE6D8afrZ+RU=";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-BKbBDN7xZwlNzw7UFgX+PD9UXbr9FtELo+PlbfSHyRY=";
|
||||
};
|
||||
|
||||
buildInputs = [ gnumake ncurses ];
|
||||
|
||||
@@ -5,6 +5,7 @@
|
||||
git,
|
||||
testers,
|
||||
makeWrapper,
|
||||
githooks
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "githooks";
|
||||
@@ -70,7 +71,7 @@ buildGoModule rec {
|
||||
'';
|
||||
|
||||
passthru.tests.version = testers.testVersion {
|
||||
package = "githooks-cli";
|
||||
package = githooks;
|
||||
command = "githooks-cli --version";
|
||||
inherit version;
|
||||
};
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
pkg-config,
|
||||
libxcb,
|
||||
libXau,
|
||||
libXdmcp,
|
||||
darwin,
|
||||
lib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
name = "libclipboard";
|
||||
version = "1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jtanx";
|
||||
repo = "libclipboard";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-553hNG8QUlt/Aff9EKYr6w279ELr+2MX7nh1SKIklhA=";
|
||||
};
|
||||
|
||||
buildInputs = [ libxcb libXau libXdmcp ]
|
||||
++ lib.optional stdenv.isDarwin [ darwin.apple_sdk.frameworks.Cocoa ];
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
cmakeFlags = [ "-DBUILD_SHARED_LIBS=ON" ];
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
meta = {
|
||||
description = "Lightweight cross-platform clipboard library";
|
||||
homepage = "https://jtanx.github.io/libclipboard";
|
||||
platforms = lib.platforms.unix;
|
||||
license = lib.licenses.mit;
|
||||
maintainers = [ lib.maintainers.sigmanificient ];
|
||||
};
|
||||
})
|
||||
@@ -12,13 +12,13 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lxd-ui";
|
||||
version = "0.8";
|
||||
version = "0.8.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "canonical";
|
||||
repo = "lxd-ui";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-oD/GPm84oFXHcZ8vTUzNgQinrHwNuvpeVjsrp8ibIZY=";
|
||||
hash = "sha256-XLHLWD7iH4A5+MaFYiMILnjPGN565gBRpimFoOJMRtI=";
|
||||
};
|
||||
|
||||
offlineCache = fetchYarnDeps {
|
||||
|
||||
@@ -0,0 +1,879 @@
|
||||
diff --git a/package-lock.json b/package-lock.json
|
||||
index 11dfbf6..b9470d0 100644
|
||||
--- a/package-lock.json
|
||||
+++ b/package-lock.json
|
||||
@@ -30,7 +30,7 @@
|
||||
"framer-motion": "^11.0.3",
|
||||
"langchain": "^0.1.13",
|
||||
"lucide-react": "^0.322.0",
|
||||
- "next": "14.1.0",
|
||||
+ "next": "^14.2.3",
|
||||
"next-themes": "^0.2.1",
|
||||
"react": "^18",
|
||||
"react-code-blocks": "^0.1.6",
|
||||
@@ -40,6 +40,7 @@
|
||||
"react-resizable-panels": "^2.0.3",
|
||||
"react-textarea-autosize": "^8.5.3",
|
||||
"remark-gfm": "^4.0.0",
|
||||
+ "sharp": "^0.33.4",
|
||||
"sonner": "^1.4.0",
|
||||
"tailwind-merge": "^2.2.1",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
@@ -139,6 +140,15 @@
|
||||
"node": ">=6.9.0"
|
||||
}
|
||||
},
|
||||
+ "node_modules/@emnapi/runtime": {
|
||||
+ "version": "1.1.1",
|
||||
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.1.1.tgz",
|
||||
+ "integrity": "sha512-3bfqkzuR1KLx57nZfjr2NLnFOobvyS0aTszaEGCGqmYMVDRaGvgIZbjGSV/MHSSmLgQ/b9JFHQ5xm5WRZYd+XQ==",
|
||||
+ "optional": true,
|
||||
+ "dependencies": {
|
||||
+ "tslib": "^2.4.0"
|
||||
+ }
|
||||
+ },
|
||||
"node_modules/@emoji-mart/data": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/@emoji-mart/data/-/data-1.1.2.tgz",
|
||||
@@ -304,6 +314,437 @@
|
||||
"integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==",
|
||||
"dev": true
|
||||
},
|
||||
+ "node_modules/@img/sharp-darwin-arm64": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.4.tgz",
|
||||
+ "integrity": "sha512-p0suNqXufJs9t3RqLBO6vvrgr5OhgbWp76s5gTRvdmxmuv9E1rcaqGUsl3l4mKVmXPkTkTErXediAui4x+8PSA==",
|
||||
+ "cpu": [
|
||||
+ "arm64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "darwin"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.26",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-darwin-arm64": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-darwin-x64": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.4.tgz",
|
||||
+ "integrity": "sha512-0l7yRObwtTi82Z6ebVI2PnHT8EB2NxBgpK2MiKJZJ7cz32R4lxd001ecMhzzsZig3Yv9oclvqqdV93jo9hy+Dw==",
|
||||
+ "cpu": [
|
||||
+ "x64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "darwin"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.26",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-darwin-x64": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.2.tgz",
|
||||
+ "integrity": "sha512-tcK/41Rq8IKlSaKRCCAuuY3lDJjQnYIW1UXU1kxcEKrfL8WR7N6+rzNoOxoQRJWTAECuKwgAHnPvqXGN8XfkHA==",
|
||||
+ "cpu": [
|
||||
+ "arm64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "darwin"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "macos": ">=11",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-darwin-x64": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.2.tgz",
|
||||
+ "integrity": "sha512-Ofw+7oaWa0HiiMiKWqqaZbaYV3/UGL2wAPeLuJTx+9cXpCRdvQhCLG0IH8YGwM0yGWGLpsF4Su9vM1o6aer+Fw==",
|
||||
+ "cpu": [
|
||||
+ "x64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "darwin"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "macos": ">=10.13",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-linux-arm": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.2.tgz",
|
||||
+ "integrity": "sha512-iLWCvrKgeFoglQxdEwzu1eQV04o8YeYGFXtfWU26Zr2wWT3q3MTzC+QTCO3ZQfWd3doKHT4Pm2kRmLbupT+sZw==",
|
||||
+ "cpu": [
|
||||
+ "arm"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.28",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-linux-arm64": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.2.tgz",
|
||||
+ "integrity": "sha512-x7kCt3N00ofFmmkkdshwj3vGPCnmiDh7Gwnd4nUwZln2YjqPxV1NlTyZOvoDWdKQVDL911487HOueBvrpflagw==",
|
||||
+ "cpu": [
|
||||
+ "arm64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.26",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-linux-s390x": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.2.tgz",
|
||||
+ "integrity": "sha512-cmhQ1J4qVhfmS6szYW7RT+gLJq9dH2i4maq+qyXayUSn9/3iY2ZeWpbAgSpSVbV2E1JUL2Gg7pwnYQ1h8rQIog==",
|
||||
+ "cpu": [
|
||||
+ "s390x"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.28",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-linux-x64": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.2.tgz",
|
||||
+ "integrity": "sha512-E441q4Qdb+7yuyiADVi5J+44x8ctlrqn8XgkDTwr4qPJzWkaHwD489iZ4nGDgcuya4iMN3ULV6NwbhRZJ9Z7SQ==",
|
||||
+ "cpu": [
|
||||
+ "x64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.26",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.2.tgz",
|
||||
+ "integrity": "sha512-3CAkndNpYUrlDqkCM5qhksfE+qSIREVpyoeHIU6jd48SJZViAmznoQQLAv4hVXF7xyUB9zf+G++e2v1ABjCbEQ==",
|
||||
+ "cpu": [
|
||||
+ "arm64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "musl": ">=1.2.2",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
|
||||
+ "version": "1.0.2",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.2.tgz",
|
||||
+ "integrity": "sha512-VI94Q6khIHqHWNOh6LLdm9s2Ry4zdjWJwH56WoiJU7NTeDwyApdZZ8c+SADC8OH98KWNQXnE01UdJ9CSfZvwZw==",
|
||||
+ "cpu": [
|
||||
+ "x64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "musl": ">=1.2.2",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-linux-arm": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.4.tgz",
|
||||
+ "integrity": "sha512-RUgBD1c0+gCYZGCCe6mMdTiOFS0Zc/XrN0fYd6hISIKcDUbAW5NtSQW9g/powkrXYm6Vzwd6y+fqmExDuCdHNQ==",
|
||||
+ "cpu": [
|
||||
+ "arm"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.28",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-linux-arm": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-linux-arm64": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.4.tgz",
|
||||
+ "integrity": "sha512-2800clwVg1ZQtxwSoTlHvtm9ObgAax7V6MTAB/hDT945Tfyy3hVkmiHpeLPCKYqYR1Gcmv1uDZ3a4OFwkdBL7Q==",
|
||||
+ "cpu": [
|
||||
+ "arm64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.26",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-linux-arm64": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-linux-s390x": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.4.tgz",
|
||||
+ "integrity": "sha512-h3RAL3siQoyzSoH36tUeS0PDmb5wINKGYzcLB5C6DIiAn2F3udeFAum+gj8IbA/82+8RGCTn7XW8WTFnqag4tQ==",
|
||||
+ "cpu": [
|
||||
+ "s390x"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.31",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-linux-s390x": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-linux-x64": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.4.tgz",
|
||||
+ "integrity": "sha512-GoR++s0XW9DGVi8SUGQ/U4AeIzLdNjHka6jidVwapQ/JebGVQIpi52OdyxCNVRE++n1FCLzjDovJNozif7w/Aw==",
|
||||
+ "cpu": [
|
||||
+ "x64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "glibc": ">=2.26",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-linux-x64": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-linuxmusl-arm64": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.4.tgz",
|
||||
+ "integrity": "sha512-nhr1yC3BlVrKDTl6cO12gTpXMl4ITBUZieehFvMntlCXFzH2bvKG76tBL2Y/OqhupZt81pR7R+Q5YhJxW0rGgQ==",
|
||||
+ "cpu": [
|
||||
+ "arm64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "musl": ">=1.2.2",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-linuxmusl-x64": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.4.tgz",
|
||||
+ "integrity": "sha512-uCPTku0zwqDmZEOi4ILyGdmW76tH7dm8kKlOIV1XC5cLyJ71ENAAqarOHQh0RLfpIpbV5KOpXzdU6XkJtS0daw==",
|
||||
+ "cpu": [
|
||||
+ "x64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "linux"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "musl": ">=1.2.2",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.2"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-wasm32": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.4.tgz",
|
||||
+ "integrity": "sha512-Bmmauh4sXUsUqkleQahpdNXKvo+wa1V9KhT2pDA4VJGKwnKMJXiSTGphn0gnJrlooda0QxCtXc6RX1XAU6hMnQ==",
|
||||
+ "cpu": [
|
||||
+ "wasm32"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "dependencies": {
|
||||
+ "@emnapi/runtime": "^1.1.1"
|
||||
+ },
|
||||
+ "engines": {
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-win32-ia32": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.4.tgz",
|
||||
+ "integrity": "sha512-99SJ91XzUhYHbx7uhK3+9Lf7+LjwMGQZMDlO/E/YVJ7Nc3lyDFZPGhjwiYdctoH2BOzW9+TnfqcaMKt0jHLdqw==",
|
||||
+ "cpu": [
|
||||
+ "ia32"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "win32"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
+ "node_modules/@img/sharp-win32-x64": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.4.tgz",
|
||||
+ "integrity": "sha512-3QLocdTRVIrFNye5YocZl+KKpYKP+fksi1QhmOArgx7GyhIbQp/WrJRu176jm8IxromS7RIkzMiMINVdBtC8Aw==",
|
||||
+ "cpu": [
|
||||
+ "x64"
|
||||
+ ],
|
||||
+ "optional": true,
|
||||
+ "os": [
|
||||
+ "win32"
|
||||
+ ],
|
||||
+ "engines": {
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0",
|
||||
+ "npm": ">=9.6.5",
|
||||
+ "pnpm": ">=7.1.0",
|
||||
+ "yarn": ">=3.2.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ }
|
||||
+ },
|
||||
"node_modules/@isaacs/cliui": {
|
||||
"version": "8.0.2",
|
||||
"resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz",
|
||||
@@ -800,9 +1241,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/env": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/env/-/env-14.1.0.tgz",
|
||||
- "integrity": "sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw=="
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-14.2.3.tgz",
|
||||
+ "integrity": "sha512-W7fd7IbkfmeeY2gXrzJYDx8D2lWKbVoTIj1o1ScPHNzvp30s1AuoEFSdr39bC5sjxJaxTtq3OTCZboNp0lNWHA=="
|
||||
},
|
||||
"node_modules/@next/eslint-plugin-next": {
|
||||
"version": "14.1.0",
|
||||
@@ -814,9 +1255,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-darwin-arm64": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.0.tgz",
|
||||
- "integrity": "sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.2.3.tgz",
|
||||
+ "integrity": "sha512-3pEYo/RaGqPP0YzwnlmPN2puaF2WMLM3apt5jLW2fFdXD9+pqcoTzRk+iZsf8ta7+quAe4Q6Ms0nR0SFGFdS1A==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -829,9 +1270,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-darwin-x64": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.0.tgz",
|
||||
- "integrity": "sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.2.3.tgz",
|
||||
+ "integrity": "sha512-6adp7waE6P1TYFSXpY366xwsOnEXM+y1kgRpjSRVI2CBDOcbRjsJ67Z6EgKIqWIue52d2q/Mx8g9MszARj8IEA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -844,9 +1285,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-linux-arm64-gnu": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.0.tgz",
|
||||
- "integrity": "sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.2.3.tgz",
|
||||
+ "integrity": "sha512-cuzCE/1G0ZSnTAHJPUT1rPgQx1w5tzSX7POXSLaS7w2nIUJUD+e25QoXD/hMfxbsT9rslEXugWypJMILBj/QsA==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -859,9 +1300,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-linux-arm64-musl": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.0.tgz",
|
||||
- "integrity": "sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.2.3.tgz",
|
||||
+ "integrity": "sha512-0D4/oMM2Y9Ta3nGuCcQN8jjJjmDPYpHX9OJzqk42NZGJocU2MqhBq5tWkJrUQOQY9N+In9xOdymzapM09GeiZw==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -874,9 +1315,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-linux-x64-gnu": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.0.tgz",
|
||||
- "integrity": "sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.2.3.tgz",
|
||||
+ "integrity": "sha512-ENPiNnBNDInBLyUU5ii8PMQh+4XLr4pG51tOp6aJ9xqFQ2iRI6IH0Ds2yJkAzNV1CfyagcyzPfROMViS2wOZ9w==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -889,9 +1330,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-linux-x64-musl": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.0.tgz",
|
||||
- "integrity": "sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.2.3.tgz",
|
||||
+ "integrity": "sha512-BTAbq0LnCbF5MtoM7I/9UeUu/8ZBY0i8SFjUMCbPDOLv+un67e2JgyN4pmgfXBwy/I+RHu8q+k+MCkDN6P9ViQ==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -904,9 +1345,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-win32-arm64-msvc": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.0.tgz",
|
||||
- "integrity": "sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.2.3.tgz",
|
||||
+ "integrity": "sha512-AEHIw/dhAMLNFJFJIJIyOFDzrzI5bAjI9J26gbO5xhAKHYTZ9Or04BesFPXiAYXDNdrwTP2dQceYA4dL1geu8A==",
|
||||
"cpu": [
|
||||
"arm64"
|
||||
],
|
||||
@@ -919,9 +1360,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-win32-ia32-msvc": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.0.tgz",
|
||||
- "integrity": "sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.2.3.tgz",
|
||||
+ "integrity": "sha512-vga40n1q6aYb0CLrM+eEmisfKCR45ixQYXuBXxOOmmoV8sYST9k7E3US32FsY+CkkF7NtzdcebiFT4CHuMSyZw==",
|
||||
"cpu": [
|
||||
"ia32"
|
||||
],
|
||||
@@ -934,9 +1375,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/@next/swc-win32-x64-msvc": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.0.tgz",
|
||||
- "integrity": "sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.2.3.tgz",
|
||||
+ "integrity": "sha512-Q1/zm43RWynxrO7lW4ehciQVj+5ePBhOK+/K2P7pLFX3JaJ/IZVC69SHidrmZSOkqz7ECIOhhy7XhAFG4JYyHA==",
|
||||
"cpu": [
|
||||
"x64"
|
||||
],
|
||||
@@ -1810,11 +2251,17 @@
|
||||
"integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==",
|
||||
"dev": true
|
||||
},
|
||||
+ "node_modules/@swc/counter": {
|
||||
+ "version": "0.1.3",
|
||||
+ "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
|
||||
+ "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ=="
|
||||
+ },
|
||||
"node_modules/@swc/helpers": {
|
||||
- "version": "0.5.2",
|
||||
- "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz",
|
||||
- "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==",
|
||||
+ "version": "0.5.5",
|
||||
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.5.tgz",
|
||||
+ "integrity": "sha512-KGYxvIOXcceOAbEk4bi/dVLEK9z8sZ0uBB3Il5b1rhfClSpcX0yfRO0KmTkqR2cnQDymwLB+25ZyMzICg/cm/A==",
|
||||
"dependencies": {
|
||||
+ "@swc/counter": "^0.1.3",
|
||||
"tslib": "^2.4.0"
|
||||
}
|
||||
},
|
||||
@@ -2930,6 +3377,18 @@
|
||||
"periscopic": "^3.1.0"
|
||||
}
|
||||
},
|
||||
+ "node_modules/color": {
|
||||
+ "version": "4.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
|
||||
+ "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
|
||||
+ "dependencies": {
|
||||
+ "color-convert": "^2.0.1",
|
||||
+ "color-string": "^1.9.0"
|
||||
+ },
|
||||
+ "engines": {
|
||||
+ "node": ">=12.5.0"
|
||||
+ }
|
||||
+ },
|
||||
"node_modules/color-convert": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
||||
@@ -2946,6 +3405,15 @@
|
||||
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
||||
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
|
||||
},
|
||||
+ "node_modules/color-string": {
|
||||
+ "version": "1.9.1",
|
||||
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
|
||||
+ "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
|
||||
+ "dependencies": {
|
||||
+ "color-name": "^1.0.0",
|
||||
+ "simple-swizzle": "^0.2.2"
|
||||
+ }
|
||||
+ },
|
||||
"node_modules/combined-stream": {
|
||||
"version": "1.0.8",
|
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||
@@ -3152,6 +3620,14 @@
|
||||
"node": ">=6"
|
||||
}
|
||||
},
|
||||
+ "node_modules/detect-libc": {
|
||||
+ "version": "2.0.3",
|
||||
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz",
|
||||
+ "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==",
|
||||
+ "engines": {
|
||||
+ "node": ">=8"
|
||||
+ }
|
||||
+ },
|
||||
"node_modules/detect-node-es": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz",
|
||||
@@ -4677,6 +5153,11 @@
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
+ "node_modules/is-arrayish": {
|
||||
+ "version": "0.3.2",
|
||||
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz",
|
||||
+ "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="
|
||||
+ },
|
||||
"node_modules/is-async-function": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz",
|
||||
@@ -6676,12 +7157,12 @@
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/next": {
|
||||
- "version": "14.1.0",
|
||||
- "resolved": "https://registry.npmjs.org/next/-/next-14.1.0.tgz",
|
||||
- "integrity": "sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==",
|
||||
+ "version": "14.2.3",
|
||||
+ "resolved": "https://registry.npmjs.org/next/-/next-14.2.3.tgz",
|
||||
+ "integrity": "sha512-dowFkFTR8v79NPJO4QsBUtxv0g9BrS/phluVpMAt2ku7H+cbcBJlopXjkWlwxrk/xGqMemr7JkGPGemPrLLX7A==",
|
||||
"dependencies": {
|
||||
- "@next/env": "14.1.0",
|
||||
- "@swc/helpers": "0.5.2",
|
||||
+ "@next/env": "14.2.3",
|
||||
+ "@swc/helpers": "0.5.5",
|
||||
"busboy": "1.6.0",
|
||||
"caniuse-lite": "^1.0.30001579",
|
||||
"graceful-fs": "^4.2.11",
|
||||
@@ -6695,18 +7176,19 @@
|
||||
"node": ">=18.17.0"
|
||||
},
|
||||
"optionalDependencies": {
|
||||
- "@next/swc-darwin-arm64": "14.1.0",
|
||||
- "@next/swc-darwin-x64": "14.1.0",
|
||||
- "@next/swc-linux-arm64-gnu": "14.1.0",
|
||||
- "@next/swc-linux-arm64-musl": "14.1.0",
|
||||
- "@next/swc-linux-x64-gnu": "14.1.0",
|
||||
- "@next/swc-linux-x64-musl": "14.1.0",
|
||||
- "@next/swc-win32-arm64-msvc": "14.1.0",
|
||||
- "@next/swc-win32-ia32-msvc": "14.1.0",
|
||||
- "@next/swc-win32-x64-msvc": "14.1.0"
|
||||
+ "@next/swc-darwin-arm64": "14.2.3",
|
||||
+ "@next/swc-darwin-x64": "14.2.3",
|
||||
+ "@next/swc-linux-arm64-gnu": "14.2.3",
|
||||
+ "@next/swc-linux-arm64-musl": "14.2.3",
|
||||
+ "@next/swc-linux-x64-gnu": "14.2.3",
|
||||
+ "@next/swc-linux-x64-musl": "14.2.3",
|
||||
+ "@next/swc-win32-arm64-msvc": "14.2.3",
|
||||
+ "@next/swc-win32-ia32-msvc": "14.2.3",
|
||||
+ "@next/swc-win32-x64-msvc": "14.2.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@opentelemetry/api": "^1.1.0",
|
||||
+ "@playwright/test": "^1.41.2",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"sass": "^1.3.0"
|
||||
@@ -6715,6 +7197,9 @@
|
||||
"@opentelemetry/api": {
|
||||
"optional": true
|
||||
},
|
||||
+ "@playwright/test": {
|
||||
+ "optional": true
|
||||
+ },
|
||||
"sass": {
|
||||
"optional": true
|
||||
}
|
||||
@@ -7928,13 +8413,9 @@
|
||||
}
|
||||
},
|
||||
"node_modules/semver": {
|
||||
- "version": "7.5.4",
|
||||
- "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
|
||||
- "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
|
||||
- "dev": true,
|
||||
- "dependencies": {
|
||||
- "lru-cache": "^6.0.0"
|
||||
- },
|
||||
+ "version": "7.6.2",
|
||||
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.2.tgz",
|
||||
+ "integrity": "sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==",
|
||||
"bin": {
|
||||
"semver": "bin/semver.js"
|
||||
},
|
||||
@@ -7942,18 +8423,6 @@
|
||||
"node": ">=10"
|
||||
}
|
||||
},
|
||||
- "node_modules/semver/node_modules/lru-cache": {
|
||||
- "version": "6.0.0",
|
||||
- "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
|
||||
- "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
|
||||
- "dev": true,
|
||||
- "dependencies": {
|
||||
- "yallist": "^4.0.0"
|
||||
- },
|
||||
- "engines": {
|
||||
- "node": ">=10"
|
||||
- }
|
||||
- },
|
||||
"node_modules/seroval": {
|
||||
"version": "1.0.4",
|
||||
"resolved": "https://registry.npmjs.org/seroval/-/seroval-1.0.4.tgz",
|
||||
@@ -8010,6 +8479,45 @@
|
||||
"resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz",
|
||||
"integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ=="
|
||||
},
|
||||
+ "node_modules/sharp": {
|
||||
+ "version": "0.33.4",
|
||||
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.4.tgz",
|
||||
+ "integrity": "sha512-7i/dt5kGl7qR4gwPRD2biwD2/SvBn3O04J77XKFgL2OnZtQw+AG9wnuS/csmu80nPRHLYE9E41fyEiG8nhH6/Q==",
|
||||
+ "hasInstallScript": true,
|
||||
+ "dependencies": {
|
||||
+ "color": "^4.2.3",
|
||||
+ "detect-libc": "^2.0.3",
|
||||
+ "semver": "^7.6.0"
|
||||
+ },
|
||||
+ "engines": {
|
||||
+ "libvips": ">=8.15.2",
|
||||
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
|
||||
+ },
|
||||
+ "funding": {
|
||||
+ "url": "https://opencollective.com/libvips"
|
||||
+ },
|
||||
+ "optionalDependencies": {
|
||||
+ "@img/sharp-darwin-arm64": "0.33.4",
|
||||
+ "@img/sharp-darwin-x64": "0.33.4",
|
||||
+ "@img/sharp-libvips-darwin-arm64": "1.0.2",
|
||||
+ "@img/sharp-libvips-darwin-x64": "1.0.2",
|
||||
+ "@img/sharp-libvips-linux-arm": "1.0.2",
|
||||
+ "@img/sharp-libvips-linux-arm64": "1.0.2",
|
||||
+ "@img/sharp-libvips-linux-s390x": "1.0.2",
|
||||
+ "@img/sharp-libvips-linux-x64": "1.0.2",
|
||||
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.2",
|
||||
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.2",
|
||||
+ "@img/sharp-linux-arm": "0.33.4",
|
||||
+ "@img/sharp-linux-arm64": "0.33.4",
|
||||
+ "@img/sharp-linux-s390x": "0.33.4",
|
||||
+ "@img/sharp-linux-x64": "0.33.4",
|
||||
+ "@img/sharp-linuxmusl-arm64": "0.33.4",
|
||||
+ "@img/sharp-linuxmusl-x64": "0.33.4",
|
||||
+ "@img/sharp-wasm32": "0.33.4",
|
||||
+ "@img/sharp-win32-ia32": "0.33.4",
|
||||
+ "@img/sharp-win32-x64": "0.33.4"
|
||||
+ }
|
||||
+ },
|
||||
"node_modules/shebang-command": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
||||
@@ -8054,6 +8562,14 @@
|
||||
"url": "https://github.com/sponsors/isaacs"
|
||||
}
|
||||
},
|
||||
+ "node_modules/simple-swizzle": {
|
||||
+ "version": "0.2.2",
|
||||
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz",
|
||||
+ "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==",
|
||||
+ "dependencies": {
|
||||
+ "is-arrayish": "^0.3.1"
|
||||
+ }
|
||||
+ },
|
||||
"node_modules/slash": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
|
||||
@@ -9369,12 +9885,6 @@
|
||||
"node": ">=0.4"
|
||||
}
|
||||
},
|
||||
- "node_modules/yallist": {
|
||||
- "version": "4.0.0",
|
||||
- "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
|
||||
- "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==",
|
||||
- "dev": true
|
||||
- },
|
||||
"node_modules/yaml": {
|
||||
"version": "2.3.4",
|
||||
"resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz",
|
||||
diff --git a/package.json b/package.json
|
||||
index 4185096..4ab1c58 100644
|
||||
--- a/package.json
|
||||
+++ b/package.json
|
||||
@@ -31,7 +31,7 @@
|
||||
"framer-motion": "^11.0.3",
|
||||
"langchain": "^0.1.13",
|
||||
"lucide-react": "^0.322.0",
|
||||
- "next": "14.1.0",
|
||||
+ "next": "^14.2.3",
|
||||
"next-themes": "^0.2.1",
|
||||
"react": "^18",
|
||||
"react-code-blocks": "^0.1.6",
|
||||
@@ -41,6 +41,7 @@
|
||||
"react-resizable-panels": "^2.0.3",
|
||||
"react-textarea-autosize": "^8.5.3",
|
||||
"remark-gfm": "^4.0.0",
|
||||
+ "sharp": "^0.33.4",
|
||||
"sonner": "^1.4.0",
|
||||
"tailwind-merge": "^2.2.1",
|
||||
"tailwindcss-animate": "^1.0.7",
|
||||
--
|
||||
2.42.0
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
|
||||
index 647ed68..b08088e 100644
|
||||
--- a/src/app/layout.tsx
|
||||
+++ b/src/app/layout.tsx
|
||||
@@ -1,10 +1,10 @@
|
||||
import type { Metadata } from "next";
|
||||
-import { Inter } from "next/font/google";
|
||||
+import localFont from "next/font/local";
|
||||
import "./globals.css";
|
||||
import { ThemeProvider } from "@/providers/theme-provider";
|
||||
import { Toaster } from "@/components/ui/sonner"
|
||||
|
||||
-const inter = Inter({ subsets: ["latin"] });
|
||||
+const inter = localFont({ src: './Inter.ttf' });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Ollama UI",
|
||||
--
|
||||
2.42.0
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
diff --git a/next.config.mjs b/next.config.mjs
|
||||
index dc34f1a..f6f90c4 100644
|
||||
--- a/next.config.mjs
|
||||
+++ b/next.config.mjs
|
||||
@@ -1,6 +1,7 @@
|
||||
/** @type {import('next').NextConfig} */
|
||||
const nextConfig = {
|
||||
- webpack: (config, { isServer }) => {
|
||||
+ output: 'standalone',
|
||||
+ webpack: (config, { isServer }) => {
|
||||
// Fixes npm packages that depend on `fs` module
|
||||
if (!isServer) {
|
||||
config.resolve.fallback = {
|
||||
--
|
||||
2.42.0
|
||||
|
||||
@@ -0,0 +1,101 @@
|
||||
{
|
||||
buildNpmPackage,
|
||||
fetchFromGitHub,
|
||||
inter,
|
||||
nixosTests,
|
||||
lib,
|
||||
# This is a app can only be used in a browser and starts a web server only accessible at
|
||||
# localhost/127.0.0.1 from the local computer at the given port.
|
||||
defaultHostname ? "127.0.0.1",
|
||||
defaultPort ? 3000,
|
||||
# Where to find the Ollama service; this url gets baked into the Nix package
|
||||
ollamaUrl ? "http://127.0.0.1:11434",
|
||||
...
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.0.1";
|
||||
in
|
||||
buildNpmPackage {
|
||||
pname = "nextjs-ollama-llm-ui";
|
||||
inherit version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jakobhoeg";
|
||||
repo = "nextjs-ollama-llm-ui";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-pZJgiopm0VGwaZxsNcyRawevvzEcK1j5WhngX1Pn6YE=";
|
||||
};
|
||||
npmDepsHash = "sha256-wtHOW0CyEOszgiZwDkF2/cSxbw6WFRLbhDnd2FlY70E=";
|
||||
|
||||
patches = [
|
||||
# Update to a newer nextjs version that buildNpmPackage is able to build.
|
||||
# Remove at nextjs update.
|
||||
./0001-update-nextjs.patch
|
||||
# nextjs tries to download google fonts from the internet during buildPhase and fails in Nix sandbox.
|
||||
# We patch the code to expect a local font from src/app/Inter.ttf that we load from Nixpkgs in preBuild phase.
|
||||
./0002-use-local-google-fonts.patch
|
||||
# Modify next.config.js to produce a production "standalone" output at .next/standalone.
|
||||
# This output is easy to package with Nix and run with "node .next/standalone/server.js" later.
|
||||
./0003-add-standalone-output.patch
|
||||
];
|
||||
|
||||
# Adjust buildNpmPackage phases with nextjs quirk workarounds.
|
||||
# These are adapted from
|
||||
# https://github.com/NixOS/nixpkgs/blob/485125d667747f971cfcd1a1cfb4b2213a700c79/pkgs/servers/homepage-dashboard/default.nix
|
||||
#######################3
|
||||
preBuild = ''
|
||||
# We have to pass and bake in the Ollama URL into the package
|
||||
echo "NEXT_PUBLIC_OLLAMA_URL=${ollamaUrl}" > .env
|
||||
|
||||
# Replace the googleapis.com Inter font with a local copy from nixpkgs
|
||||
cp "${inter}/share/fonts/truetype/InterVariable.ttf" src/app/Inter.ttf
|
||||
'';
|
||||
|
||||
postBuild = ''
|
||||
# Add a shebang to the server js file, then patch the shebang to use a nixpkgs nodejs binary.
|
||||
sed -i '1s|^|#!/usr/bin/env node\n|' .next/standalone/server.js
|
||||
patchShebangs .next/standalone/server.js
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/{share,bin}
|
||||
|
||||
cp -r .next/standalone $out/share/homepage/
|
||||
cp -r .env $out/share/homepage/
|
||||
cp -r public $out/share/homepage/public
|
||||
|
||||
mkdir -p $out/share/homepage/.next
|
||||
cp -r .next/static $out/share/homepage/.next/static
|
||||
|
||||
chmod +x $out/share/homepage/server.js
|
||||
|
||||
# we set a default port to support "nix run ..."
|
||||
makeWrapper $out/share/homepage/server.js $out/bin/nextjs-ollama-llm-ui \
|
||||
--set-default PORT ${toString defaultPort} \
|
||||
--set-default HOSTNAME ${defaultHostname}
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
doDist = false;
|
||||
#######################
|
||||
|
||||
passthru = {
|
||||
tests = {
|
||||
inherit (nixosTests) nextjs-ollama-llm-ui;
|
||||
};
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "Simple chat web interface for Ollama LLMs.";
|
||||
changelog = "https://github.com/jakobhoeg/nextjs-ollama-llm-ui/releases/tag/v${version}";
|
||||
mainProgram = "nextjs-ollama-llm-ui";
|
||||
homepage = "https://github.com/jakobhoeg/nextjs-ollama-llm-ui";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ malteneuss ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
@@ -0,0 +1,60 @@
|
||||
{
|
||||
lib,
|
||||
python3Packages,
|
||||
fetchFromGitHub,
|
||||
meson,
|
||||
ninja,
|
||||
pkg-config,
|
||||
gobject-introspection,
|
||||
wrapGAppsHook4,
|
||||
desktop-file-utils,
|
||||
libadwaita,
|
||||
}:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "plattenalbum";
|
||||
version = "2.1.0";
|
||||
pyproject = false;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "SoongNoonien";
|
||||
repo = "plattenalbum";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-vRBlShbNuPpL29huhzYSuUcMJmSLljO4nc6cSAp3NB4=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
gobject-introspection
|
||||
wrapGAppsHook4
|
||||
desktop-file-utils
|
||||
];
|
||||
|
||||
buildInputs = [ libadwaita ];
|
||||
|
||||
dependencies = with python3Packages; [
|
||||
pygobject3
|
||||
mpd2
|
||||
];
|
||||
|
||||
dontWrapGApps = true;
|
||||
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=(''${gappsWrapperArgs[@]})
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A client for the Music Player Daemon (originally named mpdevil)";
|
||||
homepage = "https://github.com/SoongNoonien/plattenalbum";
|
||||
changelog = "https://github.com/SoongNoonien/plattenalbum/releases/tag/v${version}";
|
||||
license = with lib.licenses; [
|
||||
gpl3Only
|
||||
cc0
|
||||
];
|
||||
mainProgram = "plattenalbum";
|
||||
maintainers = with lib.maintainers; [ aleksana ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
+1943
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,34 @@
|
||||
{ lib
|
||||
, buildNpmPackage
|
||||
, fetchurl
|
||||
}:
|
||||
let
|
||||
version = "0.16.9";
|
||||
in buildNpmPackage {
|
||||
pname = "svelte-language-server";
|
||||
inherit version;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-${version}.tgz";
|
||||
hash = "sha256-RR2RzBZGCyd0hnEX4iD5pjmgtq8GzgrGZAG8Qq63EZA=";
|
||||
};
|
||||
|
||||
npmDepsHash = "sha256-WYiWm/2gr/0kXZOYeMjVYZOg0JttghPF9jkwNnb0nQo=";
|
||||
|
||||
postPatch = ''
|
||||
ln -s ${./package-lock.json} package-lock.json
|
||||
'';
|
||||
|
||||
dontNpmBuild = true;
|
||||
|
||||
passthru.updateScript = ./update.sh;
|
||||
|
||||
meta = {
|
||||
description = "Language server (implementing the language server protocol) for Svelte";
|
||||
downloadPage = "https://www.npmjs.com/package/svelte-language-server";
|
||||
homepage = "https://github.com/sveltejs/language-tools";
|
||||
license = lib.licenses.mit;
|
||||
mainProgram = "svelteserver";
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
#! /usr/bin/env nix-shell
|
||||
#! nix-shell -i bash -p gnused nix nodejs prefetch-npm-deps wget
|
||||
|
||||
set -euo pipefail
|
||||
pushd "$(dirname "${BASH_SOURCE[0]}")"
|
||||
|
||||
version=$(npm view svelte-language-server version)
|
||||
tarball="svelte-language-server-$version.tgz"
|
||||
url="https://registry.npmjs.org/svelte-language-server/-/$tarball"
|
||||
|
||||
if [[ "$UPDATE_NIX_OLD_VERSION" == "$version" ]]; then
|
||||
echo "Already up to date!"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
sed -i 's#version = "[^"]*"#version = "'"$version"'"#' package.nix
|
||||
|
||||
sha256=$(nix-prefetch-url "$url")
|
||||
src_hash=$(nix-hash --type sha256 --to-sri "$sha256")
|
||||
sed -i 's#hash = "[^"]*"#hash = "'"$src_hash"'"#' package.nix
|
||||
|
||||
rm -f package-lock.json package.json *.tgz
|
||||
wget "$url"
|
||||
tar xf "$tarball" --strip-components=1 package/package.json
|
||||
npm i --package-lock-only
|
||||
npm_hash=$(prefetch-npm-deps package-lock.json)
|
||||
sed -i 's#npmDepsHash = "[^"]*"#npmDepsHash = "'"$npm_hash"'"#' package.nix
|
||||
rm -f package.json *.tgz
|
||||
|
||||
popd
|
||||
@@ -0,0 +1,64 @@
|
||||
{ lib
|
||||
, blueprint-compiler
|
||||
, cargo
|
||||
, desktop-file-utils
|
||||
, fetchFromGitLab
|
||||
, libadwaita
|
||||
, meson
|
||||
, ninja
|
||||
, pkg-config
|
||||
, rustPlatform
|
||||
, rustc
|
||||
, stdenv
|
||||
, wrapGAppsHook4
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "wildcard";
|
||||
version = "0.3.3";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.gnome.org";
|
||||
owner = "World";
|
||||
repo = "Wildcard";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-jOv0l1vnfDePWF7SAbsBFipPAONliPdc47xj79BJ+rc=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||
inherit (finalAttrs) src;
|
||||
hash = "sha256-8jNNCcZRoLyOHdaWmYTOGD7Nf7NkmJ1MIxBXLJGrm5Y=";
|
||||
name = "wildcard-${finalAttrs.version}";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
blueprint-compiler
|
||||
cargo
|
||||
desktop-file-utils
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
rustPlatform.cargoSetupHook
|
||||
rustc
|
||||
wrapGAppsHook4
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
libadwaita
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Test your regular expressions";
|
||||
longDescription = ''
|
||||
Wildcard gives you a nice and simple to use interface to test/practice regular expressions.
|
||||
'';
|
||||
homepage = "https://gitlab.gnome.org/World/Wildcard";
|
||||
downloadPage = "https://gitlab.gnome.org/World/Wildcard/-/releases/v${finalAttrs.version}";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ aleksana ];
|
||||
mainProgram = "wildcard";
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
})
|
||||
@@ -8,12 +8,14 @@ mkCoqDerivation {
|
||||
release."0.9.1".sha256 = "sha256-lRRY+501x+DqNeItBnbwYIqWLDksinWIY4x/iojRNYU=";
|
||||
release."0.9.2".sha256 = "sha256-DPYCZS8CzkfgpR+lmYhV2v20ezMtyWp8hdWpuh0OOQU=";
|
||||
release."0.9.3".sha256 = "sha256-9WX3gsw+4btJLqcGg2W+7Qy+jaZtkfw7vCp8sXYmaWw=";
|
||||
release."0.9.4".sha256 = "sha256-fXTAsRdPisNhg8Umaa7S7gZ1M8zuPGg426KP9fAkmXQ=";
|
||||
|
||||
releaseRev = v: "v${v}";
|
||||
|
||||
inherit version;
|
||||
defaultVersion = with lib.versions; lib.switch [ coq.coq-version mathcomp.version ] [
|
||||
{ cases = [ (isGe "8.16") (range "2.0.0" "2.1.0") ]; out = "0.9.3"; }
|
||||
{ cases = [ (isGe "8.16") (range "2.0.0" "2.2.0") ]; out = "0.9.4"; }
|
||||
{ cases = [ (range "8.16" "8.18") (range "2.0.0" "2.1.0" ) ]; out = "0.9.3"; }
|
||||
{ cases = [ (range "8.14" "8.18") (range "1.13.0" "1.18.0") ]; out = "0.9.2"; }
|
||||
{ cases = [ (range "8.14" "8.16") (range "1.13.0" "1.14.0") ]; out = "0.9.1"; }
|
||||
{ cases = [ (range "8.12" "8.13") (range "1.12.0" "1.14.0") ]; out = "0.9"; }
|
||||
|
||||
@@ -133,6 +133,7 @@ mapAliases {
|
||||
stf = throw "stf was removed because it was broken"; # added 2023-08-21
|
||||
inherit (pkgs) stylelint; # added 2023-09-13
|
||||
surge = pkgs.surge-cli; # Added 2023-09-08
|
||||
inherit (pkgs) svelte-language-server; # Added 2024-05-12
|
||||
swagger = throw "swagger was removed because it was broken and abandoned upstream"; # added 2023-09-09
|
||||
tedicross = throw "tedicross was removed because it was broken"; # added 2023-09-09
|
||||
inherit (pkgs) terser; # Added 2023-08-31
|
||||
|
||||
@@ -52,7 +52,6 @@
|
||||
purty = "purty";
|
||||
pscid = "pscid";
|
||||
remod-cli = "remod";
|
||||
svelte-language-server = "svelteserver";
|
||||
teck-programmer = "teck-firmware-upgrade";
|
||||
typescript-language-server = "typescript-language-server";
|
||||
uglify-js = "uglifyjs";
|
||||
|
||||
@@ -216,7 +216,6 @@
|
||||
, "sql-formatter"
|
||||
, "stackdriver-statsd-backend"
|
||||
, "svelte-check"
|
||||
, "svelte-language-server"
|
||||
, "svgo"
|
||||
, "tailwindcss"
|
||||
, "teck-programmer"
|
||||
|
||||
-258
@@ -92612,264 +92612,6 @@ in
|
||||
bypassCache = true;
|
||||
reconstructLock = true;
|
||||
};
|
||||
svelte-language-server = nodeEnv.buildNodePackage {
|
||||
name = "svelte-language-server";
|
||||
packageName = "svelte-language-server";
|
||||
version = "0.16.5";
|
||||
src = fetchurl {
|
||||
url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.16.5.tgz";
|
||||
sha512 = "gzGlDikWDQZn+ccX0hyCamzGuTEXMwGNiXOXiNBtK+HJg+aL7wKcHnjwHg72K4K5s85OIYZE0zUj6JXjkAJkKQ==";
|
||||
};
|
||||
dependencies = [
|
||||
sources."@ampproject/remapping-2.3.0"
|
||||
sources."@babel/code-frame-7.23.5"
|
||||
sources."@babel/compat-data-7.23.5"
|
||||
sources."@babel/core-7.24.0"
|
||||
sources."@babel/generator-7.23.6"
|
||||
sources."@babel/helper-compilation-targets-7.23.6"
|
||||
sources."@babel/helper-environment-visitor-7.22.20"
|
||||
sources."@babel/helper-function-name-7.23.0"
|
||||
sources."@babel/helper-hoist-variables-7.22.5"
|
||||
sources."@babel/helper-module-imports-7.22.15"
|
||||
sources."@babel/helper-module-transforms-7.23.3"
|
||||
sources."@babel/helper-simple-access-7.22.5"
|
||||
sources."@babel/helper-split-export-declaration-7.22.6"
|
||||
sources."@babel/helper-string-parser-7.23.4"
|
||||
sources."@babel/helper-validator-identifier-7.22.20"
|
||||
sources."@babel/helper-validator-option-7.23.5"
|
||||
sources."@babel/helpers-7.24.0"
|
||||
sources."@babel/highlight-7.23.4"
|
||||
sources."@babel/parser-7.24.0"
|
||||
sources."@babel/template-7.24.0"
|
||||
sources."@babel/traverse-7.24.0"
|
||||
sources."@babel/types-7.24.0"
|
||||
sources."@emmetio/abbreviation-2.3.3"
|
||||
sources."@emmetio/css-abbreviation-2.1.8"
|
||||
sources."@emmetio/scanner-1.0.4"
|
||||
sources."@jridgewell/gen-mapping-0.3.5"
|
||||
sources."@jridgewell/resolve-uri-3.1.2"
|
||||
sources."@jridgewell/set-array-1.2.1"
|
||||
sources."@jridgewell/sourcemap-codec-1.4.15"
|
||||
sources."@jridgewell/trace-mapping-0.3.25"
|
||||
sources."@nodelib/fs.scandir-2.1.5"
|
||||
sources."@nodelib/fs.stat-2.0.5"
|
||||
sources."@nodelib/fs.walk-1.2.8"
|
||||
sources."@types/pug-2.0.10"
|
||||
(sources."@vscode/emmet-helper-2.8.4" // {
|
||||
dependencies = [
|
||||
sources."vscode-uri-2.1.2"
|
||||
];
|
||||
})
|
||||
sources."@vscode/l10n-0.0.18"
|
||||
sources."acorn-7.4.1"
|
||||
sources."ansi-styles-3.2.1"
|
||||
sources."anymatch-3.1.3"
|
||||
sources."asap-2.0.6"
|
||||
sources."assert-never-1.2.1"
|
||||
sources."atob-2.1.2"
|
||||
sources."babel-walk-3.0.0-canary-5"
|
||||
sources."balanced-match-1.0.2"
|
||||
sources."binary-extensions-2.3.0"
|
||||
sources."brace-expansion-1.1.11"
|
||||
sources."braces-3.0.2"
|
||||
sources."browserslist-4.23.0"
|
||||
sources."buffer-crc32-0.2.13"
|
||||
sources."call-bind-1.0.7"
|
||||
sources."caniuse-lite-1.0.30001599"
|
||||
sources."chalk-2.4.2"
|
||||
sources."character-parser-2.2.0"
|
||||
sources."chokidar-3.6.0"
|
||||
sources."coffeescript-2.7.0"
|
||||
sources."color-convert-1.9.3"
|
||||
sources."color-name-1.1.3"
|
||||
sources."concat-map-0.0.1"
|
||||
sources."constantinople-4.0.1"
|
||||
sources."convert-source-map-2.0.0"
|
||||
sources."copy-anything-2.0.6"
|
||||
sources."css-3.0.0"
|
||||
sources."debug-4.3.4"
|
||||
sources."decode-uri-component-0.2.2"
|
||||
sources."dedent-js-1.0.1"
|
||||
sources."define-data-property-1.1.4"
|
||||
sources."detect-indent-6.1.0"
|
||||
sources."doctypes-1.1.0"
|
||||
sources."electron-to-chromium-1.4.710"
|
||||
sources."emmet-2.4.7"
|
||||
sources."errno-0.1.8"
|
||||
sources."es-define-property-1.0.0"
|
||||
sources."es-errors-1.3.0"
|
||||
sources."es6-promise-3.3.1"
|
||||
sources."escalade-3.1.2"
|
||||
sources."escape-string-regexp-1.0.5"
|
||||
sources."estree-walker-2.0.2"
|
||||
sources."fast-glob-3.3.2"
|
||||
sources."fastq-1.17.1"
|
||||
sources."fill-range-7.0.1"
|
||||
sources."fs.realpath-1.0.0"
|
||||
sources."function-bind-1.1.2"
|
||||
sources."gensync-1.0.0-beta.2"
|
||||
sources."get-intrinsic-1.2.4"
|
||||
sources."glob-7.2.3"
|
||||
sources."glob-parent-5.1.2"
|
||||
sources."globals-11.12.0"
|
||||
sources."gopd-1.0.1"
|
||||
sources."graceful-fs-4.2.11"
|
||||
sources."has-flag-3.0.0"
|
||||
sources."has-property-descriptors-1.0.2"
|
||||
sources."has-proto-1.0.3"
|
||||
sources."has-symbols-1.0.3"
|
||||
sources."has-tostringtag-1.0.2"
|
||||
sources."hasown-2.0.2"
|
||||
sources."iconv-lite-0.6.3"
|
||||
sources."image-size-0.5.5"
|
||||
sources."immutable-4.3.5"
|
||||
sources."inflight-1.0.6"
|
||||
sources."inherits-2.0.4"
|
||||
sources."is-binary-path-2.1.0"
|
||||
sources."is-core-module-2.13.1"
|
||||
sources."is-expression-4.0.0"
|
||||
sources."is-extglob-2.1.1"
|
||||
sources."is-glob-4.0.3"
|
||||
sources."is-number-7.0.0"
|
||||
sources."is-promise-2.2.2"
|
||||
sources."is-regex-1.1.4"
|
||||
sources."is-what-3.14.1"
|
||||
sources."jiti-1.21.0"
|
||||
sources."js-stringify-1.0.2"
|
||||
sources."js-tokens-4.0.0"
|
||||
sources."jsesc-2.5.2"
|
||||
sources."json5-2.2.3"
|
||||
sources."jsonc-parser-2.3.1"
|
||||
sources."jstransformer-1.0.0"
|
||||
sources."less-4.2.0"
|
||||
sources."lilconfig-3.1.1"
|
||||
sources."lodash-4.17.21"
|
||||
sources."lower-case-2.0.2"
|
||||
sources."lru-cache-5.1.1"
|
||||
sources."magic-string-0.30.8"
|
||||
(sources."make-dir-2.1.0" // {
|
||||
dependencies = [
|
||||
sources."semver-5.7.2"
|
||||
];
|
||||
})
|
||||
sources."merge2-1.4.1"
|
||||
sources."micromatch-4.0.5"
|
||||
sources."mime-1.6.0"
|
||||
sources."min-indent-1.0.1"
|
||||
sources."minimatch-3.1.2"
|
||||
sources."minimist-1.2.8"
|
||||
sources."mkdirp-0.5.6"
|
||||
sources."ms-2.1.2"
|
||||
sources."nanoid-3.3.7"
|
||||
sources."needle-3.3.1"
|
||||
sources."no-case-3.0.4"
|
||||
sources."node-releases-2.0.14"
|
||||
sources."normalize-path-3.0.0"
|
||||
sources."object-assign-4.1.1"
|
||||
sources."once-1.4.0"
|
||||
sources."parse-node-version-1.0.1"
|
||||
sources."pascal-case-3.1.2"
|
||||
sources."path-is-absolute-1.0.1"
|
||||
sources."path-parse-1.0.7"
|
||||
sources."picocolors-1.0.0"
|
||||
sources."picomatch-2.3.1"
|
||||
sources."pify-4.0.1"
|
||||
sources."postcss-8.4.36"
|
||||
sources."postcss-load-config-5.0.3"
|
||||
sources."prettier-3.2.5"
|
||||
sources."prettier-plugin-svelte-3.2.2"
|
||||
sources."promise-7.3.1"
|
||||
sources."prr-1.0.1"
|
||||
sources."pug-3.0.2"
|
||||
sources."pug-attrs-3.0.0"
|
||||
sources."pug-code-gen-3.0.2"
|
||||
sources."pug-error-2.0.0"
|
||||
sources."pug-filters-4.0.0"
|
||||
sources."pug-lexer-5.0.1"
|
||||
sources."pug-linker-4.0.0"
|
||||
sources."pug-load-3.0.0"
|
||||
sources."pug-parser-6.0.0"
|
||||
sources."pug-runtime-3.0.1"
|
||||
sources."pug-strip-comments-2.0.0"
|
||||
sources."pug-walk-2.0.0"
|
||||
sources."queue-microtask-1.2.3"
|
||||
sources."readdirp-3.6.0"
|
||||
sources."resolve-1.22.8"
|
||||
sources."reusify-1.0.4"
|
||||
sources."rimraf-2.7.1"
|
||||
sources."run-parallel-1.2.0"
|
||||
sources."safer-buffer-2.1.2"
|
||||
sources."sander-0.5.1"
|
||||
sources."sass-1.72.0"
|
||||
sources."sax-1.3.0"
|
||||
sources."semver-6.3.1"
|
||||
sources."set-function-length-1.2.2"
|
||||
sources."sorcery-0.11.0"
|
||||
sources."source-map-0.6.1"
|
||||
sources."source-map-js-1.1.0"
|
||||
sources."source-map-resolve-0.6.0"
|
||||
sources."strip-indent-3.0.0"
|
||||
(sources."stylus-0.55.0" // {
|
||||
dependencies = [
|
||||
sources."debug-3.1.0"
|
||||
sources."mkdirp-1.0.4"
|
||||
sources."ms-2.0.0"
|
||||
sources."sax-1.2.4"
|
||||
sources."source-map-0.7.4"
|
||||
];
|
||||
})
|
||||
sources."sugarss-4.0.1"
|
||||
sources."supports-color-5.5.0"
|
||||
sources."supports-preserve-symlinks-flag-1.0.0"
|
||||
sources."svelte-3.59.2"
|
||||
sources."svelte-preprocess-5.1.3"
|
||||
sources."svelte2tsx-0.7.4"
|
||||
sources."to-fast-properties-2.0.0"
|
||||
sources."to-regex-range-5.0.1"
|
||||
sources."token-stream-1.0.0"
|
||||
sources."tslib-2.6.2"
|
||||
sources."typescript-5.4.2"
|
||||
(sources."typescript-auto-import-cache-0.3.2" // {
|
||||
dependencies = [
|
||||
sources."lru-cache-6.0.0"
|
||||
sources."semver-7.6.0"
|
||||
sources."yallist-4.0.0"
|
||||
];
|
||||
})
|
||||
sources."update-browserslist-db-1.0.13"
|
||||
sources."void-elements-3.1.0"
|
||||
(sources."vscode-css-languageservice-6.2.12" // {
|
||||
dependencies = [
|
||||
sources."vscode-languageserver-types-3.17.5"
|
||||
];
|
||||
})
|
||||
(sources."vscode-html-languageservice-5.1.2" // {
|
||||
dependencies = [
|
||||
sources."vscode-languageserver-types-3.17.5"
|
||||
];
|
||||
})
|
||||
sources."vscode-jsonrpc-8.0.2"
|
||||
sources."vscode-languageserver-8.0.2"
|
||||
sources."vscode-languageserver-protocol-3.17.2"
|
||||
sources."vscode-languageserver-textdocument-1.0.11"
|
||||
sources."vscode-languageserver-types-3.17.2"
|
||||
sources."vscode-nls-5.2.0"
|
||||
sources."vscode-uri-3.0.8"
|
||||
sources."with-7.0.2"
|
||||
sources."wrappy-1.0.2"
|
||||
sources."yallist-3.1.1"
|
||||
sources."yaml-2.4.1"
|
||||
];
|
||||
buildInputs = globalBuildInputs;
|
||||
meta = {
|
||||
description = "A language server for Svelte";
|
||||
homepage = "https://github.com/sveltejs/language-tools#readme";
|
||||
license = "MIT";
|
||||
};
|
||||
production = true;
|
||||
bypassCache = true;
|
||||
reconstructLock = true;
|
||||
};
|
||||
svgo = nodeEnv.buildNodePackage {
|
||||
name = "svgo";
|
||||
packageName = "svgo";
|
||||
|
||||
@@ -12,11 +12,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "xmake";
|
||||
version = "2.9.1";
|
||||
version = "2.9.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/xmake-io/xmake/releases/download/v${version}/xmake-v${version}.tar.gz";
|
||||
hash = "sha256-ox2++MMDrqEmgGi0sawa7BQqxBJMfLfZx+61fEFPjRU=";
|
||||
hash = "sha256-H2F7akVox+s+irDzpnwWmJJFrcVH46fR/YYayzCPtbI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
||||
@@ -1,26 +1,16 @@
|
||||
{ lib, stdenv, fetchFromGitHub, ocamlPackages }:
|
||||
{ lib, fetchFromGitHub, ocamlPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
ocamlPackages.buildDunePackage rec {
|
||||
pname = "ocsigen-i18n";
|
||||
version = "3.7.0";
|
||||
version = "4.0.0";
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
nativeBuildInputs = with ocamlPackages; [ ocaml findlib ];
|
||||
buildInputs = with ocamlPackages; [ ppx_tools ];
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin
|
||||
make bindir=$out/bin install
|
||||
'';
|
||||
buildInputs = with ocamlPackages; [ ppxlib ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "besport";
|
||||
repo = "ocsigen-i18n";
|
||||
rev = version;
|
||||
sha256 = "sha256-PmdDyn+MUcNFrZpP/KLGQzdXUFRr+dYRAZjTZxHSeaw=";
|
||||
hash = "sha256-NIl1YUTws8Ff4nrqdhU7oS/TN0lxVQgrtyEZtpS1ojM=";
|
||||
};
|
||||
|
||||
meta = {
|
||||
|
||||
@@ -834,6 +834,7 @@ mapAliases ({
|
||||
mozart = throw "'mozart' has been renamed to/replaced by 'mozart2-binary'"; # Converted to throw 2023-09-10
|
||||
mpc_cli = mpc-cli; # moved from top-level 2022-01-24
|
||||
mpd_clientlib = libmpdclient; # Added 2021-02-11
|
||||
mpdevil = plattenalbum; # Added 2024-05-22
|
||||
mpg321 = throw "'mpg321' has been removed due to it being unmaintained by upstream. Consider using mpg123 instead."; # Added 2024-05-10
|
||||
mumble_git = throw "'mumble_git' has been renamed to/replaced by 'pkgs.mumble'"; # Converted to throw 2023-09-10
|
||||
murmur_git = throw "'murmur_git' has been renamed to/replaced by 'pkgs.murmur'"; # Converted to throw 2023-09-10
|
||||
|
||||
@@ -3928,8 +3928,6 @@ with pkgs;
|
||||
|
||||
mobilecoin-wallet = callPackage ../applications/misc/mobilecoin-wallet { };
|
||||
|
||||
mpdevil = callPackage ../applications/audio/mpdevil { };
|
||||
|
||||
pacparser = callPackage ../tools/networking/pacparser { };
|
||||
|
||||
pairdrop = callPackage ../applications/misc/pairdrop { };
|
||||
|
||||
Reference in New Issue
Block a user