Merge staging-next into staging

Changed files
+1543 -845
maintainers
nixos
doc
manual
release-notes
modules
profiles
services
home-automation
monitoring
prometheus
exporters
tests
pkgs
applications
editors
emulators
libretro
cores
networking
cluster
helm
plugins
terraform-providers
by-name
al
aldente
allure
am
ar
argon
aw
awscli2
cg
cgreen
ci
cilium-cli
co
code-cursor
do
dotenvx
ek
eksctl
fi
fission
gi
gitlab-container-registry
go
go-mockery
gr
grpc_cli
hi
hishtory
ht
hu
humanity-icon-theme
ko
komikku
ku
kubelogin
kubescape
li
np
npm-check-updates
nz
nzbhydra2
op
opengamepadui
pi
pipenv-poetry-migrate
pr
pretalx
pu
pulsarctl
re
reposilite
retroarch-assets
ri
ru
sd
si
signalbackup-tools
simple64-netplay-server
sn
snips-sh
so
sof-firmware
td
te
termius
ts
tsukimi
tt
tt-rss-plugin-data-migration
us
ustreamer
ve
vector
wa
wait4x
we
wo
workout-tracker
zi
development
libraries
nss
science
math
suitesparse
python-modules
awscrt
beanhub-cli
beanhub-extract
depyf
gftools
lightify
llm
manim-slides
milc
msgraph-sdk
nyt-games
ourgroceries
publicsuffixlist
pynrrd
pyrail
python-gitlab
python-mapnik
sqlfmt
stripe
tkinter
yoto-api
tools
servers
home-assistant
custom-components
yoto_ha
tools
filesystems
misc
shadowenv
networking
shadowsocks-rust
top-level
+6
maintainers/maintainer-list.nix
···
githubId = 6162814;
keys = [ { fingerprint = "21E1 6B8D 2EE8 7530 6A6C 9968 D830 77B9 9F8C 6643"; } ];
+
wrvsrx = {
+
name = "wrvsrx";
+
email = "wrvsrx@outlook.com";
+
github = "wrvsrx";
+
githubId = 42770726;
+
};
wscott = {
email = "wsc9tt@gmail.com";
github = "wscott";
+2
nixos/doc/manual/release-notes/rl-2505.section.md
···
- `services.avahi.ipv6` now defaults to true.
+
- The Home Assistant module has new options {option}`services.home-assistant.blueprints.automation`, `services.home-assistant.blueprints.script`, and {option}`services.home-assistant.blueprints.template` that allow for the declarative installation of [blueprints](https://www.home-assistant.io/docs/blueprint/) into the appropriate configuration directories.
+
- For matrix homeserver Synapse we are now following the upstream recommendation to enable jemalloc as the memory allocator by default.
- `services.kmonad` now creates a determinate symlink (in `/dev/input/by-id/`) to each of KMonad virtual devices.
+97 -85
nixos/modules/profiles/hardened.nix
···
pkgs,
...
}:
-
-
with lib;
-
+
let
+
inherit (lib)
+
mkDefault
+
mkOverride
+
mkEnableOption
+
mkIf
+
maintainers
+
;
+
in
{
-
meta = {
-
maintainers = [
-
maintainers.joachifm
-
maintainers.emily
-
];
+
options.profiles.hardened = mkEnableOption "hardened" // {
+
default = true;
+
example = false;
};
+
config = mkIf config.profiles.hardened {
+
meta = {
+
maintainers = [
+
maintainers.joachifm
+
maintainers.emily
+
];
+
};
-
boot.kernelPackages = mkDefault pkgs.linuxPackages_hardened;
+
boot.kernelPackages = mkDefault pkgs.linuxPackages_hardened;
-
nix.settings.allowed-users = mkDefault [ "@users" ];
+
nix.settings.allowed-users = mkDefault [ "@users" ];
-
environment.memoryAllocator.provider = mkDefault "scudo";
-
environment.variables.SCUDO_OPTIONS = mkDefault "ZeroContents=1";
+
environment.memoryAllocator.provider = mkDefault "scudo";
+
environment.variables.SCUDO_OPTIONS = mkDefault "ZeroContents=1";
-
security.lockKernelModules = mkDefault true;
+
security.lockKernelModules = mkDefault true;
-
security.protectKernelImage = mkDefault true;
+
security.protectKernelImage = mkDefault true;
-
security.allowSimultaneousMultithreading = mkDefault false;
+
security.allowSimultaneousMultithreading = mkDefault false;
-
security.forcePageTableIsolation = mkDefault true;
+
security.forcePageTableIsolation = mkDefault true;
-
# This is required by podman to run containers in rootless mode.
-
security.unprivilegedUsernsClone = mkDefault config.virtualisation.containers.enable;
+
# This is required by podman to run containers in rootless mode.
+
security.unprivilegedUsernsClone = mkDefault config.virtualisation.containers.enable;
-
security.virtualisation.flushL1DataCache = mkDefault "always";
+
security.virtualisation.flushL1DataCache = mkDefault "always";
-
security.apparmor.enable = mkDefault true;
-
security.apparmor.killUnconfinedConfinables = mkDefault true;
+
security.apparmor.enable = mkDefault true;
+
security.apparmor.killUnconfinedConfinables = mkDefault true;
-
boot.kernelParams = [
-
# Don't merge slabs
-
"slab_nomerge"
+
boot.kernelParams = [
+
# Don't merge slabs
+
"slab_nomerge"
-
# Overwrite free'd pages
-
"page_poison=1"
+
# Overwrite free'd pages
+
"page_poison=1"
-
# Enable page allocator randomization
-
"page_alloc.shuffle=1"
+
# Enable page allocator randomization
+
"page_alloc.shuffle=1"
-
# Disable debugfs
-
"debugfs=off"
-
];
+
# Disable debugfs
+
"debugfs=off"
+
];
-
boot.blacklistedKernelModules = [
-
# Obscure network protocols
-
"ax25"
-
"netrom"
-
"rose"
+
boot.blacklistedKernelModules = [
+
# Obscure network protocols
+
"ax25"
+
"netrom"
+
"rose"
-
# Old or rare or insufficiently audited filesystems
-
"adfs"
-
"affs"
-
"bfs"
-
"befs"
-
"cramfs"
-
"efs"
-
"erofs"
-
"exofs"
-
"freevxfs"
-
"f2fs"
-
"hfs"
-
"hpfs"
-
"jfs"
-
"minix"
-
"nilfs2"
-
"ntfs"
-
"omfs"
-
"qnx4"
-
"qnx6"
-
"sysv"
-
"ufs"
-
];
+
# Old or rare or insufficiently audited filesystems
+
"adfs"
+
"affs"
+
"bfs"
+
"befs"
+
"cramfs"
+
"efs"
+
"erofs"
+
"exofs"
+
"freevxfs"
+
"f2fs"
+
"hfs"
+
"hpfs"
+
"jfs"
+
"minix"
+
"nilfs2"
+
"ntfs"
+
"omfs"
+
"qnx4"
+
"qnx6"
+
"sysv"
+
"ufs"
+
];
-
# Hide kptrs even for processes with CAP_SYSLOG
-
boot.kernel.sysctl."kernel.kptr_restrict" = mkOverride 500 2;
+
# Hide kptrs even for processes with CAP_SYSLOG
+
boot.kernel.sysctl."kernel.kptr_restrict" = mkOverride 500 2;
-
# Disable bpf() JIT (to eliminate spray attacks)
-
boot.kernel.sysctl."net.core.bpf_jit_enable" = mkDefault false;
+
# Disable bpf() JIT (to eliminate spray attacks)
+
boot.kernel.sysctl."net.core.bpf_jit_enable" = mkDefault false;
-
# Disable ftrace debugging
-
boot.kernel.sysctl."kernel.ftrace_enabled" = mkDefault false;
+
# Disable ftrace debugging
+
boot.kernel.sysctl."kernel.ftrace_enabled" = mkDefault false;
-
# Enable strict reverse path filtering (that is, do not attempt to route
-
# packets that "obviously" do not belong to the iface's network; dropped
-
# packets are logged as martians).
-
boot.kernel.sysctl."net.ipv4.conf.all.log_martians" = mkDefault true;
-
boot.kernel.sysctl."net.ipv4.conf.all.rp_filter" = mkDefault "1";
-
boot.kernel.sysctl."net.ipv4.conf.default.log_martians" = mkDefault true;
-
boot.kernel.sysctl."net.ipv4.conf.default.rp_filter" = mkDefault "1";
+
# Enable strict reverse path filtering (that is, do not attempt to route
+
# packets that "obviously" do not belong to the iface's network; dropped
+
# packets are logged as martians).
+
boot.kernel.sysctl."net.ipv4.conf.all.log_martians" = mkDefault true;
+
boot.kernel.sysctl."net.ipv4.conf.all.rp_filter" = mkDefault "1";
+
boot.kernel.sysctl."net.ipv4.conf.default.log_martians" = mkDefault true;
+
boot.kernel.sysctl."net.ipv4.conf.default.rp_filter" = mkDefault "1";
-
# Ignore broadcast ICMP (mitigate SMURF)
-
boot.kernel.sysctl."net.ipv4.icmp_echo_ignore_broadcasts" = mkDefault true;
+
# Ignore broadcast ICMP (mitigate SMURF)
+
boot.kernel.sysctl."net.ipv4.icmp_echo_ignore_broadcasts" = mkDefault true;
-
# Ignore incoming ICMP redirects (note: default is needed to ensure that the
-
# setting is applied to interfaces added after the sysctls are set)
-
boot.kernel.sysctl."net.ipv4.conf.all.accept_redirects" = mkDefault false;
-
boot.kernel.sysctl."net.ipv4.conf.all.secure_redirects" = mkDefault false;
-
boot.kernel.sysctl."net.ipv4.conf.default.accept_redirects" = mkDefault false;
-
boot.kernel.sysctl."net.ipv4.conf.default.secure_redirects" = mkDefault false;
-
boot.kernel.sysctl."net.ipv6.conf.all.accept_redirects" = mkDefault false;
-
boot.kernel.sysctl."net.ipv6.conf.default.accept_redirects" = mkDefault false;
+
# Ignore incoming ICMP redirects (note: default is needed to ensure that the
+
# setting is applied to interfaces added after the sysctls are set)
+
boot.kernel.sysctl."net.ipv4.conf.all.accept_redirects" = mkDefault false;
+
boot.kernel.sysctl."net.ipv4.conf.all.secure_redirects" = mkDefault false;
+
boot.kernel.sysctl."net.ipv4.conf.default.accept_redirects" = mkDefault false;
+
boot.kernel.sysctl."net.ipv4.conf.default.secure_redirects" = mkDefault false;
+
boot.kernel.sysctl."net.ipv6.conf.all.accept_redirects" = mkDefault false;
+
boot.kernel.sysctl."net.ipv6.conf.default.accept_redirects" = mkDefault false;
-
# Ignore outgoing ICMP redirects (this is ipv4 only)
-
boot.kernel.sysctl."net.ipv4.conf.all.send_redirects" = mkDefault false;
-
boot.kernel.sysctl."net.ipv4.conf.default.send_redirects" = mkDefault false;
+
# Ignore outgoing ICMP redirects (this is ipv4 only)
+
boot.kernel.sysctl."net.ipv4.conf.all.send_redirects" = mkDefault false;
+
boot.kernel.sysctl."net.ipv4.conf.default.send_redirects" = mkDefault false;
+
};
}
+67 -1
nixos/modules/services/home-automation/home-assistant.nix
···
attrByPath
attrValues
concatMap
+
concatStrings
converge
elem
escapeShellArg
escapeShellArgs
filter
filterAttrsRecursive
+
flatten
hasAttrByPath
isAttrs
isDerivation
isList
+
isStorePath
literalExpression
+
mapAttrsToList
+
mergeAttrsList
mkEnableOption
mkIf
mkMerge
···
recursiveUpdate
singleton
splitString
+
substring
types
unique
;
···
type = types.bool;
description = "Whether to open the firewall for the specified port.";
};
+
+
blueprints = mergeAttrsList (
+
map
+
(domain: {
+
${domain} = mkOption {
+
default = [ ];
+
description = ''
+
List of ${domain}
+
[blueprints](https://www.home-assistant.io/docs/blueprint/) to
+
install into {file}`''${configDir}/blueprints/${domain}`.
+
'';
+
example =
+
if domain == "automation" then
+
literalExpression ''
+
[
+
(pkgs.fetchurl {
+
url = "https://github.com/home-assistant/core/raw/2025.1.4/homeassistant/components/automation/blueprints/motion_light.yaml";
+
hash = "sha256-4HrDX65ycBMfEY2nZ7A25/d3ZnIHdpHZ+80Cblp+P5w=";
+
})
+
]
+
''
+
else if domain == "template" then
+
literalExpression "[ \"\${pkgs.home-assistant.src}/homeassistant/components/template/blueprints/inverted_binary_sensor.yaml\" ]"
+
else
+
literalExpression "[ ./blueprint.yaml ]";
+
type = types.listOf (types.coercedTo types.path (x: "${x}") types.pathInStore);
+
};
+
})
+
# https://www.home-assistant.io/docs/blueprint/schema/#domain
+
[
+
"automation"
+
"script"
+
"template"
+
]
+
);
};
config = mkIf cfg.enable {
···
ln -fns "''${paths[@]}" "${cfg.configDir}/custom_components/"
done
'';
+
removeBlueprints = ''
+
# remove blueprints symlinked in from below the /nix/store
+
readarray -d "" blueprints < <(find "${cfg.configDir}/blueprints" -maxdepth 2 -type l -print0)
+
for blueprint in "''${blueprints[@]}"; do
+
if [[ "$(readlink "$blueprint")" =~ ^${escapeShellArg builtins.storeDir} ]]; then
+
rm "$blueprint"
+
fi
+
done
+
'';
+
copyBlueprint =
+
domain: blueprint:
+
let
+
filename =
+
if isStorePath blueprint then substring 33 (-1) (baseNameOf blueprint) else baseNameOf blueprint;
+
path = "${cfg.configDir}/blueprints/${domain}";
+
in
+
''
+
mkdir -p ${escapeShellArg path}
+
ln -s ${escapeShellArg blueprint} ${escapeShellArg "${path}/${filename}"}
+
'';
+
copyBlueprints = concatStrings (
+
flatten (mapAttrsToList (domain: map (copyBlueprint domain)) cfg.blueprints)
+
);
in
(optionalString (cfg.config != null) copyConfig) +
(optionalString (cfg.lovelaceConfig != null) copyLovelaceConfig) +
copyCustomLovelaceModules +
-
copyCustomComponents
+
copyCustomComponents +
+
removeBlueprints +
+
copyBlueprints
;
environment.PYTHONPATH = package.pythonPath;
serviceConfig = let
+2
nixos/modules/services/monitoring/prometheus/exporters/restic.nix
···
${concatStringsSep " \\\n " cfg.extraFlags}
'';
serviceConfig = {
+
CacheDirectory = "restic-exporter";
EnvironmentFile = mkIf (cfg.environmentFile != null) cfg.environmentFile;
LoadCredential = [
"RESTIC_PASSWORD_FILE:${cfg.passwordFile}"
···
LISTEN_ADDRESS = cfg.listenAddress;
LISTEN_PORT = toString cfg.port;
REFRESH_INTERVAL = toString cfg.refreshInterval;
+
RESTIC_CACHE_DIR = "$CACHE_DIRECTORY";
}
// (mapAttrs' (
name: value: nameValuePair (rcloneAttrToOpt name) (toRcloneVal value)
+19 -1
nixos/tests/home-assistant.nix
···
];
};
lovelaceConfigWritable = true;
+
+
blueprints.automation = [
+
(pkgs.fetchurl {
+
url = "https://github.com/home-assistant/core/raw/2025.1.4/homeassistant/components/automation/blueprints/motion_light.yaml";
+
hash = "sha256-4HrDX65ycBMfEY2nZ7A25/d3ZnIHdpHZ+80Cblp+P5w=";
+
})
+
];
+
blueprints.template = [
+
"${pkgs.home-assistant.src}/homeassistant/components/template/blueprints/inverted_binary_sensor.yaml"
+
];
};
# Cause a configuration change inside `configuration.yml` and verify that the process is being reloaded.
···
configuration.services.home-assistant = {
customComponents = lib.mkForce [ ];
customLovelaceModules = lib.mkForce [ ];
+
blueprints.automation = lib.mkForce [ ];
+
blueprints.template = lib.mkForce [ ];
};
};
};
···
with subtest("Check extra components are considered in systemd unit hardening"):
hass.succeed("systemctl show -p DeviceAllow home-assistant.service | grep -q char-ttyUSB")
+
with subtest("Check that blueprints are installed"):
+
hass.succeed("test -L '${configDir}/blueprints/automation/motion_light.yaml'")
+
hass.succeed("test -L '${configDir}/blueprints/template/inverted_binary_sensor.yaml'")
+
with subtest("Check service restart from SIGHUP"):
pid = hass.succeed("systemctl show --property=MainPID home-assistant.service")
cursor = get_journal_cursor()
···
for domain in ["prometheus"]:
assert f"Setup of domain {domain} took" in journal, f"{domain} setup missing"
-
with subtest("Check custom components and custom lovelace modules get removed"):
+
with subtest("Check custom components, custom lovelace modules, and blueprints get removed"):
cursor = get_journal_cursor()
hass.succeed("${system}/specialisation/removeCustomThings/bin/switch-to-configuration test")
hass.fail("grep -q 'mini-graph-card-bundle.js' '${configDir}/ui-lovelace.yaml'")
for integration in ("prometheus_sensor", "spook", "spook_inverse"):
hass.fail(f"test -f ${configDir}/custom_components/{integration}/manifest.json")
+
hass.fail("test -e '${configDir}/blueprints/automation/motion_light.yaml'")
+
hass.fail("test -e '${configDir}/blueprints/template/inverted_binary_sensor.yaml'")
wait_for_homeassistant(cursor)
with subtest("Check that no errors were logged"):
+6 -6
pkgs/applications/editors/sublime/4/packages.nix
···
in
{
sublime4 = common {
-
buildVersion = "4189";
-
x64sha256 = "0vEG2FfLK+93UtpYV9iWl187iN79Tozm38Vh6lbzW7A=";
-
aarch64sha256 = "ZyLnbvpyxvJfyfu663ED0Yn5M37As+jy6TREZMgSHgI=";
+
buildVersion = "4192";
+
x64sha256 = "3CMorzQj+JFPTXp6PPhX6Mlcz/kJb2FM2iwUsvrhy+s=";
+
aarch64sha256 = "gVhDBac3kyDU1qIiXoN7Xf5Jvbdnif2QGuFUy2C34Mo=";
} { };
sublime4-dev = common {
-
buildVersion = "4188";
+
buildVersion = "4191";
dev = true;
-
x64sha256 = "b7JyJ9cPxb/Yjy9fvcz/m6OLETxMd8rwkmrEyMGAjjc=";
-
aarch64sha256 = "oGL0UtQge21oH6p6BNsRkxqgvdi9PkT/uwZTYygu+ng=";
+
x64sha256 = "fJy0BNToM8beMv5jYdFiecyjudzTG+r0mEpi9erZs4A=";
+
aarch64sha256 = "KgqZ9+rEGM9wcgqk+CenFInmDc3jPMdnRBpTREHBpjE=";
} { };
}
+24
pkgs/applications/editors/vim/plugins/generated.nix
···
meta.homepage = "https://github.com/giuxtaposition/blink-cmp-copilot/";
};
+
blink-cmp-dictionary = buildVimPlugin {
+
pname = "blink-cmp-dictionary";
+
version = "2025-01-12";
+
src = fetchFromGitHub {
+
owner = "Kaiser-Yang";
+
repo = "blink-cmp-dictionary";
+
rev = "07cc2e49bb52ebff4e8b83d1801ad6441edf90a2";
+
sha256 = "17c41flnjp25c5gry4lq8ik8mk3pbh1qwj86rby57jr4f4wvfykk";
+
};
+
meta.homepage = "https://github.com/Kaiser-Yang/blink-cmp-dictionary/";
+
};
+
blink-cmp-spell = buildVimPlugin {
pname = "blink-cmp-spell";
version = "2025-02-01";
···
sha256 = "05k4cgcrz0gj92xy685bd4p6nh2jmaywc2f5sw1lap0v685h7n79";
};
meta.homepage = "https://github.com/wfxr/minimap.vim/";
+
};
+
+
minuet-ai-nvim = buildVimPlugin {
+
pname = "minuet-ai.nvim";
+
version = "2025-02-03";
+
src = fetchFromGitHub {
+
owner = "milanglacier";
+
repo = "minuet-ai.nvim";
+
rev = "9a264284573b837dc0202049166a0564a70deaed";
+
sha256 = "06d7s9949aylda4vq36h4s9hnnp3lycwm2nrjid5vxb98gy3d3xn";
+
};
+
meta.homepage = "https://github.com/milanglacier/minuet-ai.nvim/";
};
mkdir-nvim = buildVimPlugin {
+22
pkgs/applications/editors/vim/plugins/overrides.nix
···
dependencies = [ self.copilot-lua ];
};
+
blink-cmp-dictionary = super.blink-cmp-dictionary.overrideAttrs {
+
dependencies = [ self.plenary-nvim ];
+
};
+
blink-emoji-nvim = super.blink-emoji-nvim.overrideAttrs {
dependencies = [ self.blink-cmp ];
};
···
sha256 = "1db5az5civ2bnqg7v3g937mn150ys52258c3glpvdvyyasxb4iih";
};
meta.homepage = "https://github.com/jose-elias-alvarez/minsnip.nvim/";
+
};
+
+
minuet-ai-nvim = super.minuet-ai-nvim.overrideAttrs {
+
checkInputs = [
+
# optional cmp integration
+
self.nvim-cmp
+
];
+
dependencies = with self; [ plenary-nvim ];
+
nvimSkipModule = [
+
# Backends require configuration
+
"minuet.backends.claude"
+
"minuet.backends.codestral"
+
"minuet.backends.gemini"
+
"minuet.backends.huggingface"
+
"minuet.backends.openai"
+
"minuet.backends.openai_compatible"
+
"minuet.backends.openai_fim_compatible"
+
];
};
mkdnflow-nvim = super.mkdnflow-nvim.overrideAttrs {
+2
pkgs/applications/editors/vim/plugins/vim-plugin-names
···
https://github.com/LunarVim/bigfile.nvim/,,
https://github.com/APZelos/blamer.nvim/,HEAD,
https://github.com/giuxtaposition/blink-cmp-copilot/,HEAD,
+
https://github.com/Kaiser-Yang/blink-cmp-dictionary/,HEAD,
https://github.com/Kaiser-Yang/blink-cmp-git/,HEAD,
https://github.com/ribru17/blink-cmp-spell/,HEAD,
https://github.com/fang2hou/blink-copilot/,HEAD,
···
https://github.com/echasnovski/mini.trailspace/,HEAD,
https://github.com/echasnovski/mini.visits/,HEAD,
https://github.com/wfxr/minimap.vim/,,
+
https://github.com/milanglacier/minuet-ai.nvim/,HEAD,
https://github.com/jghauser/mkdir.nvim/,main,
https://github.com/jakewvincent/mkdnflow.nvim/,HEAD,
https://github.com/SidOfc/mkdx/,,
+3 -3
pkgs/applications/emulators/libretro/cores/vice.nix
···
}:
mkLibretroCore {
core = "vice-${type}";
-
version = "0-unstable-2025-01-11";
+
version = "0-unstable-2025-01-28";
src = fetchFromGitHub {
owner = "libretro";
repo = "vice-libretro";
-
rev = "5afa33f347306f168ff0b4c54a7825895dd07b50";
-
hash = "sha256-D0DSKgqZV8EluRry2qSm7qnWnvwwDWz91G66W4nF2Kk=";
+
rev = "cdef1f9f8d5cbe4ba3e9b9106e117bdd35f599b9";
+
hash = "sha256-02ZH5ax49uWnvYe+hpL7a94Bf8knja1YADxyI2irYms=";
};
makefile = "Makefile";
+3 -3
pkgs/applications/networking/cluster/helm/plugins/helm-s3.nix
···
buildGoModule rec {
pname = "helm-s3";
-
version = "0.16.2";
+
version = "0.16.3";
src = fetchFromGitHub {
owner = "hypnoglow";
repo = pname;
rev = "v${version}";
-
hash = "sha256-hQuZd0VI+JspIjR7Dax/LXUZ9Rqflc6RQG9X80BkfeY=";
+
hash = "sha256-WiK2kZWik81HYZVVmzdqdqIE+jnAcYyu536NbdYWYxk=";
};
-
vendorHash = "sha256-CXlZazpsHasjHPNHzXIsrbtWgQs/lVRqGsoqRvl2MHw=";
+
vendorHash = "sha256-AXr+2+iv3oNTHEckK7DXEA5PMgFgT5iAGRttvGoCpQQ=";
# NOTE: Remove the install and upgrade hooks.
postPatch = ''
+45 -45
pkgs/applications/networking/cluster/terraform-providers/providers.json
···
"vendorHash": "sha256-V2CublY/9xSosrgxMYwHpnHtTucjiSuyzm+W4AY3pz0="
},
"auth0": {
-
"hash": "sha256-4ZHTy4mBQ+ZgiUOZQEku8n+AfMmA9azioyAPeWUUae0=",
+
"hash": "sha256-hfmJWtfHwDKtc9nsKZUbibf6VIQb02a/fXWkhqDgiFQ=",
"homepage": "https://registry.terraform.io/providers/auth0/auth0",
"owner": "auth0",
"repo": "terraform-provider-auth0",
-
"rev": "v1.10.0",
+
"rev": "v1.11.0",
"spdx": "MPL-2.0",
-
"vendorHash": "sha256-mvudiybfS6eLemCTXUJSIV4mD+GzR7Ed2H+lfA0de8E="
+
"vendorHash": "sha256-NynPovzkVRNU0EGxbIcvO4AOxnmG10mWfk8520arU5c="
},
"avi": {
"hash": "sha256-ErZE6MA8Pn8KDDZLX2/yoeqck78vDAcFYdMhYMbcYuI=",
···
"vendorHash": "sha256-OqbnkuEy9w6F1DxmlYhRNYhBaYhWV0FtMK4wdwSybh8="
},
"checkly": {
-
"hash": "sha256-4J7pwtlAa920RXF6ZoSoi03qA15NBzUlXQCZRErI2Co=",
+
"hash": "sha256-1V6EybAmIWEcd0gMc9vNLJVIZOHHW6AtYNmPshhkqN4=",
"homepage": "https://registry.terraform.io/providers/checkly/checkly",
"owner": "checkly",
"repo": "terraform-provider-checkly",
-
"rev": "v1.8.2",
+
"rev": "v1.9.1",
"spdx": null,
-
"vendorHash": "sha256-DcRe3nBzKn8fC0Q8Dx/p0PXuUccX+4kmOMdZa3HuXNI="
+
"vendorHash": "sha256-JN+vZQGrpdVExHVMxCiBNavKxbIo1qjBU59AJbphlv4="
},
"ciscoasa": {
"hash": "sha256-xzc44FEy2MPo51Faq/VFwg411JK9e0kQucpt0vdN8yg=",
···
"vendorHash": "sha256-xlcOCdgRTQbJCsL39hs3dUVjssGpyNij0ickjSn8EX0="
},
"fastly": {
-
"hash": "sha256-PtmJISWgOXM2og0LaxLqBq9gB0AVegNaIFGbdckDcKc=",
+
"hash": "sha256-C5kdhSfOUCinfFd6SwWQwsbnwAhNWBF50fj2fGIohZc=",
"homepage": "https://registry.terraform.io/providers/fastly/fastly",
"owner": "fastly",
"repo": "terraform-provider-fastly",
-
"rev": "v5.15.0",
+
"rev": "v5.16.0",
"spdx": "MPL-2.0",
"vendorHash": null
},
···
"vendorHash": "sha256-s2Ee9wB0smWx4mDPf/mUkCrmWfBrRzYlriWKB/I9Ax8="
},
"gridscale": {
-
"hash": "sha256-kgpEPbQLqiu8X0lOs6dCUqWpYTDxQX8fMgWoP0wWtBw=",
+
"hash": "sha256-uI05BO/c00RNr52rbvY7SZwcn64NRfBpR44/xXWmjqw=",
"homepage": "https://registry.terraform.io/providers/gridscale/gridscale",
"owner": "gridscale",
"repo": "terraform-provider-gridscale",
-
"rev": "v2.0.2",
+
"rev": "v2.0.3",
"spdx": "MPL-2.0",
"vendorHash": null
},
"harbor": {
-
"hash": "sha256-NDOFrW7VeunxAJPkcJ4DFrjrt0fL5B5+gT9H19L1Cos=",
+
"hash": "sha256-FSuJ8upRnDny9Rjf+hS+Kd6e3YcuqYRMfwMwseHNlfo=",
"homepage": "https://registry.terraform.io/providers/goharbor/harbor",
"owner": "goharbor",
"repo": "terraform-provider-harbor",
-
"rev": "v3.10.17",
+
"rev": "v3.10.18",
"spdx": "MIT",
"vendorHash": "sha256-YkTXwx3RjIbzJnagfcYgb5IRnF0sHEDBDzdHf+GS8xI="
},
···
"vendorHash": "sha256-xr54yCVGOJbj0612wiljUkx1wEOSuXB1qrGbF/vCwN8="
},
"infoblox": {
-
"hash": "sha256-r++9Fagi5hULK0IDEUjHzYS2cNpyB5gvaUwmoPOnExQ=",
+
"hash": "sha256-iz/Khne3wggjkZFWZOK9DVZsB8HW6nsNBCfEbsBdhzk=",
"homepage": "https://registry.terraform.io/providers/infobloxopen/infoblox",
"owner": "infobloxopen",
"repo": "terraform-provider-infoblox",
-
"rev": "v2.8.0",
+
"rev": "v2.9.0",
"spdx": "MPL-2.0",
"vendorHash": null
},
···
"vendorHash": "sha256-DnE9tA8VYgtzJWN8j3IOsQs1SiA3NX1mDQzp/Fpqh/U="
},
"kafka-connect": {
-
"hash": "sha256-3EUTte3txaDRz3jh0h23+Bf1tdLeCvPN9x8mYWY5VjI=",
+
"hash": "sha256-XMGpK22Ww8swvfrnbClxjErVmkBKX3dxdlkjgNJHlCE=",
"homepage": "https://registry.terraform.io/providers/Mongey/kafka-connect",
"owner": "Mongey",
"repo": "terraform-provider-kafka-connect",
-
"rev": "v0.4.1",
+
"rev": "v0.4.3",
"spdx": "MIT",
-
"vendorHash": "sha256-rGujp6FsQnkznRfjrSSB+4lLC3wAv6yvL/jAoWOiST0="
+
"vendorHash": "sha256-5cqj1O57snU+NoVqmWc/KIGnowQNMww+rJxYfIPvHWU="
},
"keycloak": {
-
"hash": "sha256-hdTZ+UEpmv4T8Kxk8cf1QACUKyOoRbD1X3OxwhmrRiI=",
+
"hash": "sha256-mlPq3sOaGN/fFAxMmK9ahcupwWd/4gYdNTLGRqDjPLc=",
"homepage": "https://registry.terraform.io/providers/keycloak/keycloak",
"owner": "keycloak",
"repo": "terraform-provider-keycloak",
-
"rev": "v5.0.0",
+
"rev": "v5.1.1",
"spdx": "Apache-2.0",
"vendorHash": "sha256-51sFU6P4Ynyu9NpQxlbSV7EoB/Lk1da4O0bOuoeMujI="
},
···
"vendorHash": "sha256-PfvIzUugDsnMKW7mSM2GyJZpXi3wJsEhYLKzlKq1U6A="
},
"launchdarkly": {
-
"hash": "sha256-ONASsswVYyugvSpACCmWIcuhnbueW++/s8F7c91PkeQ=",
+
"hash": "sha256-nneVn/q6p1FbFSZDjL5aEmp1U1xtjGox/mf48e140Qs=",
"homepage": "https://registry.terraform.io/providers/launchdarkly/launchdarkly",
"owner": "launchdarkly",
"repo": "terraform-provider-launchdarkly",
-
"rev": "v2.21.2",
+
"rev": "v2.21.5",
"spdx": "MPL-2.0",
-
"vendorHash": "sha256-v9N7lj7bEgR5HZm1SO0+DSCmQFVnsRvHPMycYMfpYwo="
+
"vendorHash": "sha256-mdVTcbfJ06o8LTfFMnpmoYSbLVSjZxxhpFFsL54tbUA="
},
"libvirt": {
"hash": "sha256-B99pSnnI+GoMX4uleDqBoAKPe15l/+C5mIUGp6KsE54=",
···
"vendorHash": "sha256-Q9LdhokZol1jhSfQVIRvPe1XrE8nVvc22aWHt7wkcHY="
},
"linode": {
-
"hash": "sha256-qyHRGkhwq9YS/mYLFMXEkEdNtH3yfCrXIP4q/QdOzcY=",
+
"hash": "sha256-dJkyhLAYwmohDqLwfmp9ScgfXGpix21md6Aqf+mQeFI=",
"homepage": "https://registry.terraform.io/providers/linode/linode",
"owner": "linode",
"repo": "terraform-provider-linode",
-
"rev": "v2.32.0",
+
"rev": "v2.33.0",
"spdx": "MPL-2.0",
-
"vendorHash": "sha256-1wwePyqy6ZLc3ZN0M2zZ6sxhVGZl7gWATv1xvcHBqB4="
+
"vendorHash": "sha256-J2qbC4I8hd99VVyH8tGDBz53MDPNMM1IMA2Gc1oUwvQ="
},
"linuxbox": {
"hash": "sha256-svQRz1/PdVLpHoxOam1sfRTwHqgqs4ohJQs3IPMMAM4=",
···
"vendorHash": "sha256-QxbZv6YMa5/I4bTeQBNdmG3EKtLEmstnH7HMiZzFJrI="
},
"migadu": {
-
"hash": "sha256-ZKlxt/qTccHlNSTwTFKroK/JmKLTcQ8MIeCKx+iRJm0=",
+
"hash": "sha256-27NVXEPBaSGMP8zbnXG/0KEbvXMybvJq4XmudRbvrjg=",
"homepage": "https://registry.terraform.io/providers/metio/migadu",
"owner": "metio",
"repo": "terraform-provider-migadu",
-
"rev": "2025.1.16",
+
"rev": "2025.1.23",
"spdx": "0BSD",
-
"vendorHash": "sha256-03pGB+biwTfJdGADhBSJn1BNhuowTrO8nwQm2eCCpaI="
+
"vendorHash": "sha256-6jl3KEJsoyGH7lhMBJpkxkE1ZkkAdF3puSoo39PKR2s="
},
"minio": {
-
"hash": "sha256-GJU70N/8EocLNxTG/psIsRYVHkg5fALhA9/ewErNML0=",
+
"hash": "sha256-Y34cCOQqJslDU4LcCou1QxIFfyUP2PRt3ExoCUNl8so=",
"homepage": "https://registry.terraform.io/providers/aminueza/minio",
"owner": "aminueza",
"repo": "terraform-provider-minio",
-
"rev": "v3.2.2",
+
"rev": "v3.2.3",
"spdx": "AGPL-3.0",
"vendorHash": "sha256-a9v1nVG3NiuyHwJGhIKKKXFDp4/Cb533EJxrfqK9h/A="
},
···
"vendorHash": null
},
"newrelic": {
-
"hash": "sha256-kyfNlLVzrNMLKGCahpbzeyqvFYPug6RyPPxCnxwP/W4=",
+
"hash": "sha256-P3T+9Ma5OzNdEXs3EbkyiJBkaEYeBUpIyduQTOt9TXY=",
"homepage": "https://registry.terraform.io/providers/newrelic/newrelic",
"owner": "newrelic",
"repo": "terraform-provider-newrelic",
-
"rev": "v3.54.0",
+
"rev": "v3.54.1",
"spdx": "MPL-2.0",
-
"vendorHash": "sha256-hxDLJrv7a8JZ6etYS7u+kiIcudJJeB47PKQTE3NzCvI="
+
"vendorHash": "sha256-RI0ukPxV+At0dNGPuKc5jkI2k/JL6LnxHH07dl3LMVE="
},
"nomad": {
"hash": "sha256-k61iQ9FQG3nscBp5CE/fFCbHpeLawbUAtGPM+IZtfVc=",
···
"vendorHash": null
},
"ovh": {
-
"hash": "sha256-qF2Wfgse2hcQ6TCbwfk+taUNwEKnNWZh2929VlgCrb4=",
+
"hash": "sha256-aGg3zvGWBVU8dv852nG1u3gRKD6I9ra77D2foDmjUEE=",
"homepage": "https://registry.terraform.io/providers/ovh/ovh",
"owner": "ovh",
"repo": "terraform-provider-ovh",
-
"rev": "v1.4.0",
+
"rev": "v1.5.0",
"spdx": "MPL-2.0",
"vendorHash": null
},
"pagerduty": {
-
"hash": "sha256-r0F+WSEY7j2AesQ0sDixOe9uKD0hOIdSzDYEhC8yEDA=",
+
"hash": "sha256-6n+FPTuoK5eoaNxa+E8NAWglMBMH/1eJAu6BmiaKhAs=",
"homepage": "https://registry.terraform.io/providers/PagerDuty/pagerduty",
"owner": "PagerDuty",
"repo": "terraform-provider-pagerduty",
-
"rev": "v3.19.2",
+
"rev": "v3.19.4",
"spdx": "MPL-2.0",
"vendorHash": null
},
···
"vendorHash": null
},
"selectel": {
-
"hash": "sha256-bXPH/1fEuGehOOSTXsR/yi0BiR8zneIc2KUqOEoG5Qw=",
+
"hash": "sha256-CVGMFepwfNKlqlAoFY2Uc8w3ZC6RbD9hOhsYnTFNmJM=",
"homepage": "https://registry.terraform.io/providers/selectel/selectel",
"owner": "selectel",
"repo": "terraform-provider-selectel",
-
"rev": "v6.1.0",
+
"rev": "v6.1.1",
"spdx": "MPL-2.0",
"vendorHash": "sha256-LRs2zI5L5qdWiM8VexQPkP8SjrO/sVEj/MOX+n4NKSc="
},
···
"vendorHash": "sha256-MIO0VHofPtKPtynbvjvEukMNr5NXHgk7BqwIhbc9+u0="
},
"signalfx": {
-
"hash": "sha256-C8LyILuqT15NqqzBrj09N+Nx9KMhE/oBPfXtc8gPfns=",
+
"hash": "sha256-m+dclQs0oGwXci/SDfaNSwuzTCV3hDskyiD0VbTmryQ=",
"homepage": "https://registry.terraform.io/providers/splunk-terraform/signalfx",
"owner": "splunk-terraform",
"repo": "terraform-provider-signalfx",
-
"rev": "v9.6.1",
+
"rev": "v9.7.1",
"spdx": "MPL-2.0",
-
"vendorHash": "sha256-ijq03YXHiSKOgjG9gbyNHPUsYlYHi9nY4pmhMxM5CrI="
+
"vendorHash": "sha256-Eh/8EDdnxKBbq0E3KXFtO4liJ6ruytfyCyM5DVwk9jo="
},
"skytap": {
"hash": "sha256-JII4czazo6Di2sad1uFHMKDO2gWgZlQE8l/+IRYHQHU=",
···
"vendorHash": "sha256-iEi3zkr4kIZ1FTAft/Fy//v7xtlX/8uSrnbuxgFTDyA="
},
"temporalcloud": {
-
"hash": "sha256-nAOHdok/nK33zyEYmyB2nA+y2/mpkigZk4WTyl2F7XA=",
+
"hash": "sha256-cHhrNEHzOWp1wrbWZkoAjFyyhmHfvFZtM8g/u9RI+F0=",
"homepage": "https://registry.terraform.io/providers/temporalio/temporalcloud",
"owner": "temporalio",
"repo": "terraform-provider-temporalcloud",
-
"rev": "v0.5.0",
+
"rev": "v0.6.0",
"spdx": "MPL-2.0",
-
"vendorHash": "sha256-VMEL2dQ1+kMRWjJP6Obc3N1OytpAkRVW/9596WhwkE4="
+
"vendorHash": "sha256-Cqo7aq0uBISrnpQPrmJBNACSt2mAt12I4xpf8yDd0AU="
},
"tencentcloud": {
"hash": "sha256-g4UQs7GdU5GFkrC9eeFLMYGLR2Wt2UbSSX5yP1CExT0=",
+2 -2
pkgs/by-name/al/aldente/package.nix
···
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "aldente";
-
version = "1.29";
+
version = "1.30";
src = fetchurl {
url = "https://github.com/davidwernhart/aldente-charge-limiter/releases/download/${finalAttrs.version}/AlDente.dmg";
-
hash = "sha256-F19DZnjnlZ7ydgNhPNUa7FqPp5/MzDcQRtksIkXgIis=";
+
hash = "sha256-O3t8Vm1y/OcPzz9MgKA5TcaK43HhPrURvPeWeXvjsjo=";
};
dontBuild = true;
+2 -2
pkgs/by-name/al/allure/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "allure";
-
version = "2.32.0";
+
version = "2.32.1";
src = fetchurl {
url = "https://github.com/allure-framework/allure2/releases/download/${finalAttrs.version}/allure-${finalAttrs.version}.tgz";
-
hash = "sha256-zfqXiz6rnPn1JInqkoTkMdiw0thZvNVqeRwyDoA85lw=";
+
hash = "sha256-EpTcdF1v6Os7FL/stqRR6OtZoPGuWp8qoC6U7NtBtaY=";
};
dontConfigure = true;
+291 -230
pkgs/by-name/am/amdgpu_top/Cargo.lock
···
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
dependencies = [
"cfg-if",
-
"getrandom",
+
"getrandom 0.2.15",
"once_cell",
"serde",
"version_check",
···
]
[[package]]
-
name = "allocator-api2"
-
version = "0.2.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
-
-
[[package]]
name = "amdgpu_top"
-
version = "0.10.1"
+
version = "0.10.2"
dependencies = [
"amdgpu_top_gui",
"amdgpu_top_json",
···
[[package]]
name = "amdgpu_top_gui"
-
version = "0.10.1"
+
version = "0.10.2"
dependencies = [
"eframe",
"egui_plot",
···
[[package]]
name = "amdgpu_top_json"
-
version = "0.10.1"
+
version = "0.10.2"
dependencies = [
"libamdgpu_top",
"serde_json",
···
[[package]]
name = "amdgpu_top_tui"
-
version = "0.10.1"
+
version = "0.10.2"
dependencies = [
"cursive",
"libamdgpu_top",
···
checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
dependencies = [
"android-properties",
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"cc",
"cesu8",
"jni",
···
[[package]]
name = "anyhow"
-
version = "1.0.94"
+
version = "1.0.95"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c1fd03a028ef38ba2276dce7e33fcd6369c158a1bca17946c4b1b701891c1ff7"
+
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
[[package]]
name = "arboard"
···
[[package]]
name = "bitflags"
-
version = "2.6.0"
+
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
dependencies = [
"serde",
]
···
[[package]]
name = "bstr"
-
version = "1.11.1"
+
version = "1.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "786a307d683a5bf92e6fd5fd69a7eb613751668d1d8d67d802846dfe367c62c8"
+
checksum = "531a9155a481e2ee699d4f98f43c0ca4ff8ee1bfd55c31e9e98fb29d2b176fe0"
dependencies = [
"memchr",
"regex-automata",
···
[[package]]
name = "bumpalo"
-
version = "3.16.0"
+
version = "3.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
[[package]]
name = "bytemuck"
-
version = "1.20.0"
+
version = "1.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8b37c88a63ffd85d15b406896cc343916d7cf57838a847b3a6f2ca5d39a5695a"
+
checksum = "ef657dfab802224e671f5818e9a4935f9b1957ed18e58292690cc39e7a4092a3"
dependencies = [
"bytemuck_derive",
]
[[package]]
name = "bytemuck_derive"
-
version = "1.8.0"
+
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bcfcc3cd946cb52f0bbfdbbcfa2f4e24f75ebb6c0e1002f7c25904fada18b9ec"
+
checksum = "3fa76293b4f7bb636ab88fd78228235b5248b4d05cc589aed610f954af5d7c7a"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
]
[[package]]
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"log",
"polling",
"rustix",
···
[[package]]
name = "cc"
-
version = "1.2.4"
+
version = "1.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9157bbaa6b165880c27a4293a474c91cdcf265cc68cc829bf10be0964a391caf"
+
checksum = "e4730490333d58093109dc02c23174c3f4d490998c3fed3cc8e82d57afedb9cf"
dependencies = [
"jobserver",
"libc",
···
[[package]]
name = "cpufeatures"
-
version = "0.2.16"
+
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
dependencies = [
"libc",
]
···
[[package]]
name = "crossbeam-channel"
-
version = "0.5.13"
+
version = "0.5.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
-
version = "0.8.20"
+
version = "0.8.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
[[package]]
name = "crossterm"
···
"ident_case",
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
]
[[package]]
···
dependencies = [
"darling_core",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
]
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
]
[[package]]
···
"darling",
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
]
[[package]]
···
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
+
name = "foldhash"
+
version = "0.1.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
+
+
[[package]]
name = "foreign-types"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
···
dependencies = [
"cfg-if",
"libc",
-
"wasi",
+
"wasi 0.11.0+wasi-snapshot-preview1",
+
]
+
+
[[package]]
+
name = "getrandom"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "43a49c392881ce6d5c3b8cb70f98717b7c07aabbdff06687b9030dbfbe2725f8"
+
dependencies = [
+
"cfg-if",
+
"libc",
+
"wasi 0.13.3+wasi-0.2.2",
+
"windows-targets 0.52.6",
[[package]]
···
"gix-utils",
"itoa",
"thiserror 1.0.69",
-
"winnow",
+
"winnow 0.6.26",
[[package]]
name = "gix-chunk"
-
version = "0.4.10"
+
version = "0.4.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c6ffbeb3a5c0b8b84c3fe4133a6f8c82fa962f4caefe8d0762eced025d3eb4f7"
+
checksum = "0b1f1d8764958699dc764e3f727cef280ff4d1bd92c107bbf8acd85b30c1bd6f"
dependencies = [
-
"thiserror 2.0.7",
+
"thiserror 2.0.11",
[[package]]
···
"smallvec",
"thiserror 1.0.69",
"unicode-bom",
-
"winnow",
+
"winnow 0.6.26",
[[package]]
name = "gix-config-value"
-
version = "0.14.10"
+
version = "0.14.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "49aaeef5d98390a3bcf9dbc6440b520b793d1bf3ed99317dc407b02be995b28e"
+
checksum = "11365144ef93082f3403471dbaa94cfe4b5e72743bdb9560719a251d439f4cee"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"bstr",
"gix-path",
"libc",
-
"thiserror 2.0.7",
+
"thiserror 2.0.11",
[[package]]
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74908b4bbc0a0a40852737e5d7889f676f081e340d5451a16e5b4c50d592f111"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"bstr",
"gix-features",
"gix-path",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
···
"itoa",
"smallvec",
"thiserror 1.0.69",
-
"winnow",
+
"winnow 0.6.26",
[[package]]
···
[[package]]
name = "gix-path"
-
version = "0.10.13"
+
version = "0.10.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "afc292ef1a51e340aeb0e720800338c805975724c1dfbd243185452efd8645b7"
+
checksum = "c40f12bb65a8299be0cfb90fe718e3be236b7a94b434877012980863a883a99f"
dependencies = [
"bstr",
"gix-trace",
"home",
"once_cell",
-
"thiserror 2.0.7",
+
"thiserror 2.0.11",
[[package]]
name = "gix-quote"
-
version = "0.4.14"
+
version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "64a1e282216ec2ab2816cd57e6ed88f8009e634aec47562883c05ac8a7009a63"
+
checksum = "e49357fccdb0c85c0d3a3292a9f6db32d9b3535959b5471bb9624908f4a066c6"
dependencies = [
"bstr",
"gix-utils",
-
"thiserror 2.0.7",
+
"thiserror 2.0.11",
[[package]]
···
"gix-validate",
"memmap2",
"thiserror 1.0.69",
-
"winnow",
+
"winnow 0.6.26",
[[package]]
···
[[package]]
name = "gix-sec"
-
version = "0.10.10"
+
version = "0.10.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a8b876ef997a955397809a2ec398d6a45b7a55b4918f2446344330f778d14fd6"
+
checksum = "d84dae13271f4313f8d60a166bf27e54c968c7c33e2ffd31c48cafe5da649875"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"gix-path",
"libc",
"windows-sys 0.52.0",
···
[[package]]
name = "gix-trace"
-
version = "0.1.11"
+
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "04bdde120c29f1fc23a24d3e115aeeea3d60d8e65bab92cc5f9d90d9302eb952"
+
checksum = "7c396a2036920c69695f760a65e7f2677267ccf483f25046977d87e4cb2665f7"
[[package]]
name = "gix-traverse"
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e499a18c511e71cf4a20413b743b9f5bcf64b3d9e81e9c3c6cd399eae55a8840"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"gix-commitgraph",
"gix-date",
"gix-hash",
···
[[package]]
name = "gix-utils"
-
version = "0.1.13"
+
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ba427e3e9599508ed98a6ddf8ed05493db114564e338e41f6a996d2e4790335f"
+
checksum = "ff08f24e03ac8916c478c8419d7d3c33393da9bb41fa4c24455d5406aeefd35f"
dependencies = [
"fastrand",
"unicode-normalization",
···
[[package]]
name = "glutin_wgl_sys"
-
version = "0.6.0"
+
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0a4e1951bbd9434a81aa496fe59ccc2235af3820d27b85f9314e279609211e2c"
+
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
dependencies = [
"gl_generator",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"gpu-alloc-types",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
[[package]]
···
[[package]]
name = "gpu-descriptor"
-
version = "0.3.0"
+
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9c08c1f623a8d0b722b8b99f821eb0ba672a1618f0d3b16ddbee1cedd2dd8557"
+
checksum = "dcf29e94d6d243368b7a56caa16bc213e4f9f8ed38c4d9557069527b5d5281ca"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"gpu-descriptor-types",
-
"hashbrown 0.14.5",
+
"hashbrown 0.15.2",
[[package]]
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
[[package]]
···
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
-
dependencies = [
-
"ahash",
-
"allocator-api2",
-
]
[[package]]
name = "hashbrown"
version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
+
dependencies = [
+
"foldhash",
+
]
[[package]]
name = "hassle-rs"
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"com",
"libc",
"libloading",
···
[[package]]
name = "home"
-
version = "0.5.9"
+
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
+
checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
dependencies = [
-
"windows-sys 0.52.0",
+
"windows-sys 0.59.0",
[[package]]
···
[[package]]
name = "i18n-embed"
-
version = "0.15.2"
+
version = "0.15.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a7839d8c7bb8da7bd58c1112d3a1aeb7f178ff3df4ae87783e758ca3bfb750b7"
+
checksum = "d0454970a5853f498e686cbd7bf9391aac2244928194780cb7a0af0f41937db6"
dependencies = [
"arc-swap",
"fluent",
···
"fluent-syntax",
"i18n-embed-impl",
"intl-memoizer",
-
"lazy_static",
"locale_config",
"log",
"parking_lot",
···
[[package]]
name = "i18n-embed-fl"
-
version = "0.9.2"
+
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f6e9571c3cba9eba538eaa5ee40031b26debe76f0c7e17bafc97ea57a76cd82e"
+
checksum = "0b7578cee2940492a648bd60fb49ca85ee8c821a63790e0ef5b604cfed353b2a"
dependencies = [
"dashmap",
"find-crate",
···
"fluent-syntax",
"i18n-config",
"i18n-embed",
-
"lazy_static",
"proc-macro-error2",
"proc-macro2",
"quote",
"strsim",
-
"syn 2.0.90",
+
"syn 2.0.98",
"unic-langid",
···
"i18n-config",
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
···
[[package]]
name = "indexmap"
-
version = "2.7.0"
+
version = "2.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
+
checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
dependencies = [
"equivalent",
"hashbrown 0.15.2",
···
[[package]]
name = "js-sys"
-
version = "0.3.76"
+
version = "0.3.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
dependencies = [
"once_cell",
"wasm-bindgen",
···
[[package]]
name = "libamdgpu_top"
-
version = "0.10.1"
+
version = "0.10.2"
dependencies = [
"anyhow",
"libdrm_amdgpu_sys",
+
"nix",
[[package]]
name = "libc"
-
version = "0.2.168"
+
version = "0.2.169"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5aaeb2981e0606ca11d79718f8bb01164f1d6ed75080182d3abf017e6d244b6d"
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
[[package]]
name = "libdrm_amdgpu_sys"
-
version = "0.7.7"
-
source = "git+https://github.com/Umio-Yasuno/libdrm-amdgpu-sys-rs#b5e3441c39ea680871a255c702addbf24c90118a"
+
version = "0.8.3"
+
source = "git+https://github.com/Umio-Yasuno/libdrm-amdgpu-sys-rs?rev=bbe45fbfd1924b96684fc76683e4c61a93449c49#bbe45fbfd1924b96684fc76683e4c61a93449c49"
dependencies = [
"libc",
+
"libloading",
[[package]]
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"libc",
"redox_syscall 0.5.8",
[[package]]
name = "linux-raw-sys"
-
version = "0.4.14"
+
version = "0.4.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
[[package]]
name = "litemap"
···
[[package]]
name = "log"
-
version = "0.4.22"
+
version = "0.4.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
+
checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
[[package]]
name = "malloc_buf"
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block",
"core-graphics-types",
"foreign-types",
···
[[package]]
name = "miniz_oxide"
-
version = "0.8.0"
+
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
dependencies = [
"adler2",
"simd-adler32",
···
dependencies = [
"libc",
"log",
-
"wasi",
+
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys 0.48.0",
···
dependencies = [
"arrayvec",
"bit-set",
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"cfg_aliases 0.1.1",
"codespan-reporting",
"hexf-parse",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"jni-sys",
"log",
"ndk-sys 0.6.0+11769913",
···
[[package]]
+
name = "nix"
+
version = "0.29.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
+
dependencies = [
+
"bitflags 2.8.0",
+
"cfg-if",
+
"cfg_aliases 0.2.1",
+
"libc",
+
]
+
+
[[package]]
name = "nohash-hasher"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
···
"proc-macro-crate",
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"libc",
"objc2",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"objc2",
"objc2-core-location",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"objc2",
"objc2-foundation",
···
[[package]]
name = "objc2-encode"
-
version = "4.0.3"
+
version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8"
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
[[package]]
name = "objc2-foundation"
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"dispatch",
"libc",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"objc2",
"objc2-foundation",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"objc2",
"objc2-foundation",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"objc2",
"objc2-cloud-kit",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"objc2",
"objc2-core-location",
···
[[package]]
name = "pin-project"
-
version = "1.1.7"
+
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
+
checksum = "1e2ec53ad785f4d35dac0adea7f7dc6f1bb277ad84a680c7afefeae05d1f5916"
dependencies = [
"pin-project-internal",
[[package]]
name = "pin-project-internal"
-
version = "1.1.7"
+
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
+
checksum = "d56a66c0c55993aa927429d0f8a0abfd74f084e4d9c192cffed01e418d83eefb"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
name = "pin-project-lite"
-
version = "0.2.15"
+
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
[[package]]
name = "pkg-config"
···
[[package]]
name = "png"
-
version = "0.17.15"
+
version = "0.17.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b67582bd5b65bdff614270e2ea89a1cf15bef71245cc1e5f7ea126977144211d"
+
checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
dependencies = [
"bitflags 1.3.2",
"crc32fast",
···
"proc-macro-error-attr2",
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
name = "proc-macro2"
-
version = "1.0.92"
+
version = "1.0.93"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
dependencies = [
"unicode-ident",
···
[[package]]
name = "quick-xml"
-
version = "0.36.2"
+
version = "0.37.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
+
checksum = "165859e9e55f79d67b96c5d96f4e88b6f2695a1972849c15a6a3f5c59fc2c003"
dependencies = [
"memchr",
[[package]]
name = "quote"
-
version = "1.0.37"
+
version = "1.0.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
dependencies = [
"proc-macro2",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
[[package]]
···
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
dependencies = [
"base64",
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"serde",
"serde_derive",
···
"proc-macro2",
"quote",
"rust-embed-utils",
-
"syn 2.0.90",
+
"syn 2.0.98",
"walkdir",
···
[[package]]
name = "rustix"
-
version = "0.38.42"
+
version = "0.38.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"errno",
"libc",
"linux-raw-sys",
···
[[package]]
+
name = "rustversion"
+
version = "1.0.19"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
+
+
[[package]]
name = "ryu"
-
version = "1.0.18"
+
version = "1.0.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
+
checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
[[package]]
name = "same-file"
···
[[package]]
name = "serde"
-
version = "1.0.216"
+
version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
dependencies = [
"serde_derive",
[[package]]
name = "serde_derive"
-
version = "1.0.216"
+
version = "1.0.217"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
name = "serde_json"
-
version = "1.0.133"
+
version = "1.0.138"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
+
checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
dependencies = [
"itoa",
"memchr",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"calloop",
"calloop-wayland-source",
"cursor-icon",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
[[package]]
···
[[package]]
name = "syn"
-
version = "2.0.90"
+
version = "2.0.98"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "919d3b74a5dd0ccd15aeb8f93e7006bd9e14c295087c9896a110f490752bcf31"
+
checksum = "36147f1a48ae0ec2b5b3bc5b537d267457555a10dc06f3dbc8cb11ba3006d3b1"
dependencies = [
"proc-macro2",
"quote",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
name = "tempfile"
-
version = "3.14.0"
+
version = "3.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
+
checksum = "38c246215d7d24f48ae091a2902398798e05d978b24315d6efbc00ede9a8bb91"
dependencies = [
"cfg-if",
"fastrand",
+
"getrandom 0.3.1",
"once_cell",
"rustix",
"windows-sys 0.59.0",
···
[[package]]
name = "thiserror"
-
version = "2.0.7"
+
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "93605438cbd668185516ab499d589afb7ee1859ea3d5fc8f6b0755e1c7443767"
+
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
dependencies = [
-
"thiserror-impl 2.0.7",
+
"thiserror-impl 2.0.11",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
name = "thiserror-impl"
-
version = "2.0.7"
+
version = "2.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e1d8749b4531af2117677a5fcd12b1348a3fe2b81e36e61ffeac5c4aa3273e36"
+
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
···
[[package]]
name = "tinyvec"
-
version = "1.8.0"
+
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
+
checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
dependencies = [
"tinyvec_macros",
···
[[package]]
name = "toml_edit"
-
version = "0.22.22"
+
version = "0.22.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
+
checksum = "02a8b472d1a3d7c18e2d61a489aee3453fd9031c33e4f55bd533f4a7adca1bee"
dependencies = [
"indexmap",
"toml_datetime",
-
"winnow",
+
"winnow 0.7.0",
[[package]]
···
[[package]]
name = "unicode-ident"
-
version = "1.0.14"
+
version = "1.0.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
+
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
[[package]]
name = "unicode-normalization"
···
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
+
name = "wasi"
+
version = "0.13.3+wasi-0.2.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "26816d2e1a4a36a2940b96c5296ce403917633dff8f3440e9b236ed6f6bacad2"
+
dependencies = [
+
"wit-bindgen-rt",
+
]
+
+
[[package]]
name = "wasm-bindgen"
-
version = "0.2.99"
+
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
dependencies = [
"cfg-if",
"once_cell",
+
"rustversion",
"wasm-bindgen-macro",
[[package]]
name = "wasm-bindgen-backend"
-
version = "0.2.99"
+
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
dependencies = [
"bumpalo",
"log",
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
"wasm-bindgen-shared",
[[package]]
name = "wasm-bindgen-futures"
-
version = "0.4.49"
+
version = "0.4.50"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2"
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
dependencies = [
"cfg-if",
"js-sys",
···
[[package]]
name = "wasm-bindgen-macro"
-
version = "0.2.99"
+
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
···
[[package]]
name = "wasm-bindgen-macro-support"
-
version = "0.2.99"
+
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
[[package]]
name = "wasm-bindgen-shared"
-
version = "0.2.99"
+
version = "0.2.100"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
+
dependencies = [
+
"unicode-ident",
+
]
[[package]]
name = "wayland-backend"
-
version = "0.3.7"
+
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "056535ced7a150d45159d3a8dc30f91a2e2d588ca0b23f70e56033622b8016f6"
+
checksum = "b7208998eaa3870dad37ec8836979581506e0c5c64c20c9e79e9d2a10d6f47bf"
dependencies = [
"cc",
"downcast-rs",
···
[[package]]
name = "wayland-client"
-
version = "0.31.7"
+
version = "0.31.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b66249d3fc69f76fd74c82cc319300faa554e9d865dab1f7cd66cc20db10b280"
+
checksum = "c2120de3d33638aaef5b9f4472bff75f07c56379cf76ea320bd3a3d65ecaf73f"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"rustix",
"wayland-backend",
"wayland-scanner",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"cursor-icon",
"wayland-backend",
[[package]]
name = "wayland-cursor"
-
version = "0.31.7"
+
version = "0.31.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "32b08bc3aafdb0035e7fe0fdf17ba0c09c268732707dca4ae098f60cb28c9e4c"
+
checksum = "a93029cbb6650748881a00e4922b076092a6a08c11e7fbdb923f064b23968c5d"
dependencies = [
"rustix",
"wayland-client",
···
[[package]]
name = "wayland-protocols"
-
version = "0.32.5"
+
version = "0.32.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7cd0ade57c4e6e9a8952741325c30bf82f4246885dca8bf561898b86d0c1f58e"
+
checksum = "0781cf46869b37e36928f7b432273c0995aa8aed9552c556fb18754420541efc"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"wayland-backend",
"wayland-client",
"wayland-scanner",
···
[[package]]
name = "wayland-protocols-plasma"
-
version = "0.3.5"
+
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9b31cab548ee68c7eb155517f2212049dc151f7cd7910c2b66abfd31c3ee12bd"
+
checksum = "7ccaacc76703fefd6763022ac565b590fcade92202492381c95b2edfdf7d46b3"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"wayland-backend",
"wayland-client",
"wayland-protocols",
···
[[package]]
name = "wayland-protocols-wlr"
-
version = "0.3.5"
+
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "782e12f6cd923c3c316130d56205ebab53f55d6666b7faddfad36cecaeeb4022"
+
checksum = "248a02e6f595aad796561fa82d25601bd2c8c3b145b1c7453fc8f94c1a58f8b2"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"wayland-backend",
"wayland-client",
"wayland-protocols",
···
[[package]]
name = "wayland-scanner"
-
version = "0.31.5"
+
version = "0.31.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "597f2001b2e5fc1121e3d5b9791d3e78f05ba6bfa4641053846248e3a13661c3"
+
checksum = "896fdafd5d28145fce7958917d69f2fd44469b1d4e861cb5961bcbeebc6d1484"
dependencies = [
"proc-macro2",
"quick-xml",
···
[[package]]
name = "wayland-sys"
-
version = "0.31.5"
+
version = "0.31.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "efa8ac0d8e8ed3e3b5c9fc92c7881406a268e11555abe36493efabe649a29e09"
+
checksum = "dbcebb399c77d5aa9fa5db874806ee7b4eba4e73650948e8f93963f128896615"
dependencies = [
"dlib",
"log",
···
[[package]]
name = "web-sys"
-
version = "0.3.76"
+
version = "0.3.77"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
dependencies = [
"js-sys",
"wasm-bindgen",
···
dependencies = [
"arrayvec",
"bit-vec",
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"cfg_aliases 0.1.1",
"document-features",
"indexmap",
···
"android_system_properties",
"arrayvec",
"ash",
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block",
"cfg_aliases 0.1.1",
"core-graphics-types",
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc9d91f0e2c4b51434dfa6db77846f2793149d8e73f800fa2e41f52b8eac3c5d"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"js-sys",
"web-sys",
···
[[package]]
name = "winit"
-
version = "0.30.5"
+
version = "0.30.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0be9e76a1f1077e04a411f0b989cbd3c93339e1771cb41e71ac4aee95bfd2c67"
+
checksum = "f5d74280aabb958072864bff6cfbcf9025cf8bfacdde5e32b5e12920ef703b0f"
dependencies = [
"ahash",
"android-activity",
"atomic-waker",
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"block2",
"bytemuck",
"calloop",
···
[[package]]
name = "winnow"
-
version = "0.6.20"
+
version = "0.6.26"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e90edd2ac1aa278a5c4599b1d89cf03074b610800f866d4026dc199d7929a28"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "winnow"
+
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
+
checksum = "7e49d2d35d3fad69b39b94139037ecfb4f359f08958b9c11e7315ce770462419"
dependencies = [
"memchr",
[[package]]
+
name = "wit-bindgen-rt"
+
version = "0.33.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3268f3d866458b787f390cf61f4bbb563b922d091359f9608842999eaee3943c"
+
dependencies = [
+
"bitflags 2.8.0",
+
]
+
+
[[package]]
name = "write16"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
···
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
dependencies = [
-
"bitflags 2.6.0",
+
"bitflags 2.8.0",
"dlib",
"log",
"once_cell",
···
[[package]]
name = "xml-rs"
-
version = "0.8.24"
+
version = "0.8.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ea8b391c9a790b496184c29f7f93b9ed5b16abb306c05415b68bcc16e4d06432"
+
checksum = "c5b940ebc25896e71dd073bad2dbaa2abfe97b0a391415e22ad1326d9c54e3c4"
[[package]]
name = "yoke"
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
"synstructure",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
[[package]]
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
"synstructure",
···
dependencies = [
"proc-macro2",
"quote",
-
"syn 2.0.90",
+
"syn 2.0.98",
+3 -3
pkgs/by-name/am/amdgpu_top/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "amdgpu_top";
-
version = "0.10.1";
+
version = "0.10.2";
src = fetchFromGitHub {
owner = "Umio-Yasuno";
repo = pname;
rev = "v${version}";
-
hash = "sha256-1OPaQcjrUaYTvMrOPcTemGs8DPn3NuuIbaIObxLiCt0=";
+
hash = "sha256-sXVUtqPnVYSJ+/RF4/FuXEZOA3DgHMv5Yd8ew/tJJeY=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
-
"libdrm_amdgpu_sys-0.7.7" = "sha256-gPK3BrW2oTCQDRvHJGY28EFmkKrVexY2bGXG2QwHZL0=";
+
"libdrm_amdgpu_sys-0.8.3" = "sha256-unjsJqQ6e9Xo522ETTpy6bxXYW/NzNOnVV+w1ord87U=";
};
};
+2 -2
pkgs/by-name/am/amule/package.nix
···
perl,
cryptopp,
libupnp,
-
boost, # Not using boost leads to crashes with gtk3
+
boost186, # Not using boost leads to crashes with gtk3
gettext,
libpng,
pkg-config,
···
perl
cryptopp.dev
libupnp
-
boost
+
boost186
]
++ lib.optional httpServer libpng
++ lib.optional client libX11;
+3 -3
pkgs/by-name/ar/argon/package.nix
···
}:
rustPlatform.buildRustPackage rec {
pname = "argon";
-
version = "2.0.21";
+
version = "2.0.22";
src = fetchFromGitHub {
owner = "argon-rbx";
repo = "argon";
tag = version;
-
hash = "sha256-msKrPLB+38PU7LEw92xEqFy6JxwMjttBaobIOhU7eWw=";
+
hash = "sha256-Nno6uZIlD4tA3opzhzO4ylPPGq3RDDrhAIQnt/rTXdA=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-HOgwN/LwnHq+BxiniTFbBwCw0Qc6kxcH8GrAy/JggXo=";
+
cargoHash = "sha256-W3Z/WVGP+RBbnqgcgIcrfkmgfmdKdH8kG/LBfvtArqo=";
nativeBuildInputs = [ pkg-config ];
+5 -4
pkgs/by-name/aw/awscli2/package.nix
···
in
py.pkgs.buildPythonApplication rec {
pname = "awscli2";
-
version = "2.23.5"; # N.B: if you change this, check if overrides are still up-to-date
+
version = "2.23.11"; # N.B: if you change this, check if overrides are still up-to-date
pyproject = true;
src = fetchFromGitHub {
owner = "aws";
repo = "aws-cli";
tag = version;
-
hash = "sha256-uDKiTw1UCcbfitoJzSPzVT1qM4Gm4bQaryRz7VTeEzg=";
+
hash = "sha256-ID0hQiR0qOTJMOvRAgEJLheblkY77yIgu1Ofa/6r7nk=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'flit_core>=3.7.1,<3.9.1' 'flit_core>=3.7.1' \
-
--replace-fail 'awscrt==0.23.4' 'awscrt>=0.23.4' \
+
--replace-fail 'awscrt==0.23.8' 'awscrt>=0.23.6' \
--replace-fail 'cryptography>=40.0.0,<43.0.2' 'cryptography>=43.0.0' \
--replace-fail 'distro>=1.5.0,<1.9.0' 'distro>=1.5.0' \
--replace-fail 'docutils>=0.10,<0.20' 'docutils>=0.10' \
-
--replace-fail 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24'
+
--replace-fail 'prompt-toolkit>=3.0.24,<3.0.39' 'prompt-toolkit>=3.0.24' \
+
--replace-fail 'zipp<3.21.0' 'zipp>=3.21.0'
substituteInPlace requirements-base.txt \
--replace-fail "wheel==0.43.0" "wheel>=0.43.0"
+2 -2
pkgs/by-name/cg/cgreen/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "cgreen";
-
version = "1.6.3";
+
version = "1.6.4";
src = fetchFromGitHub {
owner = "cgreen-devs";
repo = "cgreen";
rev = finalAttrs.version;
-
sha256 = "sha256-qcOj+NlgbHCYuNsM6ngNI2fNhkCwLL6mIVkNSv9hRE8=";
+
sha256 = "sha256-W4MdB3acZcxavjRupJa4eXAv9g4QgYXFAQWOLoHrQZ8=";
};
postPatch = ''
+2 -2
pkgs/by-name/ci/cilium-cli/package.nix
···
buildGoModule rec {
pname = "cilium-cli";
-
version = "0.16.23";
+
version = "0.16.24";
src = fetchFromGitHub {
owner = "cilium";
repo = "cilium-cli";
tag = "v${version}";
-
hash = "sha256-8GD3VjYInPaxOFoPeJGWIDfOIUQ7+g3GgfVq/IS18Bw=";
+
hash = "sha256-sUPyMAyLrQn4lLtoE9aVtOYvpjOg3I/QXD+x4Rs/2/s=";
};
nativeBuildInputs = [ installShellFiles ];
+104 -51
pkgs/by-name/co/code-cursor/package.nix
···
appimageTools,
makeWrapper,
writeScript,
+
undmg,
}:
let
pname = "cursor";
-
version = "0.44.11";
+
version = "0.45.8";
+
+
inherit (stdenvNoCC) hostPlatform;
sources = {
x86_64-linux = fetchurl {
-
url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.44.11-build-250103fqxdt5u9z-x86_64.AppImage";
-
hash = "sha256-eOZuofnpED9F6wic0S9m933Tb7Gq7cb/v0kRDltvFVg=";
+
url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.45.8-build-250201b44xw1x2k-x86_64.AppImage";
+
hash = "sha256-H+9cisa1LWJleqzwaB0WIzJpioYZyfLghelcZthCOvg=";
};
aarch64-linux = fetchurl {
-
url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.44.11-build-250103fqxdt5u9z-arm64.AppImage";
-
hash = "sha256-mxq7tQJfDccE0QsZDZbaFUKO0Xc141N00ntX3oEYRcc=";
+
url = "https://download.todesktop.com/230313mzl4w4u92/cursor-0.45.8-build-250201b44xw1x2k-arm64.AppImage";
+
hash = "sha256-GgPt9SvuCA9Hxm7nxm7mz0AvPKaLWCkYXO225taXnLA=";
+
};
+
x86_64-darwin = fetchurl {
+
url = "https://download.todesktop.com/230313mzl4w4u92/Cursor%200.45.8%20-%20Build%20250201b44xw1x2k-x64.dmg";
+
hash = "sha256-UqwzgxBSZR0itCknKzBClEX3w9aFKFhGIiVUQNYDVEM=";
+
};
+
aarch64-darwin = fetchurl {
+
url = "https://download.todesktop.com/230313mzl4w4u92/Cursor%200.45.8%20-%20Build%20250201b44xw1x2k-arm64.dmg";
+
hash = "sha256-AUW19xJFsrDGSUNE/bwkC2aN2QyaS+JKCjuxx//kbiI=";
};
};
-
supportedPlatforms = [
-
"x86_64-linux"
-
"aarch64-linux"
-
];
+
source = sources.${hostPlatform.system};
-
src = sources.${stdenvNoCC.hostPlatform.system};
-
+
# Linux -- build from AppImage
appimageContents = appimageTools.extractType2 {
-
inherit version pname src;
+
inherit version pname;
+
src = source;
};
-
wrappedAppImage = appimageTools.wrapType2 { inherit version pname src; };
+
wrappedAppimage = appimageTools.wrapType2 {
+
inherit version pname;
+
src = source;
+
};
-
appimageInstall = ''
-
runHook preInstall
+
in
+
stdenvNoCC.mkDerivation {
+
inherit pname version;
-
mkdir -p $out/
-
cp -r bin $out/bin
+
src = if hostPlatform.isLinux then wrappedAppimage else source;
-
mkdir -p $out/share/cursor
-
cp -a ${appimageContents}/locales $out/share/cursor
-
cp -a ${appimageContents}/resources $out/share/cursor
-
cp -a ${appimageContents}/usr/share/icons $out/share/
-
install -Dm 644 ${appimageContents}/cursor.desktop -t $out/share/applications/
+
nativeBuildInputs =
+
lib.optionals hostPlatform.isLinux [ makeWrapper ]
+
++ lib.optionals hostPlatform.isDarwin [ undmg ];
-
substituteInPlace $out/share/applications/cursor.desktop --replace-fail "AppRun" "cursor"
+
sourceRoot = lib.optionalString hostPlatform.isDarwin ".";
+
+
# Don't break code signing
+
dontUpdateAutotoolsGnuConfigScripts = hostPlatform.isDarwin;
+
dontConfigure = hostPlatform.isDarwin;
+
dontFixup = hostPlatform.isDarwin;
-
wrapProgram $out/bin/cursor \
-
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}} --no-update"
+
installPhase = ''
+
runHook preInstall
+
mkdir -p $out/
-
runHook postInstall
-
'';
+
${lib.optionalString hostPlatform.isLinux ''
+
cp -r bin $out/bin
+
mkdir -p $out/share/cursor
+
cp -a ${appimageContents}/locales $out/share/cursor
+
cp -a ${appimageContents}/resources $out/share/cursor
+
cp -a ${appimageContents}/usr/share/icons $out/share/
+
install -Dm 644 ${appimageContents}/cursor.desktop -t $out/share/applications/
-
in
-
stdenvNoCC.mkDerivation {
-
inherit pname version;
+
substituteInPlace $out/share/applications/cursor.desktop --replace-fail "AppRun" "cursor"
-
src = wrappedAppImage;
+
wrapProgram $out/bin/cursor \
+
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}} --no-update"
+
''}
-
nativeBuildInputs = [ makeWrapper ];
+
${lib.optionalString hostPlatform.isDarwin ''
+
APP_DIR="$out/Applications"
+
CURSOR_APP="$APP_DIR/Cursor.app"
+
mkdir -p "$APP_DIR"
+
cp -Rp Cursor.app "$APP_DIR"
+
mkdir -p "$out/bin"
+
cat << EOF > "$out/bin/cursor"
+
#!${stdenvNoCC.shell}
+
open -na "$CURSOR_APP" --args "\$@"
+
EOF
+
chmod +x "$out/bin/cursor"
+
''}
-
installPhase = appimageInstall;
+
runHook postInstall
+
'';
passthru = {
inherit sources;
updateScript = writeScript "update.sh" ''
#!/usr/bin/env nix-shell
-
#!nix-shell -i bash -p curl yq coreutils gnused common-updater-scripts
+
#!nix-shell -i bash -p curl yq coreutils gnused trurl common-updater-scripts
set -eu -o pipefail
+
baseUrl="https://download.todesktop.com/230313mzl4w4u92"
latestLinux="$(curl -s $baseUrl/latest-linux.yml)"
-
version="$(echo "$latestLinux" | yq -r .version)"
-
filename="$(echo "$latestLinux" | yq -r '.files[] | .url | select(. | endswith(".AppImage"))')"
-
linuxStem="$(echo "$filename" | sed -E s/^\(cursor-.+-build-.*\)-.+$/\\1/)"
+
latestDarwin="$(curl -s $baseUrl/latest-mac.yml)"
+
linuxVersion="$(echo "$latestLinux" | yq -r .version)"
currentVersion=$(nix-instantiate --eval -E "with import ./. {}; code-cursor.version or (lib.getVersion code-cursor)" | tr -d '"')
-
if [[ "$version" != "$currentVersion" ]]; then
-
for platform in ${lib.escapeShellArgs supportedPlatforms}; do
-
if [ $platform = "x86_64-linux" ]; then
-
url="$baseUrl/$linuxStem-x86_64.AppImage"
-
elif [ $platform = "aarch64-linux" ]; then
-
url="$baseUrl/$linuxStem-arm64.AppImage"
-
else
-
echo "Unsupported platform: $platform"
-
exit 1
+
if [[ "$linuxVersion" != "$currentVersion" ]]; then
+
darwinVersion="$(echo "$latestDarwin" | yq -r .version)"
+
if [ "$linuxVersion" != "$darwinVersion" ]; then
+
echo "Linux version ($linuxVersion) and Darwin version ($darwinVersion) do not match"
+
exit 1
fi
+
version="$linuxVersion"
+
+
linuxFilename="$(echo "$latestLinux" | yq -r '.files[] | .url | select(. | endswith(".AppImage"))' | head -n 1)"
+
linuxStem="$(echo "$linuxFilename" | sed -E s/^\(.+build.+\)-[^-]+AppImage$/\\1/)"
+
+
darwinFilename="$(echo "$latestDarwin" | yq -r '.files[] | .url | select(. | endswith(".dmg"))' | head -n 1)"
+
darwinStem="$(echo "$darwinFilename" | sed -E s/^\(.+Build[^-]+\)-.+dmg$/\\1/)"
-
hash=$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url "$url")")
-
update-source-version code-cursor $version $hash $url --system=$platform --ignore-same-version --source-key="sources.$platform"
-
done
+
for platform in "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin"; do
+
if [ $platform = "x86_64-linux" ]; then
+
url="$baseUrl/$linuxStem-x86_64.AppImage"
+
elif [ $platform = "aarch64-linux" ]; then
+
url="$baseUrl/$linuxStem-arm64.AppImage"
+
elif [ $platform = "x86_64-darwin" ]; then
+
url="$baseUrl/$darwinStem-x64.dmg"
+
elif [ $platform = "aarch64-darwin" ]; then
+
url="$baseUrl/$darwinStem-arm64.dmg"
+
else
+
echo "Unsupported platform: $platform"
+
exit 1
+
fi
+
+
url=$(trurl --accept-space "$url")
+
hash=$(nix-hash --to-sri --type sha256 "$(nix-prefetch-url "$url" --name "cursor-$version")")
+
update-source-version code-cursor $version $hash $url --system=$platform --ignore-same-version --source-key="sources.$platform"
+
done
fi
'';
};
···
changelog = "https://cursor.com/changelog";
license = lib.licenses.unfree;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
-
maintainers = with lib.maintainers; [ sarahec ];
-
platforms = lib.platforms.linux;
+
maintainers = with lib.maintainers; [
+
sarahec
+
aspauldingcode
+
];
+
platforms = lib.platforms.linux ++ lib.platforms.darwin;
mainProgram = "cursor";
};
}
+3 -3
pkgs/by-name/do/dotenvx/package.nix
···
buildNpmPackage rec {
pname = "dotenvx";
-
version = "1.33.0";
+
version = "1.34.0";
src = fetchFromGitHub {
owner = "dotenvx";
repo = "dotenvx";
tag = "v${version}";
-
hash = "sha256-/0bxY4D3jq6shXEHf13CkGdEGRS8cVQOSaLiIaehq5g=";
+
hash = "sha256-zRdE79UzbiyFKCu+5yAI+JHlt+sxF0C0XaaZRNqciCM=";
};
-
npmDepsHash = "sha256-JtoOXDS44fG4ctzN1ZSi+WOXye2p5mjKczSXbvGPIEw=";
+
npmDepsHash = "sha256-Rtb9/hwUVQAmDleSg7iIEgVznREqx5VNqufSxiWa1Zw=";
dontNpmBuild = true;
+3 -3
pkgs/by-name/ek/eksctl/package.nix
···
buildGoModule rec {
pname = "eksctl";
-
version = "0.201.0";
+
version = "0.203.0";
src = fetchFromGitHub {
owner = "weaveworks";
repo = pname;
rev = version;
-
hash = "sha256-mvIidkr3fUs8TbD8voqE8NAA14XPPuXC9u/2pc2ShK4=";
+
hash = "sha256-hBHWj1Brn4qbtOLZjxlr6tBuipItCFwbL9bm2wlfL80=";
};
-
vendorHash = "sha256-qOV6mAKwLrF5+/q/PS2qVJcQx84CjNinv/e8KG+lxfI=";
+
vendorHash = "sha256-IFi9FhsiWWg9joPAGnEnZfq4PzBjR6bJ5MWvFIPyfJo=";
doCheck = false;
+3 -3
pkgs/by-name/fi/fission/package.nix
···
buildGoModule rec {
pname = "fission";
-
version = "1.20.5";
+
version = "1.21.0";
src = fetchFromGitHub {
owner = "fission";
repo = "fission";
rev = "v${version}";
-
hash = "sha256-JYe5CWHcqQwbldimX2/pkF+gUvCplIuNg/kTvyT2I0c=";
+
hash = "sha256-Tl7aKibVbNAKOa1tycKtEzdJ8rJHBMa8PTUm0i7DKA4=";
};
-
vendorHash = "sha256-3Wuvi7st9y+Pyv12HyxcSoaUjYA3xooYH+zHZ+xbngo=";
+
vendorHash = "sha256-PhB6zR/dXnOCHJiJ/EjVOD26SubaAITRm61XOvULerU=";
ldflags = [ "-s" "-w" "-X info.Version=${version}" ];
+23 -1
pkgs/by-name/gi/gitlab-container-registry/package.nix
···
lib,
buildGoModule,
fetchFromGitLab,
+
fetchpatch,
}:
buildGoModule rec {
···
vendorHash = "sha256-aKE/yr2Sh+4yw4TmpaVF84rJOI6cjs0DKY326+aXO1o=";
+
env = {
+
# required for multiple azure tests
+
# https://gitlab.com/gitlab-org/container-registry/-/issues/1494
+
AZURE_DRIVER_VERSION = "azure_v2";
+
};
+
+
patches = [
+
# remove with >= 4.15.3
+
(fetchpatch {
+
url = "https://gitlab.com/gitlab-org/container-registry/-/commit/268689a2f30880b7d122469a4260ca46cbc55ccd.patch";
+
hash = "sha256-RslK4qvcqCaG7ju2LgN/tI9cImrTj3Nry+mCv3zoWiA=";
+
})
+
];
+
postPatch = ''
# Disable flaky inmemory storage driver test
rm registry/storage/driver/inmemory/driver_test.go
substituteInPlace health/checks/checks_test.go \
-
--replace \
+
--replace-fail \
'func TestHTTPChecker(t *testing.T) {' \
'func TestHTTPChecker(t *testing.T) { t.Skip("Test requires network connection")'
+
+
# Add workaround for failing test due to function type mismatch (args vs return) by upstream
+
# https://gitlab.com/gitlab-org/container-registry/-/issues/1495
+
substituteInPlace registry/storage/driver/base/regulator_test.go \
+
--replace-fail \
+
'require.Equal(t, limit, r.available, "r.available")' \
+
'require.Equal(t, limit, int(r.available), "r.available")'
'';
meta = with lib; {
+3 -3
pkgs/by-name/go/go-mockery/package.nix
···
buildGoModule rec {
pname = "go-mockery";
-
version = "2.51.1";
+
version = "2.52.1";
src = fetchFromGitHub {
owner = "vektra";
repo = "mockery";
rev = "v${version}";
-
sha256 = "sha256-+KbO2Ch0SB+TP7/So2bCsHOS7ousAl5mD/w2EXj4jzg=";
+
sha256 = "sha256-algCErKmB43r/t7wo8BJSM0MHRxvxVWZ2u0n1xuLLdw=";
};
preCheck = ''
···
env.CGO_ENABLED = false;
proxyVendor = true;
-
vendorHash = "sha256-z1ceS+LO6d7T264pw2BLadw804aGRISyrKW/dr4fZHA=";
+
vendorHash = "sha256-nL6dDGifhtmDHfz1ae+wnmVPPQDLrRgI7v8c5cQzo8Q=";
subPackages = [ "." ];
+2 -2
pkgs/by-name/gr/grpc_cli/package.nix
···
stdenv.mkDerivation rec {
pname = "grpc_cli";
-
version = "1.70.0";
+
version = "1.70.1";
src = fetchFromGitHub {
owner = "grpc";
repo = "grpc";
rev = "v${version}";
-
hash = "sha256-kJhGAhqu25Q2g6BWkVGp6nGYrWdBnMhoMu6e7ifNbgk=";
+
hash = "sha256-/Mg999SA/19iypjacXrEnX1B08hajyq7sC7yab+eTCk=";
fetchSubmodules = true;
};
nativeBuildInputs = [
+2 -2
pkgs/by-name/hi/hishtory/package.nix
···
buildGoModule rec {
pname = "hishtory";
-
version = "0.327";
+
version = "0.328";
src = fetchFromGitHub {
owner = "ddworken";
repo = pname;
rev = "v${version}";
-
hash = "sha256-bt+k3JWkuxpY2ZSHFvKxOyUwcBtQrsTH/uf1Lw0r+uo=";
+
hash = "sha256-XEhhRs0yt6VvE9Lw4ikY3nb2frCWm15fxcvRDAWfifY=";
};
vendorHash = "sha256-A975ensuezz75I4KrFcl8wi9HjZqlfEHeJVAyA69V9k=";
+3 -3
pkgs/by-name/ht/httm/package.nix
···
rustPlatform.buildRustPackage rec {
pname = "httm";
-
version = "0.45.0";
+
version = "0.45.6";
src = fetchFromGitHub {
owner = "kimono-koans";
repo = pname;
rev = version;
-
hash = "sha256-g+UUiFgOTuSNymg3OcIsoTqWA/OOZzwFCUQ7YxW1AzE=";
+
hash = "sha256-dNiF1MbDhQKETQf3O+5joFR82cQsQezSayEwY2YJeNs=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-IUcuVeyoCsaQHg/08CTqEySmIh7v2fr7LDJCiYiq+FQ=";
+
cargoHash = "sha256-YnJoJ3npiURcmV36kgyhAcXla/tBTK7Hkqxrq6D/XRk=";
nativeBuildInputs = [ installShellFiles ];
+3
pkgs/by-name/hu/humanity-icon-theme/package.nix
···
dontDropIconThemeCache = true;
+
# Upstream ships a bunch of those, and is very dead
+
dontCheckForBrokenSymlinks = true;
+
installPhase = ''
runHook preInstall
+2 -2
pkgs/by-name/ko/komikku/package.nix
···
python3.pkgs.buildPythonApplication rec {
pname = "komikku";
-
version = "1.68.0";
+
version = "1.69.0";
pyproject = false;
src = fetchFromGitea {
···
owner = "valos";
repo = "Komikku";
rev = "v${version}";
-
hash = "sha256-pfhGMeXVSgsQApFXXhQA6pzOqhiuDuNzmarOtO0Gm90=";
+
hash = "sha256-YrqoUU2BYM6AMD5s6FJn8GV+UmyeKV2mFQyfJjLI8HA=";
};
nativeBuildInputs = [
+3 -3
pkgs/by-name/ku/kubelogin/package.nix
···
buildGoModule rec {
pname = "kubelogin";
-
version = "0.1.6";
+
version = "0.1.7";
src = fetchFromGitHub {
owner = "Azure";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-VmCJoyr42tbQhe8o54D/t9+Gfz40Oe6NzqqJWknNP70=";
+
sha256 = "sha256-yU9RDzUjN8Ona5Xa7+90qDmc4HFbec3tEzumaPmG6es=";
};
-
vendorHash = "sha256-8L5OzEJvHBOHPkZyIitIW8hBzmOytTDUUTGlAmY5zBg=";
+
vendorHash = "sha256-pAhBUREzancX0cbLm5rgZwJn8N0fLX57wONNypADQLE=";
ldflags = [
"-X main.gitTag=v${version}"
+2 -2
pkgs/by-name/ku/kubescape/package.nix
···
buildGoModule rec {
pname = "kubescape";
-
version = "3.0.24";
+
version = "3.0.25";
src = fetchFromGitHub {
owner = "kubescape";
repo = "kubescape";
tag = "v${version}";
-
hash = "sha256-gzwdDUYOHZnd9mMHmuW9q1xhxWjpk5u/yoxdJkSNrVA=";
+
hash = "sha256-1KwFa0FixlzgRd2hSUj/ODf0SJKxZ496/xg374uV4fI=";
fetchSubmodules = true;
};
+3
pkgs/by-name/li/lirc/package.nix
···
"localstatedir=$TMPDIR"
];
+
# Upstream ships broken symlinks in docs
+
dontCheckForBrokenSymlinks = true;
+
meta = with lib; {
description = "Allows to receive and send infrared signals";
homepage = "https://www.lirc.org/";
+3 -3
pkgs/by-name/np/npm-check-updates/package.nix
···
buildNpmPackage rec {
pname = "npm-check-updates";
-
version = "17.1.11";
+
version = "17.1.14";
src = fetchFromGitHub {
owner = "raineorshine";
repo = "npm-check-updates";
rev = "refs/tags/v${version}";
-
hash = "sha256-l23+Gmv6395QSWdGOVgHH2mvQND02/PQyBvwvEeawCI=";
+
hash = "sha256-PIaT5Wg+jEd4NPlLVQKnJ429489ZSQPagCc/+h2EFrI=";
};
-
npmDepsHash = "sha256-/J38+j4f5G54ejfzZIqQ9JL7BCD8UTa5dkwYgIu2Xo0=";
+
npmDepsHash = "sha256-k/TBMdOyTjVBir5wIujMPHa+2FRvzORX7dXpLrMhTqY=";
postPatch = ''
sed -i '/"prepare"/d' package.json
+2 -2
pkgs/by-name/nz/nzbhydra2/package.nix
···
}:
stdenv.mkDerivation rec {
pname = "nzbhydra2";
-
version = "7.12.1";
+
version = "7.12.3";
src = fetchzip {
url = "https://github.com/theotherp/nzbhydra2/releases/download/v${version}/nzbhydra2-${version}-generic.zip";
-
hash = "sha256-QCMsAFRU6THmKiIFvnfUHzmv91gcC1pAztNYg9RymzU=";
+
hash = "sha256-uTtkMusIhDbD+CojOSJ59Kqo6iSuIqWLqd6T5tYuX4k=";
stripRoot = false;
};
+2 -2
pkgs/by-name/op/opengamepadui/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "opengamepadui";
-
version = "0.35.7";
+
version = "0.35.8";
buildType = if withDebug then "debug" else "release";
···
owner = "ShadowBlip";
repo = "OpenGamepadUI";
tag = "v${finalAttrs.version}";
-
hash = "sha256-yOFxtDDYdxCtN8L8RtXgxebjRwK1Blsp/RG1E+UfUEI=";
+
hash = "sha256-vMb08Wqjt5j6IgMnXuZr6MGNk1CprVn2GTNDdOxnFG0=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
+2 -2
pkgs/by-name/pi/pipenv-poetry-migrate/package.nix
···
python3Packages.buildPythonApplication rec {
pname = "pipenv-poetry-migrate";
-
version = "0.6.0";
+
version = "0.6.1";
pyproject = true;
src = fetchFromGitHub {
owner = "yhino";
repo = "pipenv-poetry-migrate";
tag = "v${version}";
-
hash = "sha256-M31bOvKGUlkzfZRQAxTkxhX8m9cCzEvsNZdyIyipwGI=";
+
hash = "sha256-B13/QHHruZGkks1AKHLUw8h5FJkqaVjPHjiKH8vkV/8=";
};
build-system = [ python3Packages.poetry-core ];
+1
pkgs/by-name/pr/pretalx/package.nix
···
"django-csp"
"django-filter"
"django-hierarkey"
+
"django-i18nfield"
"djangorestframework"
"markdown"
"pillow"
+2 -2
pkgs/by-name/pu/pulsarctl/package.nix
···
buildGoModule rec {
pname = "pulsarctl";
-
version = "4.0.1.2";
+
version = "4.0.1.3";
src = fetchFromGitHub {
owner = "streamnative";
repo = "pulsarctl";
rev = "v${version}";
-
hash = "sha256-3VONhrKViblh0LXy/hMVgzCN54JkDYw3v/YrqXuk6l8=";
+
hash = "sha256-wjLF8yaVRJeh7xMCmNAI/xW7CU5noFPgHkZRtixADv8=";
};
vendorHash = "sha256-wNUTJn7Ar+GlePEhdr6xeolAiltJdAoIs5o5uDo8Ibs=";
+19 -5
pkgs/by-name/re/reposilite/package.nix
···
{
-
stdenv,
lib,
+
stdenv,
fetchurl,
-
makeWrapper,
jre_headless,
+
linkFarm,
+
makeWrapper,
+
plugins ? [ ],
}:
-
+
let
+
pluginsDir = linkFarm "reposilite-plugins" (
+
builtins.map (p: {
+
name = (builtins.parseDrvName p.name).name + ".jar";
+
path = p.outPath or p;
+
}) plugins
+
);
+
in
stdenv.mkDerivation (finalAttrs: {
pname = "Reposilite";
version = "3.5.20";
···
mkdir -p $out/lib
cp $src $out/lib/reposilite
makeWrapper ${jre_headless}/bin/java $out/bin/reposilite \
-
--add-flags "-Xmx40m -jar $out/lib/reposilite"
+
--add-flags "-Xmx40m -jar $out/lib/reposilite ${
+
lib.optionalString (plugins != [ ]) "--plugin-directory ${pluginsDir}"
+
}"
runHook postInstall
'';
···
homepage = "https://github.com/dzikoysk/reposilite";
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
license = lib.licenses.asl20;
-
maintainers = with lib.maintainers; [ jamalam ];
+
maintainers = with lib.maintainers; [
+
jamalam
+
uku3lig
+
];
inherit (jre_headless.meta) platforms;
mainProgram = "reposilite";
};
+3 -3
pkgs/by-name/re/retroarch-assets/package.nix
···
stdenvNoCC.mkDerivation {
pname = "retroarch-assets";
-
version = "1.19.0-unstable-2024-12-31";
+
version = "1.20.0-unstable-2025-01-30";
src = fetchFromGitHub {
owner = "libretro";
repo = "retroarch-assets";
-
rev = "c4f1ec8bddba15e1b1a00a7e56c50cf0eca8b5c9";
-
hash = "sha256-iyLw7LhZIjPRQJaa6bS+HUctYDoVzD1sU8SUFtBnwnE=";
+
rev = "9afd2b8a9d16fc25c5a046122bc0d2b3c965980e";
+
hash = "sha256-PWwq9aNj0u+Dc9Q7lSRivER1Fd42H6u2auU/XLlg61k=";
};
makeFlags = [
+3 -3
pkgs/by-name/ri/rio/package.nix
···
in
rustPlatform.buildRustPackage rec {
pname = "rio";
-
version = "0.2.4";
+
version = "0.2.5";
src = fetchFromGitHub {
owner = "raphamorim";
repo = "rio";
rev = "v${version}";
-
hash = "sha256-dH/r6Bumis8WOM/c/FAvFD2QYuMeHWOMQuU6zLWrlaM=";
+
hash = "sha256-GyHwYvhqRX2ENaytLB/NrJv2wFbpPrZpQd5OW53ZgRw=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-zE99cP6m6gWViAfiF9nlnSn2iLxBNoMyl5fWdmc1r7s=";
+
cargoHash = "sha256-TB3Nl3ePIJE7UQ89cJI5MPG4XpsPQgG5tM409GGm+qg=";
nativeBuildInputs =
[
+7
pkgs/by-name/ru/rutabaga_gfx/package.nix
···
})
# Install the dylib on Darwin.
./darwin-install.patch
+
# Patch for libc++, drop in next update
+
# https://chromium.googlesource.com/crosvm/crosvm/+/8ae3c23b2e3899de33b973fc636909f1eb3dc98c
+
./link-cxx.patch
];
+
+
env = lib.optionalAttrs stdenv.hostPlatform.useLLVM {
+
USE_CLANG = true;
+
};
nativeBuildInputs = [
cargo
+2 -2
pkgs/by-name/sd/sdl3/package.nix
···
stdenv.mkDerivation (finalAttrs: {
pname = "sdl3";
-
version = "3.2.0";
+
version = "3.2.2";
outputs = [
"lib"
···
owner = "libsdl-org";
repo = "SDL";
tag = "release-${finalAttrs.version}";
-
hash = "sha256-gVLZPuXtMdFhylxh3+LC/SJCaQiOwZpbVcBGctyGGYY=";
+
hash = "sha256-AbEwpIxgYl3g4calnWca8Vz/Tw1DnYfZrD1Vl5cSMpk=";
};
postPatch =
+2 -2
pkgs/by-name/si/signalbackup-tools/package.nix
···
stdenv.mkDerivation rec {
pname = "signalbackup-tools";
-
version = "20250127-1";
+
version = "20250202";
src = fetchFromGitHub {
owner = "bepaald";
repo = "signalbackup-tools";
rev = version;
-
hash = "sha256-6JHHiT1OwLPKxA0rbGiwhwF4PiuS5yguoNtB7dpTJPI=";
+
hash = "sha256-RYklp/jrp/bdS6tuIBHSgF1GJYnYydj4fcwsgcuZPeY=";
};
nativeBuildInputs = [
+2 -2
pkgs/by-name/si/simple64-netplay-server/package.nix
···
buildGoModule rec {
pname = "simple64-netplay-server";
-
version = "2025.01.1";
+
version = "2025.01.3";
src = fetchFromGitHub {
owner = "simple64";
repo = "simple64-netplay-server";
tag = "v${version}";
-
hash = "sha256-mE6cm1/xxQvcQykKDfO9dDK3J6TOE3POaDuYB0tNRPk=";
+
hash = "sha256-6+apLOy/hlLkvQjVxi4qpIVhfImdevyCFGAo6rBCc6k=";
};
vendorHash = "sha256-lcKOAPCyWKNg+l1YjziaMTn4DjLB0P+dz3FqyAy0sFk=";
+3 -3
pkgs/by-name/sn/snips-sh/package.nix
···
}:
buildGoModule rec {
pname = "snips-sh";
-
version = "0.4.1";
-
vendorHash = "sha256-weqlhnhUG2gn9SFS63q1LYmPa7liGYYcJN5qorj6x2E=";
+
version = "0.4.2";
+
vendorHash = "sha256-Lp3yousaDkTCruOP0ytfY84vPmfLMgBoTwf+7Q7Q0Lc=";
src = fetchFromGitHub {
owner = "robherley";
repo = "snips.sh";
rev = "v${version}";
-
hash = "sha256-FEo2/TPwes8/Iwfp7OIo1HbLWF9xmVS9ZMC9HysyK/k=";
+
hash = "sha256-IjGXGY75k9VeeHek0V8SrIElmiQ+Q2P5gEDIp7pmQd8=";
};
tags = (lib.optional (!withTensorflow) "noguesser");
+2 -2
pkgs/by-name/so/sof-firmware/package.nix
···
stdenvNoCC.mkDerivation rec {
pname = "sof-firmware";
-
version = "2024.09.2";
+
version = "2025.01";
src = fetchurl {
url = "https://github.com/thesofproject/sof-bin/releases/download/v${version}/sof-bin-${version}.tar.gz";
-
sha256 = "sha256-huaEGlXx1tHJFQOoSCwbR128rezbYVG/oKwAldHYpSo=";
+
sha256 = "sha256-NNVl23V6MkUBBjF8xR84v2eWLg/It/fHLm45/YnpkmM=";
};
dontFixup = true; # binaries must not be stripped or patchelfed
+3 -3
pkgs/by-name/td/tdl/package.nix
···
}:
buildGoModule rec {
pname = "tdl";
-
version = "0.18.4";
+
version = "0.18.5";
src = fetchFromGitHub {
owner = "iyear";
repo = "tdl";
rev = "v${version}";
-
hash = "sha256-30OClBZUjoLvZ0ZhSZx+AaS7fhjo8X392t4FQpxoG9Q=";
+
hash = "sha256-PVd9aYo4ALgzovNOfAUQkAaAbWNLeqF+UEPlL9iGhAs=";
};
-
vendorHash = "sha256-QBqUa/PnT/Xma3SHq6YRGtVNKstTax1GVRsCDU12ETA=";
+
vendorHash = "sha256-IJPGkQxUGk7v+8J37vLTbLSGxYOcfgNDywnGzTxbk3w=";
ldflags = [
"-s"
+3 -3
pkgs/by-name/te/termius/package.nix
···
stdenv.mkDerivation rec {
pname = "termius";
-
version = "9.12.0";
-
revision = "212";
+
version = "9.13.1";
+
revision = "213";
src = fetchurl {
# find the latest version with
···
# and the sha512 with
# curl -H 'X-Ubuntu-Series: 16' https://api.snapcraft.io/api/v1/snaps/details/termius-app | jq '.download_sha512' -r
url = "https://api.snapcraft.io/api/v1/snaps/download/WkTBXwoX81rBe3s3OTt3EiiLKBx2QhuS_${revision}.snap";
-
hash = "sha512-w2dp/iwwYsR7LVk7O4FtktctX39lMNufrtTSaRjWq59bIalvPM2mC3DDs1zhsEq1EmKsY+uVsAgsDPMG7bCRUw==";
+
hash = "sha512-GF5ZC4t3f54Rwqet9g4McB0h+sBg/+VpZ57IKVKC25T442gAEkdhTwQdqf2kJ+V74PsqdpZJk61rh21EusOi5w==";
};
desktopItem = makeDesktopItem {
+4 -7
pkgs/by-name/ts/tsukimi/package.nix
···
}:
rustPlatform.buildRustPackage rec {
pname = "tsukimi";
-
version = "0.18.3";
+
version = "0.19.0";
src = fetchFromGitHub {
owner = "tsukinaha";
repo = "tsukimi";
tag = "v${version}";
-
hash = "sha256-MbGWPvCq4nzrp8ArXud9A+6uPcnbxs42M2QwjZxUn5w=";
+
hash = "sha256-5hOOIkH0VhZwlsNKAyOI714ueGcSMagoLGi5ECfqXk4=";
fetchSubmodules = true;
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-59JakfFFM4Tpi1J3ja0aDhC5oty/0QKNLcU58nRewTg=";
+
cargoHash = "sha256-rgTrPJydS4685BlSEwNvmEajZEksqQicscOq/Uu9JJ4=";
nativeBuildInputs = [
pkg-config
···
substituteInPlace build.rs \
--replace-fail 'i18n/locale' "$out/share/locale"
-
substituteInPlace src/main.rs \
+
substituteInPlace src/lib.rs \
--replace-fail '/usr/share/locale' "$out/share/locale"
'';
···
];
mainProgram = "tsukimi";
platforms = lib.platforms.linux;
-
# libmpv2 crate fail to compile
-
# expected raw pointer `*const u8` found raw pointer `*const i8`
-
broken = stdenv.hostPlatform.isAarch64;
};
}
+33
pkgs/by-name/tt/tt-rss-plugin-data-migration/package.nix
···
+
{
+
lib,
+
stdenv,
+
fetchgit,
+
}:
+
+
stdenv.mkDerivation {
+
pname = "tt-rss-plugin-data-migration";
+
version = "0-unstable-2023-11-01";
+
+
src = fetchgit {
+
url = "https://git.tt-rss.org/fox/ttrss-data-migration.git";
+
rev = "e13d5f97b4887ce7b57b3d76228d838dec15963d";
+
hash = "sha256-xnbR5IQ0h7ilxchNj55ROZdq1L7MIAwv3/00k09WTTs=";
+
};
+
+
installPhase = ''
+
runHook preInstall
+
+
install -D init.php $out/data_migration/init.php
+
+
runHook postInstall
+
'';
+
+
meta = {
+
description = "Plugin for TT-RSS to exports and imports *all* articles of a specific user via neutral format (JSON files in a ZIP archive)";
+
# this plugin doesn't have a license file
+
license = lib.licenses.unfree;
+
homepage = "https://git.tt-rss.org/fox/ttrss-data-migration.git/";
+
maintainers = with lib.maintainers; [ wrvsrx ];
+
platforms = lib.platforms.all;
+
};
+
}
+2 -2
pkgs/by-name/us/ustreamer/package.nix
···
}:
stdenv.mkDerivation rec {
pname = "ustreamer";
-
version = "6.22";
+
version = "6.27";
src = fetchFromGitHub {
owner = "pikvm";
repo = "ustreamer";
rev = "v${version}";
-
hash = "sha256-6qVDxci2uFV2Z93vqbpwxZ3yAVZ5NHGOPDOYRr2b1l8=";
+
hash = "sha256-/lNRw73w/1L12R1hVIopUvqwKVgl055zn5xL6LL9TLI=";
};
buildInputs =
+3 -3
pkgs/by-name/ve/vector/package.nix
···
let
pname = "vector";
-
version = "0.43.1";
+
version = "0.44.0";
in
rustPlatform.buildRustPackage {
inherit pname version;
···
owner = "vectordotdev";
repo = pname;
rev = "v${version}";
-
hash = "sha256-BFVRaHNd9LMJQnkHHfNtvGKkv8q7GjnT+FzNwSc8GZw=";
+
hash = "sha256-dYjZRTJ0/jb/GsADMy7CkTpFrevSAZz5IMj1mLm22Es=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-1xxEu4/IxUe10Wngz1RUT6Iu982pueRteiOwg6BZ1/E=";
+
cargoHash = "sha256-easBpuypi9wCtfMaeMQg8EVlHhBBWUof3eDRkv0THPM=";
nativeBuildInputs =
[
+3 -3
pkgs/by-name/wa/wait4x/package.nix
···
}:
let
pname = "wait4x";
-
version = "2.14.2";
+
version = "2.14.3";
in
buildGoModule {
inherit pname version;
···
owner = "atkrad";
repo = pname;
rev = "v${version}";
-
hash = "sha256-fNPZ/qgAn4odd5iWnDK1RWPxeBhS/l4ffHLFB27SAoM=";
+
hash = "sha256-tqUqiq+U+C+1KCsCw9h1uufL1ognUyvLwJfRU8aiAWI=";
};
-
vendorHash = "sha256-Eio6CoYaChG59rHL4tfl7dNWliD7ksRyhoCPxMvMmrQ=";
+
vendorHash = "sha256-KtEOLLsbTfgaXy/0aj5zT5qbgW6qBFMuU3EnnXRu+Ig=";
# Tests make network access
doCheck = false;
+3 -3
pkgs/by-name/we/werf/package.nix
···
buildGoModule rec {
pname = "werf";
-
version = "2.22.0";
+
version = "2.24.0";
src = fetchFromGitHub {
owner = "werf";
repo = "werf";
rev = "v${version}";
-
hash = "sha256-43ZN2bMzVBpliXjDDJrVZqdiWBS3rT5mYEd0440wp4s=";
+
hash = "sha256-IU9gVEG4MsUkdX4aJYKtd11WQLODU1IYAUyiuK+la40=";
};
-
vendorHash = "sha256-Qy5Tjg/QETeN8leTaWZXSUauK2LkPUUZbpztC79v6Jo=";
+
vendorHash = "sha256-1HK90RqVvpuzkhbsLh0R6/CcdO/RrXRuOr3MBN0dcLU=";
proxyVendor = true;
+18 -5
pkgs/by-name/wo/workout-tracker/package.nix
···
}:
let
pname = "workout-tracker";
-
version = "1.18.1";
+
version = "2.0.3";
src = fetchFromGitHub {
owner = "jovandeginste";
repo = "workout-tracker";
tag = "v${version}";
-
hash = "sha256-Sn6SOHrsp1ZgsPntc2+cmlAEPVBUrYv1vKLKAQvT9m4=";
+
hash = "sha256-DJOYjKujb6mmqJcYhzPLv1uYgAIWW4hdH/gILlqkJXQ=";
};
assets = buildNpmPackage {
pname = "${pname}-assets";
inherit version src;
-
npmDepsHash = "sha256-jHpvCMgjGvaAOfbslaIKfIRiPafScpn3WLnYamm+lbs=";
+
npmDepsHash = "sha256-/OBIRiLwUtXVmmg44FYqV0BptxQTg8bDuNMTj8IYwG0=";
dontNpmBuild = true;
+
makeCacheWritable = true;
postPatch = ''
rm Makefile
'';
···
'';
};
in
-
buildGoModule rec {
+
buildGoModule {
inherit pname version src;
vendorHash = null;
···
make build-dist
'';
+
ldflags = [
+
"-s"
+
"-w"
+
"-X main.buildTime=1970-01-01T00:00:00Z"
+
"-X main.gitCommit=v${version}"
+
"-X main.gitRef=v${version}"
+
"-X main.gitRefName=v${version}"
+
];
+
passthru.updateScript = nix-update-script { };
passthru.tests = {
···
homepage = "https://github.com/jovandeginste/workout-tracker";
license = lib.licenses.mit;
mainProgram = "workout-tracker";
-
maintainers = with lib.maintainers; [ bhankas ];
+
maintainers = with lib.maintainers; [
+
bhankas
+
sikmir
+
];
};
}
+2 -2
pkgs/by-name/zi/zipline/package.nix
···
};
patches = [
-
# Update prisma to match the version in nixpkgs exactly (currently 6.0.1). To create this patch, change the
+
# Update prisma to match the version in nixpkgs exactly (currently 6.3.0). To create this patch, change the
# versions in `package.json`, then run `nix run nixpkgs#yarn-berry -- install --mode update-lockfile`
# to update `yarn.lock`.
./prisma6.patch
···
yarn install --immutable --mode skip-build
'';
-
outputHash = "sha256-kWE6YVhyH5Lk/SO0h624Zq9/6ztoUE3FNzHB0dyl5aI=";
+
outputHash = "sha256-c7U/PMlulbjzWx0w4jstgfjeDYPkmfcXIRCDEQxhirA=";
outputHashMode = "recursive";
};
+237 -224
pkgs/by-name/zi/zipline/prisma6.patch
···
diff --git a/package.json b/package.json
-
index 9276e5f..ded1f51 100644
+
index 41a84b7..eab012b 100644
--- a/package.json
+++ b/package.json
@@ -39,9 +39,9 @@
···
- "@prisma/client": "^5.1.1",
- "@prisma/internals": "^5.1.1",
- "@prisma/migrate": "^5.1.1",
-
+ "@prisma/client": "6.0.1",
-
+ "@prisma/internals": "6.0.1",
-
+ "@prisma/migrate": "6.0.1",
+
+ "@prisma/client": "6.3.0",
+
+ "@prisma/internals": "6.3.0",
+
+ "@prisma/migrate": "6.3.0",
"@sapphire/shapeshift": "^3.9.3",
"@tabler/icons-react": "^2.41.0",
"@tanstack/react-query": "^4.28.0",
···
"next": "^14.0.3",
"otplib": "^12.0.1",
- "prisma": "^5.1.1",
-
+ "prisma": "6.0.1",
+
+ "prisma": "6.3.0",
"prismjs": "^1.29.0",
"qrcode": "^1.5.3",
"react": "^18.2.0",
diff --git a/yarn.lock b/yarn.lock
-
index 633a054..6ba71b9 100644
+
index 633a054..73e8f77 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -12,201 +12,6 @@ __metadata:
···
"@otplib/core@npm:^12.0.1":
version: 12.0.1
resolution: "@otplib/core@npm:12.0.1"
-
@@ -1197,186 +979,121 @@ __metadata:
+
@@ -1197,186 +979,129 @@ __metadata:
languageName: node
linkType: hard
···
- resolution: "@prisma/client@npm:5.6.0"
- dependencies:
- "@prisma/engines-version": 5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee
-
+"@prisma/client@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/client@npm:6.0.1"
+
+"@prisma/client@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/client@npm:6.3.0"
peerDependencies:
prisma: "*"
+
+ typescript: ">=5.1.0"
peerDependenciesMeta:
prisma:
optional: true
- checksum: 51abfba1c066ff6a79d5c6aad5eed6bdde6fbafa5a1d6e17f3aa2b0f8ed55541079b2526bc0372158953d1146c8dd9c6fbcd137cf7fb2ace1022b02cc55675ab
-
+ checksum: a860cba31cd69fb845af0c2e6c461847e66560a2719d7786f1d3bd8de245c99e794aee7e94f1f8339d307161f57070dc6ef138283a57b5d92077f39e96ca40ba
+
+ typescript:
+
+ optional: true
+
+ checksum: 1f4cd89653cc96b3d6de7c7711e041e1fea9cca0b0af7b46d55159a9b4006d53aaec325eb52dfb4561a0a1fae471490f960695e8287a506764475f8383a55316
languageName: node
linkType: hard
-"@prisma/debug@npm:5.6.0":
- version: 5.6.0
- resolution: "@prisma/debug@npm:5.6.0"
-
+"@prisma/debug@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/debug@npm:6.0.1"
-
+ checksum: 526e0115ab9f6e6e357a92a29ff605fbf1152ab98d8663036ed7a4ac19c6e4e75932f6135bf00fc331c04612706e08ba5ebb7f96bbdad9c009fed856aad39499
+
+"@prisma/debug@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/debug@npm:6.3.0"
+
+ checksum: 148bbdf9555b8636cb876ff03b287dd048a0c0a4aa848a4bd53021227953c6e8d84bf43604123c43f768ed3f52134680aca2026e67340dad05ac1474699e3e5e
+ languageName: node
+ linkType: hard
+
-
+"@prisma/engines-version@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e":
-
+ version: 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e
-
+ resolution: "@prisma/engines-version@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e"
-
+ checksum: 0921f3435767deb611c86c5f1f92ca2752310f477e3ef9eecfbe5ec26613d45b0e321df10c22e3fea1272e78ace4ea093dcc6843a0c11cc6334d51682fc12be2
+
+"@prisma/engines-version@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0":
+
+ version: 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0
+
+ resolution: "@prisma/engines-version@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0"
+
+ checksum: 545baff9f8bec9d43a1a3a280f87c9565562d885c2c28c03179c93626fca106f74a8f4f53a14fadb2664aea7748a871e4742986a494af0a9c219905dfdf0dda7
+ languageName: node
+ linkType: hard
+
-
+"@prisma/engines@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/engines@npm:6.0.1"
+
+"@prisma/engines@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/engines@npm:6.3.0"
dependencies:
- "@types/debug": 4.1.12
- debug: 4.3.4
- strip-ansi: 6.0.1
- checksum: 8244201d8e9f479fe4697f4f38c70f628e96c1d64e9331ea436ce79a79159cd358a0bec95668c941db86a3462474148f89ad19c7f5bae28a6178cd9c61f3a6d4
-
+ "@prisma/debug": 6.0.1
-
+ "@prisma/engines-version": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e
-
+ "@prisma/fetch-engine": 6.0.1
-
+ "@prisma/get-platform": 6.0.1
-
+ checksum: a61bdb842fa86a44337d876e14e9f903862d9d7eb133e30a217b94da1b0d839cbfc82532e738194ccf045a9aa452f19c1328ac6782076a83df71839e9fc5573b
+
+ "@prisma/debug": 6.3.0
+
+ "@prisma/engines-version": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0
+
+ "@prisma/fetch-engine": 6.3.0
+
+ "@prisma/get-platform": 6.3.0
+
+ checksum: f19720bbbe2a0e0498d92e889f0c4e02796559b6f5322a0aa514606a2a44cdcdc8a0ac6512ad73ff7bd9adbca189f4ebd3bfd29997ed5ad9e5b05a03cb02a414
languageName: node
linkType: hard
···
-"@prisma/fetch-engine@npm:5.6.0":
- version: 5.6.0
- resolution: "@prisma/fetch-engine@npm:5.6.0"
-
+"@prisma/fetch-engine@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/fetch-engine@npm:6.0.1"
+
+"@prisma/fetch-engine@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/fetch-engine@npm:6.3.0"
dependencies:
- "@prisma/debug": 5.6.0
- "@prisma/get-platform": 5.6.0
···
- temp-dir: 2.0.0
- tempy: 1.0.1
- checksum: 53c7a90e3e578fd1e8971253ae9d92495464a9526235b96b461c93fd7b718c8712620f0ad3d9b633cb0e187af86a1f786d64888c3af0bebdc4cc9b0937fb7bfb
-
+ "@prisma/debug": 6.0.1
-
+ "@prisma/engines-version": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e
-
+ "@prisma/get-platform": 6.0.1
-
+ checksum: ab4196aceb843ad81a888a44db674fba32c1af70cafcfb0f5987fe3eb7c4441de901b05e7ffbb1d6c5c3c33df79bc646f2d721c36c75e90799cd7133a7b15651
+
+ "@prisma/debug": 6.3.0
+
+ "@prisma/engines-version": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0
+
+ "@prisma/get-platform": 6.3.0
+
+ checksum: 0e9a34334cbd59480223d2773b731a74b3a4e84d60d44f5cd131c31d0853c15300eec4da4890d4e8ba7b523a988946536e2d887a40fca4d4cbe9a7c4c6394e06
languageName: node
linkType: hard
-"@prisma/generator-helper@npm:5.6.0":
- version: 5.6.0
- resolution: "@prisma/generator-helper@npm:5.6.0"
-
+"@prisma/generator-helper@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/generator-helper@npm:6.0.1"
+
+"@prisma/generator-helper@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/generator-helper@npm:6.3.0"
dependencies:
- "@prisma/debug": 5.6.0
- "@types/cross-spawn": 6.0.5
- cross-spawn: 7.0.3
- kleur: 4.1.5
- checksum: b61af3b6e620bb72f1ddde3b6d90954f9707100a4eb6125f7c585fc9db0a26d23c8698bb8d2796893930e066fed9cfba526e23abce5da2f4b13b65f7904aea1d
-
+ "@prisma/debug": 6.0.1
-
+ checksum: abbfbeba06c9d038dae79ab347ed625ee60666a24ff04108536eca2cf05fd6096e69af3e3afb8a1f4d283d9a47ac594e4e1edfdc5c1d84959a1e5ed94b1323c5
+
+ "@prisma/debug": 6.3.0
+
+ checksum: 5c87ea6a2c4c8c3ccee1176f08d768e661272356f4d928d8e887c71336cb8e97c2a050d423dfdc4d1d33ca35fa47a4a65b8be46d36bf83be60c606d04a01829d
languageName: node
linkType: hard
-"@prisma/get-platform@npm:5.6.0":
- version: 5.6.0
- resolution: "@prisma/get-platform@npm:5.6.0"
-
+"@prisma/get-platform@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/get-platform@npm:6.0.1"
+
+"@prisma/get-platform@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/get-platform@npm:6.3.0"
dependencies:
- "@prisma/debug": 5.6.0
- escape-string-regexp: 4.0.0
···
- terminal-link: 2.1.1
- ts-pattern: 5.0.5
- checksum: 691344e7c42ca7346dca3ea21293b36b34ff1688a3fb6f45405fc0119e4b55272f5bbb7e4f8556a0ba6308e52fe4b3f0dc0157c2c3399e8cd7d0028ae3568d22
-
+ "@prisma/debug": 6.0.1
-
+ checksum: 6aae982e6f4f8b89dcaf2da77b9aeede6853b28364d62c8bfd0912c324e0ec664810dc32cd69971c1f8df24d95f0d3f8edd455e240d810d3f0db4bd592fc1d4a
+
+ "@prisma/debug": 6.3.0
+
+ checksum: 6970d4bbf4ee82e6193e16615f57c242105d80708a2769a89b8b9dfda280b6dd994dbf5447088ce2d0fd74ea17a42402b485ab9b67e8bb02007df27a786566d1
languageName: node
linkType: hard
-"@prisma/internals@npm:^5.1.1":
- version: 5.6.0
- resolution: "@prisma/internals@npm:5.6.0"
-
+"@prisma/internals@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/internals@npm:6.0.1"
+
+"@prisma/internals@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/internals@npm:6.3.0"
dependencies:
- "@antfu/ni": 0.21.8
- "@opentelemetry/api": 1.7.0
···
- "@prisma/get-platform": 5.6.0
- "@prisma/prisma-schema-wasm": 5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee
- archiver: 6.0.1
-
+ "@prisma/debug": 6.0.1
-
+ "@prisma/engines": 6.0.1
-
+ "@prisma/fetch-engine": 6.0.1
-
+ "@prisma/generator-helper": 6.0.1
-
+ "@prisma/get-platform": 6.0.1
-
+ "@prisma/prisma-schema-wasm": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e
-
+ "@prisma/schema-files-loader": 6.0.1
+
+ "@prisma/debug": 6.3.0
+
+ "@prisma/engines": 6.3.0
+
+ "@prisma/fetch-engine": 6.3.0
+
+ "@prisma/generator-helper": 6.3.0
+
+ "@prisma/get-platform": 6.3.0
+
+ "@prisma/prisma-schema-wasm": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0
+
+ "@prisma/schema-files-loader": 6.3.0
arg: 5.0.2
- checkpoint-client: 1.1.27
- cli-truncate: 2.1.0
···
- tmp: 0.2.1
- ts-pattern: 5.0.5
- checksum: 7a2130541a73e06b80f13b9c8ec6b5afb1ee28ee34a896e7c6fb9c057609159526f7152169f68e21b7b04d163da6f49332e322d00a3bce765a99e0d0fb339940
-
+ checksum: 01c16a73641b04cf3e0766b82996643d418856d820908ed02e3db072b4522c2a912463f42e236fc831ac8829b5609de9ff0d05ebccd51a7b0d861319b8f387e2
+
+ peerDependencies:
+
+ typescript: ">=5.1.0"
+
+ peerDependenciesMeta:
+
+ typescript:
+
+ optional: true
+
+ checksum: 33c642e7b2b873fdbf99be39a407c1bb778dce8fcf9d138e9de58f2b4f1dae524142cf8c3ab52d52435628b4a14e378a9051edfcff726d38e8e1386a19354604
languageName: node
linkType: hard
-"@prisma/migrate@npm:^5.1.1":
- version: 5.6.0
- resolution: "@prisma/migrate@npm:5.6.0"
-
+"@prisma/migrate@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/migrate@npm:6.0.1"
+
+"@prisma/migrate@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/migrate@npm:6.3.0"
dependencies:
- "@prisma/debug": 5.6.0
- "@prisma/get-platform": 5.6.0
···
- ora: 5.4.1
- pg: 8.11.3
- pkg-up: 3.1.0
-
+ "@prisma/debug": 6.0.1
-
+ "@prisma/engines-version": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e
-
+ "@prisma/generator-helper": 6.0.1
-
+ "@prisma/get-platform": 6.0.1
-
+ "@prisma/internals": 6.0.1
+
+ "@prisma/debug": 6.3.0
+
+ "@prisma/engines-version": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0
+
+ "@prisma/generator-helper": 6.3.0
+
+ "@prisma/get-platform": 6.3.0
+
+ "@prisma/internals": 6.3.0
prompts: 2.4.2
- strip-ansi: 6.0.1
- strip-indent: 3.0.0
···
"@prisma/generator-helper": "*"
"@prisma/internals": "*"
- checksum: 587cf3ffb475d1fe4b8c508de6db88e30ba8adba178ded8c1eee422791eba98b74872e6c4b4125bd4ee4e4669fd14b22d28de44324b405d1257331dcea8733da
-
+ checksum: 5f95c407c7924475711b1cc237b3d7e9dca8d419e1276e8dadb5cc00547a8590c07bf07f00861479dd7fbd396df511c61fe627541ad1ae9d0664aa2d07ccf0b2
+
+ checksum: f9993ebd269bc7b5d99f6a08650a9ea0d70edaa7cae9f79b123ac44066cfa5b77b8ec9bb306b26513867d7eac30086fa695757953cbb29f073b03c3df21f8a79
languageName: node
linkType: hard
···
- version: 5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee
- resolution: "@prisma/prisma-schema-wasm@npm:5.6.0-32.e95e739751f42d8ca026f6b910f5a2dc5adeaeee"
- checksum: 36d7d5f706ffaddac3126d8b153d2ae0b7735f84708929ab1f3ee0d3de18e4bd471a1ddf2ae4fbc449dee04026b5157729ec7708eb96ad0b36e74957f1c3c950
-
+"@prisma/prisma-schema-wasm@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e":
-
+ version: 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e
-
+ resolution: "@prisma/prisma-schema-wasm@npm:5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e"
-
+ checksum: 2ed1d885967832476a695d6f6baeba766ae89f0e40b122a72213d97c343bb1be776634ffab50b2cc012a31e43a492f6c4f1da15509d1ebab85c2352770036d7f
+
+"@prisma/prisma-schema-wasm@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0":
+
+ version: 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0
+
+ resolution: "@prisma/prisma-schema-wasm@npm:6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0"
+
+ checksum: ebfc795e262bb2c151619aca2d4cb65228a5ca8b84b8bceb39601ce35f860d38db63d707ca782851cf666ffbe138b7c0917ab0193ea8ef6a7dd46c50eb6b279f
+ languageName: node
+ linkType: hard
+
-
+"@prisma/schema-files-loader@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "@prisma/schema-files-loader@npm:6.0.1"
+
+"@prisma/schema-files-loader@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "@prisma/schema-files-loader@npm:6.3.0"
+ dependencies:
-
+ "@prisma/prisma-schema-wasm": 5.23.0-27.5dbef10bdbfb579e07d35cc85fb1518d357cb99e
+
+ "@prisma/prisma-schema-wasm": 6.3.0-17.acc0b9dd43eb689cbd20c9470515d719db10d0b0
+ fs-extra: 11.1.1
-
+ checksum: c55d445fbf6b7b6047e2014c939d31478b28457eaa4a48dd4586c8ebf49e72b6973532cef180696c5215d33b8e9031616a35b0717bf72e0f820a1fb9cc41519c
+
+ checksum: 4dbf3600571b19b2fe725e2a2f59c0ae025237e4e2c3a18d99395ce9bc83a9eff628155c3217269f27b90361459084102d77c0162a83a7157ff2d8f78c7641cf
languageName: node
linkType: hard
-
@@ -1614,26 +1331,6 @@ __metadata:
+
@@ -1614,26 +1339,6 @@ __metadata:
languageName: node
linkType: hard
···
"@swc/helpers@npm:0.5.2":
version: 0.5.2
resolution: "@swc/helpers@npm:0.5.2"
-
@@ -1688,20 +1385,6 @@ __metadata:
+
@@ -1688,20 +1393,6 @@ __metadata:
languageName: node
linkType: hard
···
"@types/body-parser@npm:*":
version: 1.19.5
resolution: "@types/body-parser@npm:1.19.5"
-
@@ -1728,15 +1411,6 @@ __metadata:
+
@@ -1728,15 +1419,6 @@ __metadata:
languageName: node
linkType: hard
···
"@types/d3-array@npm:^3.0.3":
version: 3.2.1
resolution: "@types/d3-array@npm:3.2.1"
-
@@ -1806,7 +1480,7 @@ __metadata:
+
@@ -1806,7 +1488,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.1.12
resolution: "@types/debug@npm:4.1.12"
dependencies:
-
@@ -1839,13 +1513,6 @@ __metadata:
+
@@ -1839,13 +1521,6 @@ __metadata:
languageName: node
linkType: hard
···
"@types/hast@npm:^2.0.0":
version: 2.3.8
resolution: "@types/hast@npm:2.3.8"
-
@@ -1972,20 +1639,6 @@ __metadata:
+
@@ -1972,20 +1647,6 @@ __metadata:
languageName: node
linkType: hard
···
"@types/parse-json@npm:^4.0.0":
version: 4.0.2
resolution: "@types/parse-json@npm:4.0.2"
-
@@ -2041,13 +1694,6 @@ __metadata:
+
@@ -2041,13 +1702,6 @@ __metadata:
languageName: node
linkType: hard
···
"@types/scheduler@npm:*":
version: 0.16.6
resolution: "@types/scheduler@npm:0.16.6"
-
@@ -2106,23 +1752,6 @@ __metadata:
+
@@ -2106,23 +1760,6 @@ __metadata:
languageName: node
linkType: hard
···
"@typescript-eslint/eslint-plugin@npm:^6.11.0":
version: 6.11.0
resolution: "@typescript-eslint/eslint-plugin@npm:6.11.0"
-
@@ -2436,15 +2065,6 @@ __metadata:
+
@@ -2436,15 +2073,6 @@ __metadata:
languageName: node
linkType: hard
···
"ansi-regex@npm:^5.0.1":
version: 5.0.1
resolution: "ansi-regex@npm:5.0.1"
-
@@ -2515,35 +2135,6 @@ __metadata:
+
@@ -2515,35 +2143,6 @@ __metadata:
languageName: node
linkType: hard
···
"archy@npm:^1.0.0":
version: 1.0.0
resolution: "archy@npm:1.0.0"
-
@@ -2706,13 +2297,6 @@ __metadata:
+
@@ -2706,13 +2305,6 @@ __metadata:
languageName: node
linkType: hard
···
"async@npm:^3.2.4":
version: 3.2.5
resolution: "async@npm:3.2.5"
-
@@ -2729,13 +2313,6 @@ __metadata:
+
@@ -2729,13 +2321,6 @@ __metadata:
languageName: node
linkType: hard
···
"atomic-sleep@npm:^1.0.0":
version: 1.0.0
resolution: "atomic-sleep@npm:1.0.0"
-
@@ -2844,7 +2421,7 @@ __metadata:
+
@@ -2844,7 +2429,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.1.0
resolution: "bl@npm:4.1.0"
dependencies:
-
@@ -2855,17 +2432,6 @@ __metadata:
+
@@ -2855,17 +2440,6 @@ __metadata:
languageName: node
linkType: hard
···
"block-stream2@npm:^2.1.0":
version: 2.1.0
resolution: "block-stream2@npm:2.1.0"
-
@@ -2919,27 +2485,13 @@ __metadata:
+
@@ -2919,27 +2493,13 @@ __metadata:
languageName: node
linkType: hard
···
"buffer-from@npm:^1.0.0":
version: 1.1.2
resolution: "buffer-from@npm:1.1.2"
-
@@ -2954,13 +2506,6 @@ __metadata:
+
@@ -2954,13 +2514,6 @@ __metadata:
languageName: node
linkType: hard
···
"buffer@npm:^5.5.0":
version: 5.7.1
resolution: "buffer@npm:5.7.1"
-
@@ -3094,7 +2639,7 @@ __metadata:
+
@@ -3094,7 +2647,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.1.2
resolution: "chalk@npm:4.1.2"
dependencies:
-
@@ -3111,20 +2656,6 @@ __metadata:
+
@@ -3111,20 +2664,6 @@ __metadata:
languageName: node
linkType: hard
···
"chokidar@npm:^3.5.1":
version: 3.5.3
resolution: "chokidar@npm:3.5.3"
-
@@ -3158,13 +2689,6 @@ __metadata:
+
@@ -3158,13 +2697,6 @@ __metadata:
languageName: node
linkType: hard
···
"clean-stack@npm:^2.0.0":
version: 2.2.0
resolution: "clean-stack@npm:2.2.0"
-
@@ -3172,32 +2696,6 @@ __metadata:
+
@@ -3172,32 +2704,6 @@ __metadata:
languageName: node
linkType: hard
···
"client-only@npm:0.0.1":
version: 0.0.1
resolution: "client-only@npm:0.0.1"
-
@@ -3216,13 +2714,6 @@ __metadata:
+
@@ -3216,13 +2722,6 @@ __metadata:
languageName: node
linkType: hard
···
"clsx@npm:1.1.1":
version: 1.1.1
resolution: "clsx@npm:1.1.1"
-
@@ -3298,15 +2789,6 @@ __metadata:
+
@@ -3298,15 +2797,6 @@ __metadata:
languageName: node
linkType: hard
···
"comma-separated-tokens@npm:^2.0.0":
version: 2.0.3
resolution: "comma-separated-tokens@npm:2.0.3"
-
@@ -3314,13 +2796,6 @@ __metadata:
+
@@ -3314,13 +2804,6 @@ __metadata:
languageName: node
linkType: hard
···
"commander@npm:^4.0.0":
version: 4.1.1
resolution: "commander@npm:4.1.1"
-
@@ -3335,25 +2810,6 @@ __metadata:
+
@@ -3335,25 +2818,6 @@ __metadata:
languageName: node
linkType: hard
···
"concat-map@npm:0.0.1":
version: 0.0.1
resolution: "concat-map@npm:0.0.1"
-
@@ -3433,25 +2889,6 @@ __metadata:
+
@@ -3433,25 +2897,6 @@ __metadata:
languageName: node
linkType: hard
···
"cross-env@npm:^7.0.3":
version: 7.0.3
resolution: "cross-env@npm:7.0.3"
-
@@ -3464,17 +2901,6 @@ __metadata:
+
@@ -3464,17 +2909,6 @@ __metadata:
languageName: node
linkType: hard
···
"cross-spawn@npm:^6.0.5":
version: 6.0.5
resolution: "cross-spawn@npm:6.0.5"
-
@@ -3488,10 +2914,14 @@ __metadata:
+
@@ -3488,10 +2922,14 @@ __metadata:
languageName: node
linkType: hard
···
languageName: node
linkType: hard
-
@@ -3616,7 +3046,7 @@ __metadata:
+
@@ -3616,7 +3054,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.3.4
resolution: "debug@npm:4.3.4"
dependencies:
-
@@ -3712,16 +3142,7 @@ __metadata:
+
@@ -3712,16 +3150,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 1.1.1
resolution: "define-data-property@npm:1.1.1"
dependencies:
-
@@ -3732,13 +3153,6 @@ __metadata:
+
@@ -3732,13 +3161,6 @@ __metadata:
languageName: node
linkType: hard
···
"define-lazy-prop@npm:^3.0.0":
version: 3.0.0
resolution: "define-lazy-prop@npm:3.0.0"
-
@@ -3757,29 +3171,6 @@ __metadata:
+
@@ -3757,29 +3179,6 @@ __metadata:
languageName: node
linkType: hard
···
"delegates@npm:^1.0.0":
version: 1.0.0
resolution: "delegates@npm:1.0.0"
-
@@ -3787,13 +3178,6 @@ __metadata:
+
@@ -3787,13 +3186,6 @@ __metadata:
languageName: node
linkType: hard
···
"dequal@npm:^2.0.0, dequal@npm:^2.0.3":
version: 2.0.3
resolution: "dequal@npm:2.0.3"
-
@@ -3929,13 +3313,6 @@ __metadata:
+
@@ -3929,13 +3321,6 @@ __metadata:
languageName: node
linkType: hard
···
"dotenv@npm:^16.3.1":
version: 16.3.1
resolution: "dotenv@npm:16.3.1"
-
@@ -3959,15 +3336,6 @@ __metadata:
+
@@ -3959,15 +3344,6 @@ __metadata:
languageName: node
linkType: hard
···
"emoji-regex@npm:^8.0.0":
version: 8.0.0
resolution: "emoji-regex@npm:8.0.0"
-
@@ -4031,7 +3399,7 @@ __metadata:
+
@@ -4031,7 +3407,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.2.1
resolution: "env-paths@npm:2.2.1"
checksum: 65b5df55a8bab92229ab2b40dad3b387fad24613263d103a97f91c9fe43ceb21965cd3392b1ccb5d77088021e525c4e0481adb309625d0cb94ade1d1fb8dc17e
-
@@ -4101,22 +3469,6 @@ __metadata:
+
@@ -4101,22 +3477,6 @@ __metadata:
languageName: node
linkType: hard
···
"es-iterator-helpers@npm:^1.0.12, es-iterator-helpers@npm:^1.0.15":
version: 1.0.15
resolution: "es-iterator-helpers@npm:1.0.15"
-
@@ -4247,13 +3599,6 @@ __metadata:
+
@@ -4247,13 +3607,6 @@ __metadata:
languageName: node
linkType: hard
···
"escape-string-regexp@npm:^1.0.5":
version: 1.0.5
resolution: "escape-string-regexp@npm:1.0.5"
-
@@ -4261,10 +3606,10 @@ __metadata:
+
@@ -4261,10 +3614,10 @@ __metadata:
languageName: node
linkType: hard
···
languageName: node
linkType: hard
-
@@ -4601,14 +3946,14 @@ __metadata:
+
@@ -4601,14 +3954,14 @@ __metadata:
languageName: node
linkType: hard
···
version: 5.1.1
resolution: "execa@npm:5.1.1"
dependencies:
-
@@ -4908,17 +4253,6 @@ __metadata:
+
@@ -4908,17 +4261,6 @@ __metadata:
languageName: node
linkType: hard
···
"find-my-way@npm:^7.7.0":
version: 7.7.0
resolution: "find-my-way@npm:7.7.0"
-
@@ -4937,26 +4271,7 @@ __metadata:
+
@@ -4937,26 +4279,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.1.0
resolution: "find-up@npm:4.1.0"
dependencies:
-
@@ -4966,6 +4281,16 @@ __metadata:
+
@@ -4966,6 +4289,16 @@ __metadata:
languageName: node
linkType: hard
···
"flat-cache@npm:^3.0.4":
version: 3.1.1
resolution: "flat-cache@npm:3.1.1"
-
@@ -5003,17 +4328,6 @@ __metadata:
+
@@ -5003,17 +4336,6 @@ __metadata:
languageName: node
linkType: hard
···
"forwarded@npm:0.2.0":
version: 0.2.0
resolution: "forwarded@npm:0.2.0"
-
@@ -5021,13 +4335,6 @@ __metadata:
+
@@ -5021,13 +4343,6 @@ __metadata:
languageName: node
linkType: hard
···
"fs-constants@npm:^1.0.0":
version: 1.0.0
resolution: "fs-constants@npm:1.0.0"
-
@@ -5046,15 +4353,6 @@ __metadata:
+
@@ -5046,15 +4361,6 @@ __metadata:
languageName: node
linkType: hard
···
"fs-minipass@npm:^2.0.0":
version: 2.1.0
resolution: "fs-minipass@npm:2.1.0"
-
@@ -5080,7 +4378,7 @@ __metadata:
+
@@ -5080,7 +4386,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.3.3
resolution: "fsevents@npm:2.3.3"
dependencies:
-
@@ -5090,7 +4388,7 @@ __metadata:
+
@@ -5090,7 +4396,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.3.3
resolution: "fsevents@patch:fsevents@npm%3A2.3.3#~builtin<compat/fsevents>::version=2.3.3&hash=df0bf1"
dependencies:
-
@@ -5168,13 +4466,6 @@ __metadata:
+
@@ -5168,13 +4474,6 @@ __metadata:
languageName: node
linkType: hard
···
"get-stream@npm:^6.0.0, get-stream@npm:^6.0.1":
version: 6.0.1
resolution: "get-stream@npm:6.0.1"
-
@@ -5290,28 +4581,6 @@ __metadata:
+
@@ -5290,28 +4589,6 @@ __metadata:
languageName: node
linkType: hard
···
"globals@npm:^13.19.0":
version: 13.23.0
resolution: "globals@npm:13.23.0"
-
@@ -5330,7 +4599,7 @@ __metadata:
+
@@ -5330,7 +4607,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 11.1.0
resolution: "globby@npm:11.1.0"
dependencies:
-
@@ -5434,23 +4703,6 @@ __metadata:
+
@@ -5434,23 +4711,6 @@ __metadata:
languageName: node
linkType: hard
···
"hasown@npm:^2.0.0":
version: 2.0.0
resolution: "hasown@npm:2.0.0"
-
@@ -5550,7 +4802,7 @@ __metadata:
+
@@ -5550,7 +4810,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 7.0.0
resolution: "http-proxy-agent@npm:7.0.0"
dependencies:
-
@@ -5560,17 +4812,6 @@ __metadata:
+
@@ -5560,17 +4820,6 @@ __metadata:
languageName: node
linkType: hard
···
"http-response-object@npm:^3.0.1":
version: 3.0.2
resolution: "http-response-object@npm:3.0.2"
-
@@ -5580,16 +4821,6 @@ __metadata:
+
@@ -5580,16 +4829,6 @@ __metadata:
languageName: node
linkType: hard
···
"https-proxy-agent@npm:^5.0.0":
version: 5.0.1
resolution: "https-proxy-agent@npm:5.0.1"
-
@@ -5600,6 +4831,16 @@ __metadata:
+
@@ -5600,6 +4839,16 @@ __metadata:
languageName: node
linkType: hard
···
"human-signals@npm:^2.1.0":
version: 2.1.0
resolution: "human-signals@npm:2.1.0"
-
@@ -5614,7 +4855,7 @@ __metadata:
+
@@ -5614,7 +4863,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 0.6.3
resolution: "iconv-lite@npm:0.6.3"
dependencies:
-
@@ -5630,15 +4871,6 @@ __metadata:
+
@@ -5630,15 +4879,6 @@ __metadata:
languageName: node
linkType: hard
···
"ignore@npm:^5.2.0":
version: 5.2.4
resolution: "ignore@npm:5.2.4"
-
@@ -5670,7 +4902,7 @@ __metadata:
+
@@ -5670,7 +4910,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.0.0
resolution: "indent-string@npm:4.0.0"
checksum: 824cfb9929d031dabf059bebfe08cf3137365e112019086ed3dcff6a0a7b698cb80cf67ccccde0e25b9e2d7527aa6cc1fed1ac490c752162496caba3e6699612
-
@@ -5694,13 +4926,6 @@ __metadata:
+
@@ -5694,13 +4934,6 @@ __metadata:
languageName: node
linkType: hard
···
"ini@npm:~1.3.0":
version: 1.3.8
resolution: "ini@npm:1.3.8"
-
@@ -5867,7 +5092,7 @@ __metadata:
+
@@ -5867,7 +5100,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.2.1
resolution: "is-docker@npm:2.2.1"
bin:
-
@@ -5937,13 +5162,6 @@ __metadata:
+
@@ -5937,13 +5170,6 @@ __metadata:
languageName: node
linkType: hard
···
"is-lambda@npm:^1.0.1":
version: 1.0.1
resolution: "is-lambda@npm:1.0.1"
-
@@ -5981,14 +5199,7 @@ __metadata:
+
@@ -5981,14 +5207,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 3.0.3
resolution: "is-path-inside@npm:3.0.3"
checksum: abd50f06186a052b349c15e55b182326f1936c89a78bf6c8f2b707412517c097ce04bc49a0ca221787bc44e1049f51f09a2ffb63d22899051988d3a618ba13e9
-
@@ -6069,13 +5280,6 @@ __metadata:
+
@@ -6069,13 +5288,6 @@ __metadata:
languageName: node
linkType: hard
···
"is-weakmap@npm:^2.0.1":
version: 2.0.1
resolution: "is-weakmap@npm:2.0.1"
-
@@ -6102,14 +5306,7 @@ __metadata:
+
@@ -6102,14 +5314,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.2.0
resolution: "is-wsl@npm:2.2.0"
dependencies:
-
@@ -6186,13 +5383,6 @@ __metadata:
+
@@ -6186,13 +5391,6 @@ __metadata:
languageName: node
linkType: hard
···
"js-tokens@npm:^3.0.0 || ^4.0.0, js-tokens@npm:^4.0.0":
version: 4.0.0
resolution: "js-tokens@npm:4.0.0"
-
@@ -6211,13 +5401,6 @@ __metadata:
+
@@ -6211,13 +5409,6 @@ __metadata:
languageName: node
linkType: hard
···
"json-buffer@npm:3.0.1":
version: 3.0.1
resolution: "json-buffer@npm:3.0.1"
-
@@ -6300,24 +5483,6 @@ __metadata:
+
@@ -6300,24 +5491,6 @@ __metadata:
languageName: node
linkType: hard
···
"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5":
version: 3.3.5
resolution: "jsx-ast-utils@npm:3.3.5"
-
@@ -6330,55 +5495,6 @@ __metadata:
+
@@ -6330,55 +5503,6 @@ __metadata:
languageName: node
linkType: hard
···
"katex@npm:^0.16.9":
version: 0.16.9
resolution: "katex@npm:0.16.9"
-
@@ -6399,13 +5515,6 @@ __metadata:
+
@@ -6399,13 +5523,6 @@ __metadata:
languageName: node
linkType: hard
···
"kleur@npm:^3.0.3":
version: 3.0.3
resolution: "kleur@npm:3.0.3"
-
@@ -6413,6 +5522,13 @@ __metadata:
+
@@ -6413,6 +5530,13 @@ __metadata:
languageName: node
linkType: hard
···
"klona@npm:^2.0.5":
version: 2.0.6
resolution: "klona@npm:2.0.6"
-
@@ -6436,15 +5552,6 @@ __metadata:
+
@@ -6436,15 +5560,6 @@ __metadata:
languageName: node
linkType: hard
···
"levn@npm:^0.4.1":
version: 0.4.1
resolution: "levn@npm:0.4.1"
-
@@ -6499,16 +5606,6 @@ __metadata:
+
@@ -6499,16 +5614,6 @@ __metadata:
languageName: node
linkType: hard
···
"locate-path@npm:^5.0.0":
version: 5.0.0
resolution: "locate-path@npm:5.0.0"
-
@@ -6527,55 +5624,6 @@ __metadata:
+
@@ -6527,55 +5632,6 @@ __metadata:
languageName: node
linkType: hard
···
"lodash.merge@npm:^4.6.2":
version: 4.6.2
resolution: "lodash.merge@npm:4.6.2"
-
@@ -6583,13 +5631,6 @@ __metadata:
+
@@ -6583,13 +5639,6 @@ __metadata:
languageName: node
linkType: hard
···
"lodash.sortby@npm:^4.7.0":
version: 4.7.0
resolution: "lodash.sortby@npm:4.7.0"
-
@@ -6597,35 +5638,13 @@ __metadata:
+
@@ -6597,35 +5646,13 @@ __metadata:
languageName: node
linkType: hard
···
"longest-streak@npm:^3.0.0":
version: 3.1.0
resolution: "longest-streak@npm:3.1.0"
-
@@ -6669,16 +5688,7 @@ __metadata:
+
@@ -6669,16 +5696,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 3.1.0
resolution: "make-dir@npm:3.1.0"
dependencies:
-
@@ -6717,19 +5727,6 @@ __metadata:
+
@@ -6717,19 +5735,6 @@ __metadata:
languageName: node
linkType: hard
···
"markdown-table@npm:^3.0.0":
version: 3.0.3
resolution: "markdown-table@npm:3.0.3"
-
@@ -6944,13 +5941,6 @@ __metadata:
+
@@ -6944,13 +5949,6 @@ __metadata:
languageName: node
linkType: hard
···
"memorystream@npm:^0.3.1":
version: 0.3.1
resolution: "memorystream@npm:0.3.1"
-
@@ -7554,7 +6544,7 @@ __metadata:
+
@@ -7554,7 +6552,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.1.35
resolution: "mime-types@npm:2.1.35"
dependencies:
-
@@ -7584,13 +6574,6 @@ __metadata:
+
@@ -7584,13 +6582,6 @@ __metadata:
languageName: node
linkType: hard
···
"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2":
version: 3.1.2
resolution: "minimatch@npm:3.1.2"
-
@@ -7600,15 +6583,6 @@ __metadata:
+
@@ -7600,15 +6591,6 @@ __metadata:
languageName: node
linkType: hard
···
"minimatch@npm:^9.0.1":
version: 9.0.3
resolution: "minimatch@npm:9.0.3"
-
@@ -7758,81 +6732,6 @@ __metadata:
+
@@ -7758,81 +6740,6 @@ __metadata:
languageName: node
linkType: hard
···
"mri@npm:^1.1.0":
version: 1.2.0
resolution: "mri@npm:1.2.0"
-
@@ -7847,7 +6746,7 @@ __metadata:
+
@@ -7847,7 +6754,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.1.3
resolution: "ms@npm:2.1.3"
checksum: aa92de608021b242401676e35cfa5aa42dd70cbdc082b916da7fb925c542173e36bce97ea3e804923fe92c0ad991434e4a38327e15a1b5b5f945d66df615ae6d
-
@@ -7861,22 +6760,6 @@ __metadata:
+
@@ -7861,22 +6768,6 @@ __metadata:
languageName: node
linkType: hard
···
"multer@npm:^1.4.5-lts.1":
version: 1.4.5-lts.1
resolution: "multer@npm:1.4.5-lts.1"
-
@@ -7929,13 +6812,6 @@ __metadata:
+
@@ -7929,13 +6820,6 @@ __metadata:
languageName: node
linkType: hard
···
"natural-compare@npm:^1.4.0":
version: 1.4.0
resolution: "natural-compare@npm:1.4.0"
-
@@ -7950,13 +6826,6 @@ __metadata:
+
@@ -7950,13 +6834,6 @@ __metadata:
languageName: node
linkType: hard
···
"next@npm:^14.0.3":
version: 14.0.3
resolution: "next@npm:14.0.3"
-
@@ -8028,13 +6897,6 @@ __metadata:
+
@@ -8028,13 +6905,6 @@ __metadata:
languageName: node
linkType: hard
···
"node-addon-api@npm:^6.1.0":
version: 6.1.0
resolution: "node-addon-api@npm:6.1.0"
-
@@ -8053,21 +6915,7 @@ __metadata:
+
@@ -8053,21 +6923,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.7.0
resolution: "node-fetch@npm:2.7.0"
dependencies:
-
@@ -8123,7 +6971,7 @@ __metadata:
+
@@ -8123,7 +6979,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.5.0
resolution: "normalize-package-data@npm:2.5.0"
dependencies:
-
@@ -8142,36 +6990,6 @@ __metadata:
+
@@ -8142,36 +6998,6 @@ __metadata:
languageName: node
linkType: hard
···
"npm-run-all@npm:^4.1.5":
version: 4.1.5
resolution: "npm-run-all@npm:4.1.5"
-
@@ -8334,7 +7152,7 @@ __metadata:
+
@@ -8334,7 +7160,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 5.1.2
resolution: "onetime@npm:5.1.2"
dependencies:
-
@@ -8352,27 +7170,6 @@ __metadata:
+
@@ -8352,27 +7178,6 @@ __metadata:
languageName: node
linkType: hard
···
"open@npm:^9.1.0":
version: 9.1.0
resolution: "open@npm:9.1.0"
-
@@ -8399,23 +7196,6 @@ __metadata:
+
@@ -8399,23 +7204,6 @@ __metadata:
languageName: node
linkType: hard
···
"otplib@npm:^12.0.1":
version: 12.0.1
resolution: "otplib@npm:12.0.1"
-
@@ -8427,16 +7207,7 @@ __metadata:
+
@@ -8427,16 +7215,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.3.0
resolution: "p-limit@npm:2.3.0"
dependencies:
-
@@ -8454,15 +7225,6 @@ __metadata:
+
@@ -8454,15 +7233,6 @@ __metadata:
languageName: node
linkType: hard
···
"p-locate@npm:^4.1.0":
version: 4.1.0
resolution: "p-locate@npm:4.1.0"
-
@@ -8481,7 +7243,7 @@ __metadata:
+
@@ -8481,7 +7251,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.0.0
resolution: "p-map@npm:4.0.0"
dependencies:
-
@@ -8490,23 +7252,6 @@ __metadata:
+
@@ -8490,23 +7260,6 @@ __metadata:
languageName: node
linkType: hard
···
"p-try@npm:^2.0.0":
version: 2.2.0
resolution: "p-try@npm:2.2.0"
-
@@ -8514,13 +7259,6 @@ __metadata:
+
@@ -8514,13 +7267,6 @@ __metadata:
languageName: node
linkType: hard
···
"parent-module@npm:^1.0.0":
version: 1.0.1
resolution: "parent-module@npm:1.0.1"
-
@@ -8559,13 +7297,6 @@ __metadata:
+
@@ -8559,13 +7305,6 @@ __metadata:
languageName: node
linkType: hard
···
"path-exists@npm:^4.0.0":
version: 4.0.0
resolution: "path-exists@npm:4.0.0"
-
@@ -8634,89 +7365,6 @@ __metadata:
+
@@ -8634,89 +7373,6 @@ __metadata:
languageName: node
linkType: hard
···
"picocolors@npm:^1.0.0":
version: 1.0.0
resolution: "picocolors@npm:1.0.0"
-
@@ -8792,24 +7440,6 @@ __metadata:
+
@@ -8792,24 +7448,6 @@ __metadata:
languageName: node
linkType: hard
···
"pngjs@npm:^5.0.0":
version: 5.0.0
resolution: "pngjs@npm:5.0.0"
-
@@ -8846,36 +7476,6 @@ __metadata:
+
@@ -8846,36 +7484,6 @@ __metadata:
languageName: node
linkType: hard
···
"prebuild-install@npm:^7.1.1":
version: 7.1.1
resolution: "prebuild-install@npm:7.1.1"
-
@@ -8932,14 +7532,18 @@ __metadata:
+
@@ -8932,14 +7540,23 @@ __metadata:
languageName: node
linkType: hard
-"prisma@npm:^5.1.1":
- version: 5.6.0
- resolution: "prisma@npm:5.6.0"
-
+"prisma@npm:6.0.1":
-
+ version: 6.0.1
-
+ resolution: "prisma@npm:6.0.1"
+
+"prisma@npm:6.3.0":
+
+ version: 6.3.0
+
+ resolution: "prisma@npm:6.3.0"
dependencies:
- "@prisma/engines": 5.6.0
-
+ "@prisma/engines": 6.0.1
+
+ "@prisma/engines": 6.3.0
+ fsevents: 2.3.3
+
+ peerDependencies:
+
+ typescript: ">=5.1.0"
+ dependenciesMeta:
+ fsevents:
+ optional: true
+
+ peerDependenciesMeta:
+
+ typescript:
+
+ optional: true
bin:
prisma: build/index.js
- checksum: 77b80b89a771c6c218172cfc5b692e65755ba76ec5b6487ea3ac5b5fa05aea47c48a11cb9449517c4bc4770c3737d02fe3db576bd54c6e32fcf39f08607b546e
-
+ checksum: 8c3527e53ee81820d1919bc00dcd5344fe5b01cb8a1d6227a3565f5e82a53de9c1a5cec4db617cf3a01adc0f70fb07ce83857023aac9b023abd7200c8f0fb3c5
+
+ checksum: c34150214b801f8a2783aee596687f9ab26b01b2fbcb441c8e745d090c9fbd98374ee507608032002c17cfaad415d3b0247af16a0953ef9731de6e8f6b9ddd92
languageName: node
linkType: hard
-
@@ -8978,7 +7582,7 @@ __metadata:
+
@@ -8978,7 +7595,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.0.3
resolution: "progress@npm:2.0.3"
checksum: f67403fe7b34912148d9252cb7481266a354bd99ce82c835f79070643bb3c6583d10dbcfda4d41e04bbc1d8437e9af0fb1e1f2135727878f5308682a579429b7
-
@@ -9043,7 +7647,7 @@ __metadata:
+
@@ -9043,7 +7660,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.3.1
resolution: "punycode@npm:2.3.1"
checksum: bb0a0ceedca4c3c57a9b981b90601579058903c62be23c5e8e843d2c2d4148a3ecf029d5133486fb0e1822b098ba8bba09e89d6b21742d02fa26bda6441a6fb2
-
@@ -9308,17 +7912,6 @@ __metadata:
+
@@ -9308,17 +7925,6 @@ __metadata:
languageName: node
linkType: hard
···
"read-pkg@npm:^3.0.0":
version: 3.0.0
resolution: "read-pkg@npm:3.0.0"
-
@@ -9330,18 +7923,6 @@ __metadata:
+
@@ -9330,18 +7936,6 @@ __metadata:
languageName: node
linkType: hard
···
"readable-stream@npm:3, readable-stream@npm:^3.0.2, readable-stream@npm:^3.1.1, readable-stream@npm:^3.4.0, readable-stream@npm:^3.6.0":
version: 3.6.2
resolution: "readable-stream@npm:3.6.2"
-
@@ -9353,7 +7934,7 @@ __metadata:
+
@@ -9353,7 +7947,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.3.8
resolution: "readable-stream@npm:2.3.8"
dependencies:
-
@@ -9368,7 +7949,7 @@ __metadata:
+
@@ -9368,7 +7962,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.4.2
resolution: "readable-stream@npm:4.4.2"
dependencies:
-
@@ -9393,15 +7974,6 @@ __metadata:
+
@@ -9393,15 +7987,6 @@ __metadata:
languageName: node
linkType: hard
···
"readdirp@npm:~3.6.0":
version: 3.6.0
resolution: "readdirp@npm:3.6.0"
-
@@ -9555,13 +8127,6 @@ __metadata:
+
@@ -9555,13 +8140,6 @@ __metadata:
languageName: node
linkType: hard
···
"require-directory@npm:^2.1.1":
version: 2.1.1
resolution: "require-directory@npm:2.1.1"
-
@@ -9604,7 +8169,7 @@ __metadata:
+
@@ -9604,7 +8182,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 1.22.8
resolution: "resolve@npm:1.22.8"
dependencies:
-
@@ -9630,7 +8195,7 @@ __metadata:
+
@@ -9630,7 +8208,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 1.22.8
resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin<compat/resolve>::version=1.22.8&hash=c3c19d"
dependencies:
-
@@ -9656,16 +8221,6 @@ __metadata:
+
@@ -9656,16 +8234,6 @@ __metadata:
languageName: node
linkType: hard
···
"ret@npm:~0.2.0":
version: 0.2.2
resolution: "ret@npm:0.2.2"
-
@@ -9680,13 +8235,6 @@ __metadata:
+
@@ -9680,13 +8248,6 @@ __metadata:
languageName: node
linkType: hard
···
"reusify@npm:^1.0.4":
version: 1.0.4
resolution: "reusify@npm:1.0.4"
-
@@ -9701,7 +8249,7 @@ __metadata:
+
@@ -9701,7 +8262,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 3.0.2
resolution: "rimraf@npm:3.0.2"
dependencies:
-
@@ -9890,7 +8438,7 @@ __metadata:
+
@@ -9890,7 +8451,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 7.5.4
resolution: "semver@npm:7.5.4"
dependencies:
-
@@ -10005,14 +8553,7 @@ __metadata:
+
@@ -10005,14 +8566,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 3.0.7
resolution: "signal-exit@npm:3.0.7"
checksum: a2f098f247adc367dffc27845853e9959b9e88b01cb301658cfe4194352d8d2bb32e18467c786a7fe15f1d44b233ea35633d076d5e737870b7139949d1ab6318
-
@@ -10067,28 +8608,6 @@ __metadata:
+
@@ -10067,28 +8621,6 @@ __metadata:
languageName: node
linkType: hard
···
"smart-buffer@npm:^4.2.0":
version: 4.2.0
resolution: "smart-buffer@npm:4.2.0"
-
@@ -10156,15 +8675,6 @@ __metadata:
+
@@ -10156,15 +8688,6 @@ __metadata:
languageName: node
linkType: hard
···
"spdx-correct@npm:^3.0.0":
version: 3.2.0
resolution: "spdx-correct@npm:3.2.0"
-
@@ -10206,20 +8716,13 @@ __metadata:
+
@@ -10206,20 +8729,13 @@ __metadata:
languageName: node
linkType: hard
···
"ssri@npm:^10.0.0":
version: 10.0.5
resolution: "ssri@npm:10.0.5"
-
@@ -10229,13 +8732,6 @@ __metadata:
+
@@ -10229,13 +8745,6 @@ __metadata:
languageName: node
linkType: hard
···
"streamsearch@npm:^1.1.0":
version: 1.1.0
resolution: "streamsearch@npm:1.1.0"
-
@@ -10260,7 +8756,7 @@ __metadata:
+
@@ -10260,7 +8769,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 4.2.3
resolution: "string-width@npm:4.2.3"
dependencies:
-
@@ -10368,7 +8864,7 @@ __metadata:
+
@@ -10368,7 +8877,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 6.0.1
resolution: "strip-ansi@npm:6.0.1"
dependencies:
-
@@ -10407,15 +8903,6 @@ __metadata:
+
@@ -10407,15 +8916,6 @@ __metadata:
languageName: node
linkType: hard
···
"strip-json-comments@npm:^3.1.1":
version: 3.1.1
resolution: "strip-json-comments@npm:3.1.1"
-
@@ -10514,7 +9001,7 @@ __metadata:
+
@@ -10514,7 +9014,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 7.2.0
resolution: "supports-color@npm:7.2.0"
dependencies:
-
@@ -10523,16 +9010,6 @@ __metadata:
+
@@ -10523,16 +9023,6 @@ __metadata:
languageName: node
linkType: hard
···
"supports-preserve-symlinks-flag@npm:^1.0.0":
version: 1.0.0
resolution: "supports-preserve-symlinks-flag@npm:1.0.0"
-
@@ -10600,7 +9077,7 @@ __metadata:
+
@@ -10600,7 +9090,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 3.1.6
resolution: "tar-stream@npm:3.1.6"
dependencies:
-
@@ -10625,63 +9102,6 @@ __metadata:
+
@@ -10625,63 +9115,6 @@ __metadata:
languageName: node
linkType: hard
···
"text-table@npm:^0.2.0":
version: 0.2.0
resolution: "text-table@npm:0.2.0"
-
@@ -10763,15 +9183,6 @@ __metadata:
+
@@ -10763,15 +9196,6 @@ __metadata:
languageName: node
linkType: hard
···
"to-fast-properties@npm:^2.0.0":
version: 2.0.0
resolution: "to-fast-properties@npm:2.0.0"
-
@@ -10804,15 +9215,6 @@ __metadata:
+
@@ -10804,15 +9228,6 @@ __metadata:
languageName: node
linkType: hard
···
"tr46@npm:~0.0.3":
version: 0.0.3
resolution: "tr46@npm:0.0.3"
-
@@ -10859,13 +9261,6 @@ __metadata:
+
@@ -10859,13 +9274,6 @@ __metadata:
languageName: node
linkType: hard
···
"tsconfig-paths@npm:^3.14.2":
version: 3.14.2
resolution: "tsconfig-paths@npm:3.14.2"
-
@@ -10878,7 +9273,7 @@ __metadata:
+
@@ -10878,7 +9286,7 @@ __metadata:
languageName: node
linkType: hard
···
version: 2.6.2
resolution: "tslib@npm:2.6.2"
checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad
-
@@ -10942,13 +9337,6 @@ __metadata:
+
@@ -10942,13 +9350,6 @@ __metadata:
languageName: node
linkType: hard
···
"type-fest@npm:^0.20.2":
version: 0.20.2
resolution: "type-fest@npm:0.20.2"
-
@@ -10956,27 +9344,6 @@ __metadata:
+
@@ -10956,27 +9357,6 @@ __metadata:
languageName: node
linkType: hard
···
"type-is@npm:^1.6.4":
version: 1.6.18
resolution: "type-is@npm:1.6.18"
-
@@ -11128,15 +9495,6 @@ __metadata:
+
@@ -11128,15 +9508,6 @@ __metadata:
languageName: node
linkType: hard
···
"unist-util-generated@npm:^2.0.0":
version: 2.0.1
resolution: "unist-util-generated@npm:2.0.1"
-
@@ -11349,24 +9707,6 @@ __metadata:
+
@@ -11349,24 +9720,6 @@ __metadata:
languageName: node
linkType: hard
···
"uvu@npm:^0.5.0":
version: 0.5.6
resolution: "uvu@npm:0.5.6"
-
@@ -11466,15 +9806,6 @@ __metadata:
+
@@ -11466,15 +9819,6 @@ __metadata:
languageName: node
linkType: hard
···
"web-encoding@npm:^1.1.5":
version: 1.1.5
resolution: "web-encoding@npm:1.1.5"
-
@@ -11502,23 +9833,6 @@ __metadata:
+
@@ -11502,23 +9846,6 @@ __metadata:
languageName: node
linkType: hard
···
"whatwg-url@npm:^5.0.0":
version: 5.0.0
resolution: "whatwg-url@npm:5.0.0"
-
@@ -11791,17 +10105,6 @@ __metadata:
+
@@ -11791,17 +10118,6 @@ __metadata:
languageName: node
linkType: hard
···
"zipline@workspace:.":
version: 0.0.0-use.local
resolution: "zipline@workspace:."
-
@@ -11817,9 +10120,9 @@ __metadata:
+
@@ -11817,9 +10133,9 @@ __metadata:
"@mantine/notifications": ^6.0.21
"@mantine/prism": ^6.0.21
"@mantine/spotlight": ^6.0.21
- "@prisma/client": ^5.1.1
- "@prisma/internals": ^5.1.1
- "@prisma/migrate": ^5.1.1
-
+ "@prisma/client": 6.0.1
-
+ "@prisma/internals": 6.0.1
-
+ "@prisma/migrate": 6.0.1
+
+ "@prisma/client": 6.3.0
+
+ "@prisma/internals": 6.3.0
+
+ "@prisma/migrate": 6.3.0
"@sapphire/shapeshift": ^3.9.3
"@tabler/icons-react": ^2.41.0
"@tanstack/react-query": ^4.28.0
-
@@ -11859,7 +10162,7 @@ __metadata:
+
@@ -11859,7 +10175,7 @@ __metadata:
npm-run-all: ^4.1.5
otplib: ^12.0.1
prettier: ^3.1.0
- prisma: ^5.1.1
-
+ prisma: 6.0.1
+
+ prisma: 6.3.0
prismjs: ^1.29.0
qrcode: ^1.5.3
react: ^18.2.0
+1 -1
pkgs/development/libraries/nss/generic.nix
···
postInstall = lib.optionalString useP11kit ''
# Replace built-in trust with p11-kit connection
-
ln -sf ${p11-kit}/lib/pkcs11/p11-kit-trust.so $out/lib/libnssckbi.so
+
ln -sf ${p11-kit}/lib/pkcs11/p11-kit-trust${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libnssckbi${stdenv.hostPlatform.extensions.sharedLibrary}
'';
postFixup =
+10 -6
pkgs/development/libraries/science/math/suitesparse/default.nix
···
enableCuda ? config.cudaSupport,
cudaPackages,
openmp ? null,
-
}:
+
}@inputs:
-
stdenv.mkDerivation rec {
+
let
+
stdenv = throw "Use effectiveStdenv instead";
+
effectiveStdenv = if enableCuda then cudaPackages.backendStdenv else inputs.stdenv;
+
in
+
effectiveStdenv.mkDerivation rec {
pname = "suitesparse";
version = "5.13.0";
···
nativeBuildInputs =
[
]
-
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
++ lib.optionals effectiveStdenv.hostPlatform.isDarwin [
fixDarwinDylibNames
]
++ lib.optionals enableCuda [
···
gmp
mpfr
]
-
++ lib.optionals stdenv.cc.isClang [
+
++ lib.optionals effectiveStdenv.cc.isClang [
openmp
]
++ lib.optionals enableCuda [
···
"CUDART_LIB=${lib.getLib cudaPackages.cuda_cudart}/lib/libcudart.so"
"CUBLAS_LIB=${lib.getLib cudaPackages.libcublas}/lib/libcublas.so"
]
-
++ lib.optionals stdenv.hostPlatform.isDarwin [
+
++ lib.optionals effectiveStdenv.hostPlatform.isDarwin [
# Unless these are set, the build will attempt to use `Accelerate` on darwin, see:
# https://github.com/DrTimothyAldenDavis/SuiteSparse/blob/v5.13.0/SuiteSparse_config/SuiteSparse_config.mk#L368
"BLAS=-lblas"
"LAPACK=-llapack"
];
-
env = lib.optionalAttrs stdenv.hostPlatform.isDarwin {
+
env = lib.optionalAttrs effectiveStdenv.hostPlatform.isDarwin {
# Ensure that there is enough space for the `fixDarwinDylibNames` hook to
# update the install names of the output dylibs.
NIX_LDFLAGS = "-headerpad_max_install_names";
+2 -2
pkgs/development/python-modules/awscrt/default.nix
···
buildPythonPackage rec {
pname = "awscrt";
-
version = "0.23.6";
+
version = "0.23.9";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-FMT4E0TseXccmqk4AFlClu5+qknbD7n9FatmKiH634o=";
+
hash = "sha256-eknHs2t4Yl76gcAvRSVWjobTxI9gavCAhd6oYpdF9jQ=";
};
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
+44 -11
pkgs/development/python-modules/beanhub-cli/default.nix
···
buildPythonPackage,
pythonOlder,
pytestCheckHook,
+
+
# dependencies
beancount-black,
beancount-parser,
beanhub-forms,
beanhub-import,
click,
fastapi,
-
httpx,
jinja2,
poetry-core,
+
pydantic-settings,
pydantic,
-
pydantic-core,
-
pydantic-settings,
-
pytz,
pyyaml,
rich,
starlette-wtf,
uvicorn,
+
+
# optional-dependencies
+
attrs,
+
cryptography,
+
httpx,
+
pynacl,
+
python-dateutil,
+
tomli-w,
+
tomli,
+
+
# tests
+
pytest,
+
pytest-asyncio,
+
pytest-httpx,
+
pytest-mock,
}:
buildPythonPackage rec {
pname = "beanhub-cli";
-
version = "2.1.0";
+
version = "2.1.1";
pyproject = true;
disabled = pythonOlder "3.10";
···
owner = "LaunchPlatform";
repo = "beanhub-cli";
tag = version;
-
hash = "sha256-PRhodc0Pjcgx2xjYlBI47JsQ0oLX6hrVLyE58LHoxSw=";
+
hash = "sha256-mGLg6Kgur2LAcujFzO/rkSPAC2t3wR5CO2AeOO0+bFI=";
};
build-system = [ poetry-core ];
···
fastapi
jinja2
pydantic
-
pydantic-core
pydantic-settings
-
pytz
pyyaml
rich
starlette-wtf
uvicorn
-
];
+
] ++ lib.flatten (lib.attrValues optional-dependencies);
+
+
optional-dependencies = rec {
+
login = [
+
attrs
+
httpx
+
python-dateutil
+
tomli
+
tomli-w
+
];
+
connect = [
+
attrs
+
cryptography
+
httpx
+
pynacl
+
python-dateutil
+
tomli
+
tomli-w
+
];
+
};
nativeCheckInputs = [
+
pytest-asyncio
+
pytest-httpx
+
pytest-mock
pytestCheckHook
-
httpx
-
];
+
] ++ lib.flatten (lib.attrValues optional-dependencies);
pythonImportsCheck = [ "beanhub_cli" ];
+2 -2
pkgs/development/python-modules/beanhub-extract/default.nix
···
buildPythonPackage rec {
pname = "beanhub-extract";
-
version = "0.1.3";
+
version = "0.1.5";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "LaunchPlatform";
repo = "beanhub-extract";
tag = version;
-
hash = "sha256-Uw9bSVOpiIALkgA77OrqAcDWcEafVSnp4iILa4Jkykc=";
+
hash = "sha256-L3TM3scBJGlOXXxeJAkiqMkpBmhJZB6b+IQT2DGIfO0=";
};
build-system = [ poetry-core ];
+38
pkgs/development/python-modules/depyf/default.nix
···
+
{
+
lib,
+
buildPythonPackage,
+
fetchPypi,
+
astor,
+
dill,
+
filelock,
+
}:
+
+
buildPythonPackage rec {
+
pname = "depyf";
+
version = "0.18.0";
+
+
src = fetchPypi {
+
inherit pname version;
+
hash = "sha256-uZ8MODvpSa5F1dYG/kRMcfN1tVpXuNayDnhWZw1SEw0=";
+
};
+
+
# don't try to read git commit
+
postPatch = ''
+
substituteInPlace setup.py \
+
--replace-fail 'commit_id = get_git_commit_id()' 'commit_id = None'
+
'';
+
+
propagatedBuildInputs = [
+
astor
+
dill
+
filelock
+
];
+
+
pythonImportCheck = [ "depyf" ];
+
+
meta = with lib; {
+
description = "Decompile python functions, from bytecode to source code";
+
homepage = "https://github.com/thuml/depyf";
+
license = licenses.mit;
+
};
+
}
+2 -2
pkgs/development/python-modules/gftools/default.nix
···
in
buildPythonPackage rec {
pname = "gftools";
-
version = "0.9.76";
+
version = "0.9.77";
pyproject = true;
src = fetchFromGitHub {
owner = "googlefonts";
repo = "gftools";
tag = "v${version}";
-
hash = "sha256-UQcQiPStkXKYAy6yK7K8sjkQiABVuqcGllOYyxUjxfA=";
+
hash = "sha256-j3UeycBq04jy6uKd7HY+wLlmYAbjYbot630qRy/vG60=";
};
postPatch = ''
+34
pkgs/development/python-modules/lightify/default.nix
···
+
{
+
buildPythonPackage,
+
fetchFromGitHub,
+
lib,
+
setuptools,
+
}:
+
+
buildPythonPackage rec {
+
pname = "lightify";
+
version = "1.0.7.3";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "tfriedel";
+
repo = "python-lightify";
+
tag = "v${version}";
+
hash = "sha256-zgDB1Tq4RYIeABZCjCcoB8NGt+ZhQFnFu655OghgpH0=";
+
};
+
+
build-system = [ setuptools ];
+
+
pythonImportsCheck = [ "lightify" ];
+
+
# tests access the network
+
doCheck = false;
+
+
meta = {
+
changelog = "https://github.com/tfriedel/python-lightify/releases/tag/${src.tag}";
+
description = "Library to work with OSRAM Lightify";
+
homepage = "https://github.com/tfriedel/python-lightify";
+
license = lib.licenses.asl20;
+
maintainers = with lib.maintainers; [ dotlambda ];
+
};
+
}
+2 -2
pkgs/development/python-modules/llm/default.nix
···
let
llm = buildPythonPackage rec {
pname = "llm";
-
version = "0.20";
+
version = "0.21";
pyproject = true;
build-system = [ setuptools ];
···
owner = "simonw";
repo = "llm";
tag = version;
-
hash = "sha256-nNwhsdix65i19f7JHvSLydDufP7nAUjV1YYQspsHT8s=";
+
hash = "sha256-gxmhdczgbcvbWJQTy+gek499C/3jm9WL5vKZmaGVWgU=";
};
patches = [ ./001-disable-install-uninstall-commands.patch ];
+2 -2
pkgs/development/python-modules/manim-slides/default.nix
···
}:
buildPythonPackage rec {
pname = "manim-slides";
-
version = "5.4.0";
+
version = "5.4.2";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "jeertmans";
repo = "manim-slides";
tag = "v${version}";
-
hash = "sha256-9BPBjTepb1CdCEk1j471NhndLG5Ai1P81VUV6msQPus=";
+
hash = "sha256-LUnHv6Yr4le7B0OjA9m8s7tCd2OvUsjX0YR+5dv+Bjg=";
};
build-system = [
+29 -9
pkgs/development/python-modules/milc/default.nix
···
lib,
buildPythonPackage,
fetchFromGitHub,
-
appdirs,
argcomplete,
colorama,
halo,
+
platformdirs,
spinners,
types-colorama,
-
nose2,
+
typing-extensions,
+
setuptools,
+
pytestCheckHook,
semver,
}:
buildPythonPackage rec {
pname = "milc";
-
version = "1.8.0";
-
format = "setuptools";
+
version = "1.9.1";
+
pyproject = true;
src = fetchFromGitHub {
owner = "clueboard";
repo = "milc";
-
rev = version;
-
hash = "sha256-DUA79R/pf/arG4diJKaJTSLNdB4E0XnS4NULlqP4h/M=";
+
tag = version;
+
hash = "sha256-byj2mcDxLl7rZEFjAt/g1kHllnVxiTIQaTMG24GeSVc=";
};
-
propagatedBuildInputs = [
-
appdirs
+
postPatch = ''
+
# Needed for tests
+
patchShebangs --build \
+
example \
+
custom_logger \
+
questions \
+
sparkline \
+
hello \
+
passwd_confirm \
+
passwd_complexity \
+
config_source
+
'';
+
+
dependencies = [
argcomplete
colorama
halo
+
platformdirs
spinners
types-colorama
+
typing-extensions
+
];
+
+
build-system = [
+
setuptools
];
nativeCheckInputs = [
-
nose2
+
pytestCheckHook
semver
];
+2 -2
pkgs/development/python-modules/msgraph-sdk/default.nix
···
buildPythonPackage rec {
pname = "msgraph-sdk";
-
version = "1.17.0";
+
version = "1.18.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
owner = "microsoftgraph";
repo = "msgraph-sdk-python";
tag = "v${version}";
-
hash = "sha256-R6HCZBdpHR58d4leS77MIqLX6LOGFppTcFbidrJSrI8=";
+
hash = "sha256-qYlBRXYsZ71B33iwdwgjx/NFBRUF4I/0XCnNZePo/+M=";
};
build-system = [ flit-core ];
+55
pkgs/development/python-modules/nyt-games/default.nix
···
+
{
+
aiohttp,
+
aioresponses,
+
buildPythonPackage,
+
fetchFromGitHub,
+
lib,
+
mashumaro,
+
orjson,
+
poetry-core,
+
pytest-asyncio,
+
pytest-cov-stub,
+
pytestCheckHook,
+
syrupy,
+
yarl,
+
}:
+
+
buildPythonPackage rec {
+
pname = "nyt-games";
+
version = "0.4.4";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "joostlek";
+
repo = "python-nyt-games";
+
tag = "v${version}";
+
hash = "sha256-eMJ96E4sGmekr6mOR30UIZBclH/0xc8AWv3zL1ItKjo=";
+
};
+
+
build-system = [ poetry-core ];
+
+
dependencies = [
+
aiohttp
+
mashumaro
+
orjson
+
yarl
+
];
+
+
pythonImportsCheck = [ "nyt_games" ];
+
+
nativeCheckInputs = [
+
aioresponses
+
pytest-asyncio
+
pytest-cov-stub
+
pytestCheckHook
+
syrupy
+
];
+
+
meta = {
+
changelog = "https://github.com/joostlek/python-nyt-games/releases/tag/${src.tag}";
+
description = "Asynchronous Python client for NYT games";
+
homepage = "https://github.com/joostlek/python-nyt-games";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ dotlambda ];
+
};
+
}
+41
pkgs/development/python-modules/ourgroceries/default.nix
···
+
{
+
aiohttp,
+
beautifulsoup4,
+
buildPythonPackage,
+
fetchFromGitHub,
+
lib,
+
setuptools,
+
}:
+
+
buildPythonPackage rec {
+
pname = "ourgroceries";
+
version = "1.5.4";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "ljmerza";
+
repo = "py-our-groceries";
+
tag = version;
+
hash = "sha256-tlgctQvbR2YzM6Q1A/P1i40LSt4/2hsetlDeO07RBPE=";
+
};
+
+
build-system = [ setuptools ];
+
+
dependencies = [
+
aiohttp
+
beautifulsoup4
+
];
+
+
pythonImportsCheck = [ "ourgroceries" ];
+
+
# tests require credentials
+
doCheck = false;
+
+
meta = {
+
changelog = "https://github.com/ljmerza/py-our-groceries/releases/tag/${src.tag}";
+
description = "Unofficial Python Wrapper for Our Groceries";
+
homepage = "https://github.com/ljmerza/py-our-groceries";
+
license = lib.licenses.mit;
+
maintainers = with lib.maintainers; [ dotlambda ];
+
};
+
}
+2 -2
pkgs/development/python-modules/publicsuffixlist/default.nix
···
buildPythonPackage rec {
pname = "publicsuffixlist";
-
version = "1.0.2.20250127";
+
version = "1.0.2.20250202";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-a2G64r752rlLiUjJQsdLut2CqaLZZB4A5HJlAp6gi5g=";
+
hash = "sha256-zYOlYyR/tJvY9EouLHyVjaK8ELwRBf8cowhsfd6pilI=";
};
build-system = [ setuptools ];
+2 -2
pkgs/development/python-modules/pynrrd/default.nix
···
buildPythonPackage rec {
pname = "pynrrd";
-
version = "1.1.1";
+
version = "1.1.3";
pyproject = true;
disabled = pythonOlder "3.7";
···
owner = "mhe";
repo = pname;
tag = "v${version}";
-
hash = "sha256-B/G46/9Xf1LRu02p0X4/UeW1RYotSXKXRO9VZDPhkNU=";
+
hash = "sha256-qu3s3XswJCUchqYfYMuqIzI4sfeXrttvXSEW9/GSENA=";
};
build-system = [ setuptools ];
+56
pkgs/development/python-modules/pyrail/default.nix
···
+
{
+
aiohttp,
+
buildPythonPackage,
+
fetchFromGitHub,
+
lib,
+
mashumaro,
+
poetry-core,
+
pytest-asyncio,
+
pytestCheckHook,
+
}:
+
+
buildPythonPackage rec {
+
pname = "pyrail";
+
version = "0.4.0";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "tjorim";
+
repo = "pyrail";
+
tag = "v${version}";
+
hash = "sha256-6CE8FrBCVcO88kGwqAMBx9dp5b27oeCm/w1PrEf6a0E=";
+
};
+
+
build-system = [ poetry-core ];
+
+
dependencies = [
+
aiohttp
+
mashumaro
+
] ++ mashumaro.optional-dependencies.orjson;
+
+
pythonImportsCheck = [ "pyrail" ];
+
+
nativeCheckInputs = [
+
pytest-asyncio
+
pytestCheckHook
+
];
+
+
disabledTests = [
+
# tests connect to the internet
+
"test_get_composition"
+
"test_get_connections"
+
"test_get_disturbances"
+
"test_get_liveboard"
+
"test_get_stations"
+
"test_get_vehicle"
+
"test_liveboard_with_date_time"
+
];
+
+
meta = {
+
changelog = "https://github.com/tjorim/pyrail/releases/tag/${src.tag}";
+
description = "Async Python wrapper for the iRail API";
+
homepage = "https://github.com/tjorim/pyrail";
+
license = lib.licenses.asl20;
+
maintainers = with lib.maintainers; [ dotlambda ];
+
};
+
}
+2 -2
pkgs/development/python-modules/python-gitlab/default.nix
···
buildPythonPackage rec {
pname = "python-gitlab";
-
version = "5.3.1";
+
version = "5.6.0";
pyproject = true;
disabled = pythonOlder "3.8";
···
src = fetchPypi {
pname = "python_gitlab";
inherit version;
-
hash = "sha256-yqvLUAIQ9PWe+fj+7E+Z6CHWUqVccuyfW/gg9F/Bcpg=";
+
hash = "sha256-vFMei6PlZBtgQJRF1JGazmiiwYyw7G1I+87WYWuVQWY=";
};
build-system = [ setuptools ];
+4 -5
pkgs/development/python-modules/python-mapnik/default.nix
···
libxml2,
sqlite,
pytestCheckHook,
-
darwin,
sparsehash,
}:
···
"test_passing_pycairo_context_pdf"
"test_pdf_printing"
"test_render_with_scale_factor"
+
"test_raster_warping"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
"test_passing_pycairo_context_png"
···
pythonImportsCheck = [ "mapnik" ];
-
meta = with lib; {
+
meta = {
description = "Python bindings for Mapnik";
-
maintainers = [ ];
homepage = "https://mapnik.org";
-
license = licenses.lgpl21Plus;
-
broken = true; # At 2024-11-13, test_raster_warping fails.
+
license = lib.licenses.lgpl21Plus;
+
maintainers = lib.teams.geospatial.members;
};
}
+2 -2
pkgs/development/python-modules/sqlfmt/default.nix
···
buildPythonPackage rec {
pname = "sqlfmt";
-
version = "0.24.0";
+
version = "0.26.0";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "tconbeer";
repo = "sqlfmt";
tag = "v${version}";
-
hash = "sha256-8TPuFxcZ6ENiPyzSDJPneqvOkPkuFlTYHvbuM842j30=";
+
hash = "sha256-q0pkwuQY0iLzK+Lef6k62UxMKJy592RsJnSZnVYdMa8=";
};
pythonRelaxDeps = [ "platformdirs" ];
+2 -2
pkgs/development/python-modules/stripe/default.nix
···
buildPythonPackage rec {
pname = "stripe";
-
version = "11.4.1";
+
version = "11.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
-
hash = "sha256-fd0lG2ItSQ/lfXhIeFXcn02VsbsRNgfoH9N3A3oTPVo=";
+
hash = "sha256-vD4DWP/CPV7PqKr+wfpPBI7oEHwyN7ywAAPmjIyW+gI=";
};
build-system = [ setuptools ];
+4 -4
pkgs/development/python-modules/tkinter/default.nix
···
src = py;
format = "other";
-
disabled = isPyPy;
-
-
installPhase =
+
# tkinter is included in PyPy, making this package a no-op.
+
installPhase = lib.optionalString (!isPyPy) (
''
# Move the tkinter module
mkdir -p $out/${py.sitePackages}
···
old_rpath=$(patchelf --print-rpath $out/${py.sitePackages}/_tkinter*)
new_rpath=$(sed "s#${py}#${python}#g" <<< "$old_rpath" )
patchelf --set-rpath $new_rpath $out/${py.sitePackages}/_tkinter*
-
'';
+
''
+
);
meta = py.meta // {
# Based on first sentence from https://docs.python.org/3/library/tkinter.html
+2 -2
pkgs/development/python-modules/yoto-api/default.nix
···
buildPythonPackage rec {
pname = "yoto-api";
-
version = "1.24.4";
+
version = "1.24.5";
pyproject = true;
src = fetchFromGitHub {
owner = "cdnninja";
repo = "yoto_api";
tag = "v${version}";
-
hash = "sha256-CZz1zfNoxrySo0cUobk0Sjzk4QjuZxpUczK+FhMKXMU=";
+
hash = "sha256-zgyZpya67cmJb2tz7Ht8G4y78UejVF00kssasZ8F+58=";
};
build-system = [ setuptools ];
+2 -2
pkgs/development/tools/pnpm/default.nix
···
hash = "sha256-hHIWjD4f0L/yh+aUsFP8y78gV5o/+VJrYzO+q432Wo0=";
};
"10" = {
-
version = "10.1.0";
-
hash = "sha256-PuU+kUAR7H8abjqwxYuaAkoFK/4YKVsjtoVn1qal680=";
+
version = "10.2.0";
+
hash = "sha256-cvFjCBIQfIcj61vkUXcl8+E/Cc/Y9xVxzynyPOMYvbc=";
};
};
+10 -4
pkgs/servers/home-assistant/component-packages.nix
···
];
"nmbs" =
ps: with ps; [
-
]; # missing inputs: pyrail
+
pyrail
+
];
"no_ip" =
ps: with ps; [
];
···
];
"nyt_games" =
ps: with ps; [
-
]; # missing inputs: nyt_games
+
nyt-games
+
];
"nzbget" =
ps: with ps; [
]; # missing inputs: pynzbgetapi
···
]; # missing inputs: pyosoenergyapi
"osramlightify" =
ps: with ps; [
-
]; # missing inputs: lightify
+
lightify
+
];
"otbr" =
ps: with ps; [
aiohasupervisor
···
];
"ourgroceries" =
ps: with ps; [
-
]; # missing inputs: ourgroceries
+
ourgroceries
+
];
"overkiz" =
ps: with ps; [
pyoverkiz
···
"nut"
"nws"
"nx584"
+
"nyt_games"
"obihai"
"octoprint"
"ohme"
···
"oralb"
"otbr"
"otp"
+
"ourgroceries"
"overkiz"
"ovo_energy"
"owntracks"
+2 -2
pkgs/servers/home-assistant/custom-components/yoto_ha/package.nix
···
buildHomeAssistantComponent rec {
owner = "cdnninja";
domain = "yoto";
-
version = "1.22.4";
+
version = "1.22.6";
src = fetchFromGitHub {
owner = "cdnninja";
repo = "yoto_ha";
tag = "v${version}";
-
hash = "sha256-4OKiXwluatm/WRO77tK/VE+fnRn7Cvvh4et3SjANJWE=";
+
hash = "sha256-6igIcDGPYUOz5dWZr9TKFmoYoUCsZOpfpESTxYRR67w=";
};
dependencies = [
+4
pkgs/tools/filesystems/ceph/default.nix
···
nasm,
pkg-config,
which,
+
openssl,
# Tests
nixosTests,
···
propagatedBuildInputs = old.propagatedBuildInputs or [ ] ++ [
self.flaky
];
+
# hack: avoid building docs due to incompatibility with current sphinx
+
nativeBuildInputs = [ openssl ]; # old.nativeBuildInputs but without sphinx*
+
outputs = lib.filter (o: o != "doc") old.outputs;
});
# This is the most recent version of `trustme` that's still compatible with `cryptography` 40.
+3 -3
pkgs/tools/misc/shadowenv/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "shadowenv";
-
version = "3.0.1";
+
version = "3.0.3";
src = fetchFromGitHub {
owner = "Shopify";
repo = pname;
rev = version;
-
hash = "sha256-9K04g2DCADkRwjo55rDwVwkvmypqujdN1fqOmHmC09E=";
+
hash = "sha256-ZipFcwTpKKFnQWOPxXg07V71jitG0NSLpGLEzUSsUFA=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-IHg36zgBF7o/O9kL6t54fV6dBJDZLYausM1u8pLR+Mk=";
+
cargoHash = "sha256-KNCucBmYVmIQ/XY+UNV667iWLyiEJDnP/8gAmUHGY+0=";
nativeBuildInputs = [ installShellFiles ];
+16 -11
pkgs/tools/networking/shadowsocks-rust/default.nix
···
-
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security, CoreServices }:
+
{
+
lib,
+
stdenv,
+
fetchFromGitHub,
+
rustPlatform,
+
pkg-config,
+
openssl,
+
}:
rustPlatform.buildRustPackage rec {
pname = "shadowsocks-rust";
-
version = "1.21.2";
+
version = "1.22.0";
src = fetchFromGitHub {
-
rev = "v${version}";
owner = "shadowsocks";
-
repo = pname;
-
hash = "sha256-bvYp25EPKtkuZzplVYK4Cwd0mm4UuyN1LMiDAkgMIAc=";
+
repo = "shadowsocks-rust";
+
tag = "v${version}";
+
hash = "sha256-rufOrNwUp8h0LoBKPyDV63WAYTLJbctWrq5Ghj6ODB4=";
};
useFetchCargoVendor = true;
-
cargoHash = "sha256-TwUIyUEBe+qMKxfPxEGXcNYJmJSNfdcrOBnUbb0N6cs=";
+
cargoHash = "sha256-hdHCpER4qs8W6rMmwys2KhaGDiTWcnntAL3ZeTBgt84=";
nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ];
-
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ]
-
++ lib.optionals stdenv.hostPlatform.isDarwin [ Security CoreServices ];
+
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [ openssl ];
buildFeatures = [
"trust-dns"
-
"local-http-native-tls"
"local-tunnel"
"local-socks4"
"local-redir"
···
# timeouts in sandbox
doCheck = false;
-
meta = with lib; {
+
meta = {
description = "Rust port of Shadowsocks";
homepage = "https://github.com/shadowsocks/shadowsocks-rust";
changelog = "https://github.com/shadowsocks/shadowsocks-rust/raw/v${version}/debian/changelog";
-
license = licenses.mit;
+
license = lib.licenses.mit;
maintainers = [ ];
};
}
+1 -3
pkgs/top-level/all-packages.nix
···
seqdiag = with python3Packages; toPythonApplication seqdiag;
-
shadowsocks-rust = callPackage ../tools/networking/shadowsocks-rust {
-
inherit (darwin.apple_sdk.frameworks) Security CoreServices;
-
};
+
shadowsocks-rust = callPackage ../tools/networking/shadowsocks-rust { };
shellify = haskellPackages.shellify.bin;
+10
pkgs/top-level/python-packages.nix
···
deprecation-alias = callPackage ../development/python-modules/deprecation-alias { };
+
depyf = callPackage ../development/python-modules/depyf { };
+
derpconf = callPackage ../development/python-modules/derpconf { };
desktop-entry-lib = callPackage ../development/python-modules/desktop-entry-lib { };
···
lightgbm = callPackage ../development/python-modules/lightgbm { };
+
lightify = callPackage ../development/python-modules/lightify { };
+
lightning-utilities = callPackage ../development/python-modules/lightning-utilities { };
lightparam = callPackage ../development/python-modules/lightparam { };
···
nxt-python = callPackage ../development/python-modules/nxt-python { };
+
nyt-games = callPackage ../development/python-modules/nyt-games { };
+
plugp100 = callPackage ../development/python-modules/plugp100 {};
python-bugzilla = callPackage ../development/python-modules/python-bugzilla { };
···
otpauth = callPackage ../development/python-modules/otpauth { };
ots-python = callPackage ../development/python-modules/ots-python { };
+
+
ourgroceries = callPackage ../development/python-modules/ourgroceries { };
outcome = callPackage ../development/python-modules/outcome { };
···
pypoint = callPackage ../development/python-modules/pypoint { };
pypoolstation = callPackage ../development/python-modules/pypoolstation { };
+
+
pyrail = callPackage ../development/python-modules/pyrail { };
pyrdfa3 = callPackage ../development/python-modules/pyrdfa3 { };