Merge staging-next into staging

This commit is contained in:
nixpkgs-ci[bot] 2026-06-28 17:11:29 +00:00 committed by GitHub
commit ef5e576fc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
110 changed files with 1023 additions and 657 deletions

View file

@ -56,12 +56,12 @@ body:
description: |
Can [Hydra](https://hydra.nixos.org), Nixpkgs' Continuous Integration system, reproduce this build failure?
Please use the search function in the header bar to locate the last build job for the package in question.
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/src/root/static/images/emojione-red-x-274c.svg" width="20px" align="top" alt="Red X"> icon near the package entry, say '**Yes, Hydra can reproduce this build failure.**'
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/src/root/static/images/emojione-gray-x-2716.svg" width="20px" align="top" alt="Dark Gray X"> icon near the package entry, then the build failure occurs with another package, and you need to track the original failing package by going down the chain of 'Cached failures' until you reach the final package in the failing dependency chain. Once you locate the failing package, re-write this report against that package and say '**Yes, Hydra can reproduce this build failure.**'
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/src/root/static/images/emojione-check-2714.svg" width="20px" align="top" alt="Green Check Mark"> icon near the package entry, then it most likely means it's a local issue with your system. (Maybe you ran out of space?)
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/subprojects/hydra/root/static/images/emojione-red-x-274c.svg" width="20px" align="top" alt="Red X"> icon near the package entry, say '**Yes, Hydra can reproduce this build failure.**'
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/subprojects/hydra/root/static/images/emojione-gray-x-2716.svg" width="20px" align="top" alt="Dark Gray X"> icon near the package entry, then the build failure occurs with another package, and you need to track the original failing package by going down the chain of 'Cached failures' until you reach the final package in the failing dependency chain. Once you locate the failing package, re-write this report against that package and say '**Yes, Hydra can reproduce this build failure.**'
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/subprojects/hydra/root/static/images/emojione-check-2714.svg" width="20px" align="top" alt="Green Check Mark"> icon near the package entry, then it most likely means it's a local issue with your system. (Maybe you ran out of space?)
You can still open a build failure report, but please say '**No, Hydra cannot reproduce this build failure.**' below.
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/src/root/static/images/emojione-question-2754.svg" width="20px" align="top" alt="Gray Question Mark"> icon near the package entry, say '**Hydra is currently rebuilding this package.**'
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/src/root/static/images/emojione-stopsign-1f6d1.svg" width="20px" align="top" alt="Red Stop Sign"> icon near the package entry, then the build job was stopped manually. If this occurs, please coordinate with the [Infrastructure Team](https://matrix.to/#/#infra:nixos.org), and say '**The last build job was manually cancelled.**'
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/subprojects/hydra/root/static/images/emojione-question-2754.svg" width="20px" align="top" alt="Gray Question Mark"> icon near the package entry, say '**Hydra is currently rebuilding this package.**'
- If there's a <img src="https://raw.githubusercontent.com/NixOS/hydra/refs/heads/master/subprojects/hydra/root/static/images/emojione-stopsign-1f6d1.svg" width="20px" align="top" alt="Red Stop Sign"> icon near the package entry, then the build job was stopped manually. If this occurs, please coordinate with the [Infrastructure Team](https://matrix.to/#/#infra:nixos.org), and say '**The last build job was manually cancelled.**'
- If Hydra isn't supposed to build the package at all, say '**Hydra doesnt try to build the package.**'
options:
- "Please select the Hydra Status."

View file

@ -214,6 +214,11 @@
github = "2hexed";
githubId = 54501296;
};
_30350n = {
name = "Max Schlecht";
github = "30350n";
githubId = 34186858;
};
_360ied = {
name = "Brian Zhu";
email = "therealbarryplayer@gmail.com";
@ -28409,6 +28414,12 @@
githubId = 5623227;
name = "Quentin Boyer";
};
tree-sapii = {
email = "supersapiiiiii@gmail.com";
github = "tree-sapii";
githubId = 144389458;
name = "sapii";
};
treemo = {
email = "matthieu.chevrier@treemo.fr";
github = "treemo";

View file

@ -300,6 +300,7 @@ in
serviceConfig = {
Type = "notify";
ExecStart = "${chronyPkg}/bin/chronyd ${toString chronyFlags}";
Restart = "on-failure";
# Proc filesystem
ProcSubset = "pid";

View file

@ -83,7 +83,7 @@ import ../make-test-python.nix (
};
testScript = ''
import os
import subprocess
import shlex
@ -93,7 +93,7 @@ import ../make-test-python.nix (
def cmd(command):
print(f"+{command}")
r = os.system(command)
r = subprocess.run(command, shell=True).returncode
if r != 0:
raise Exception(f"Command {command} failed with exit code {r}")

View file

@ -6,6 +6,7 @@
};
nodes.machine = {
services.mongodb.package = pkgs.mongodb-ce;
services.your_spotify = {
enable = true;
spotifySecretFile = pkgs.writeText "spotifySecretFile" "deadbeef";

View file

@ -36,7 +36,6 @@ stdenv.mkDerivation rec {
# - We need "getLib" instead of default derivation, otherwise it brings gstreamer-bin;
# - without gst-plugins-base it won't even show proper errors in logs;
# - Without gst-plugins-bad it won't find element "vapostproc";
# - gst-vaapi adds "VA-API" to "Encoder type";
# Tip: "could not link appsrc to videoconvert1" can mean a lot of things, enable GST_DEBUG=2 for help.
passthru.obsWrapperArguments =
let
@ -48,7 +47,6 @@ stdenv.mkDerivation rec {
gstreamer
gst-plugins-base
gst-plugins-bad
gst-vaapi
];
# Fix output directory

View file

@ -10,7 +10,7 @@
nodejs,
openssl,
pkg-config,
pnpm_10_29_2,
pnpm_10,
fetchPnpmDeps,
pnpmConfigHook,
rustc,
@ -81,7 +81,7 @@ let
pname
version
;
pnpm = pnpm_10_29_2;
pnpm = pnpm_10;
fetcherVersion = 3;
hash = pnpmHash;
};
@ -91,7 +91,7 @@ let
cargo
nodejs
pnpmConfigHook
pnpm_10_29_2
pnpm_10
rustc
rustc.llvmPackages.lld
rustPlatform.cargoSetupHook

View file

@ -21,19 +21,18 @@
}:
let
description = "Secure and free password manager for all of your devices";
icon = "bitwarden";
electron = electron_39;
in
buildNpmPackage rec {
buildNpmPackage (finalAttrs: {
pname = "bitwarden-desktop";
version = "2026.5.0";
version = "2026.6.0";
src = fetchFromGitHub {
owner = "bitwarden";
repo = "clients";
rev = "desktop-v${version}";
hash = "sha256-R00wt5W4kKmFIODEaGoUqDwfGyHH/2PpiRaC8Gq3d88=";
tag = "desktop-v${finalAttrs.version}";
hash = "sha256-JIIis3wW0cU33ovRQfJi3HlB2YdLZ5IPvueq1dGFbas=";
};
patches = [
@ -49,10 +48,6 @@ buildNpmPackage rec {
];
postPatch = ''
# https://github.com/bitwarden/clients/pull/20480
substituteInPlace package-lock.json apps/desktop/desktop_native/napi/package.json \
--replace-fail '"@napi-rs/cli": "3.5.1"' '"@napi-rs/cli": "3.2.0"'
# remove code under unfree license
rm -r bitwarden_license
@ -78,18 +73,18 @@ buildNpmPackage rec {
];
npmWorkspace = "apps/desktop";
npmDepsFetcherVersion = 2;
npmDepsHash = "sha256-xmb3zwE8/nWpRlUOgTz2UhNRaUA8KW9sHQHA97pjjfg=";
npmDepsFetcherVersion = 3;
npmDepsHash = "sha256-mvFLZwWwIv4PbUwfTWvwZ9JyRoHJSwAA0cT4RXD0/YU=";
cargoDeps = rustPlatform.fetchCargoVendor {
inherit
inherit (finalAttrs)
pname
version
src
cargoRoot
patches
;
hash = "sha256-phvk4t1JKfSYGzm/vm1rT8A0fACHJF/C0WiZ2Lk3cV0=";
hash = "sha256-xyK3+z2yfCG9K5XAB6LNEeyqMRknONi6ZfY/3oko7Z8=";
};
cargoRoot = "apps/desktop/desktop_native";
@ -169,7 +164,7 @@ buildNpmPackage rec {
];
preCheck = ''
pushd ${cargoRoot}
pushd ${finalAttrs.cargoRoot}
cargoCheckType=release
HOME=$(mktemp -d)
'';
@ -223,7 +218,7 @@ buildNpmPackage rec {
name = "bitwarden";
exec = "bitwarden %U";
inherit icon;
comment = description;
comment = finalAttrs.meta.description;
desktopName = "Bitwarden";
categories = [ "Utility" ];
mimeTypes = [ "x-scheme-handler/bitwarden" ];
@ -240,11 +235,14 @@ buildNpmPackage rec {
};
meta = {
changelog = "https://github.com/bitwarden/clients/releases/tag/${src.rev}";
inherit description;
changelog = "https://github.com/bitwarden/clients/releases/tag/${finalAttrs.src.tag}";
description = "Secure and free password manager for all of your devices";
homepage = "https://bitwarden.com";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ amarshall ];
maintainers = with lib.maintainers; [
tree-sapii
amarshall
];
platforms = [
"x86_64-linux"
"aarch64-linux"
@ -253,4 +251,4 @@ buildNpmPackage rec {
];
mainProgram = "bitwarden";
};
}
})

View file

@ -12,16 +12,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "bottom";
version = "0.13.0";
version = "0.14.2";
src = fetchFromGitHub {
owner = "ClementTsang";
repo = "bottom";
tag = finalAttrs.version;
hash = "sha256-UlkdYrfIjZU6N9W3KSZj4Au333DdejQG3TPRu5CjuBE=";
hash = "sha256-0RaMkTmX6figTBjAxoH57330pHpVJJP8br33FxezqB0=";
};
cargoHash = "sha256-bQOhLlnMHFq5O5OUPWGmt00miKJTycBdhDUnfuUWPVk=";
cargoHash = "sha256-wCcc0t8MA0koeGdqVcz4uYKChU7gtHTQ8yqZGNigSxA=";
nativeBuildInputs = [
autoAddDriverRunpath

View file

@ -0,0 +1,50 @@
{
lib,
stdenv,
fetchurl,
installShellFiles,
}:
let
sources = lib.importJSON ./sources.json;
platform =
sources.platforms.${stdenv.hostPlatform.system}
or (throw "Unsupported platform: ${stdenv.hostPlatform.system}");
in
stdenv.mkDerivation (finalAttrs: {
pname = "box-cli";
inherit (sources) version;
strictDeps = true;
__structuredAttrs = true;
src = fetchurl {
url = "https://github.com/ariana-dot-dev/agent-server/releases/download/${sources.tag}/${platform.filename}";
inherit (platform) hash;
};
dontUnpack = true;
nativeBuildInputs = [ installShellFiles ];
installPhase = ''
runHook preInstall
install -Dm755 $src $out/bin/box
runHook postInstall
'';
passthru.updateScript = ./update.sh;
meta = {
description = "CLI for Ascii Box cloud sandboxes";
homepage = "https://ascii.dev";
license = lib.licenses.unfree;
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
maintainers = with lib.maintainers; [ pwnwriter ];
mainProgram = "box";
platforms = lib.attrNames sources.platforms;
};
})

View file

@ -0,0 +1,22 @@
{
"version": "0.1.112",
"tag": "box-cli-v0.1.112-ascii-prod1",
"platforms": {
"x86_64-linux": {
"filename": "box-linux-x64",
"hash": "sha256-DWQNenz/pmFVH5QM554lBk6+RwgOCjCBe7p+ZkHADTI="
},
"aarch64-linux": {
"filename": "box-linux-arm64",
"hash": "sha256-V2Sk6C1ZTRWlYQ2bVQTvK6PU8BkBPkmJMjUAo2Ul6+Q="
},
"x86_64-darwin": {
"filename": "box-darwin-x64",
"hash": "sha256-QI+ecq0O4dkKqdIvkONcYdXsS+EQLFIU35ulKGNSCRE="
},
"aarch64-darwin": {
"filename": "box-darwin-arm64",
"hash": "sha256-cyjMUGkWfNOggvtBfVqCijmcAj0P2SuFQORwg9EWbn0="
}
}
}

View file

@ -0,0 +1,57 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl jq nix
set -euo pipefail
cd "$(dirname "$0")"
channel="ascii-prod"
repo="ariana-dot-dev/agent-server"
old_version=$(jq -r ".version" sources.json)
tag=$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} \
"https://api.github.com/repos/${repo}/git/refs/tags/box-cli-v" \
| jq -r --arg channel "$channel" \
'[.[].ref | select(test($channel)) | ltrimstr("refs/tags/")] | sort_by(split(".")[2] | tonumber) | last')
if [[ -z "$tag" || "$tag" == "null" ]]; then
echo "No box-cli release found for channel $channel"
exit 1
fi
version=$(echo "$tag" | sed -n 's/^box-cli-v\([0-9.]*\)-.*/\1/p')
if [[ "$old_version" == "$version" ]]; then
echo "box-cli is already up to date at $version"
exit 0
fi
echo "Updating box-cli from $old_version to $version"
declare -A platforms=(
[x86_64-linux]="box-linux-x64"
[aarch64-linux]="box-linux-arm64"
[x86_64-darwin]="box-darwin-x64"
[aarch64-darwin]="box-darwin-arm64"
)
sources_tmp="$(mktemp)"
jq -n --arg v "$version" --arg t "$tag" '{version: $v, tag: $t, platforms: {}}' > "$sources_tmp"
for platform in "${!platforms[@]}"; do
filename="${platforms[$platform]}"
url="https://github.com/${repo}/releases/download/${tag}/${filename}"
echo "Fetching hash for $platform ($filename)..."
sha256hash="$(nix-prefetch-url --type sha256 "$url")"
hash="$(nix hash convert --to sri --hash-algo sha256 "$sha256hash")"
jq --arg platform "$platform" \
--arg filename "$filename" \
--arg hash "$hash" \
'.platforms += {($platform): {filename: $filename, hash: $hash}}' \
"$sources_tmp" > "${sources_tmp}.tmp" && mv "${sources_tmp}.tmp" "$sources_tmp"
done
mv "$sources_tmp" sources.json
echo "Updated box-cli to $version (tag: $tag)"

View file

@ -7,16 +7,16 @@
buildGoModule (finalAttrs: {
pname = "brutus";
version = "1.5.1";
version = "1.6.0";
src = fetchFromGitHub {
owner = "praetorian-inc";
repo = "brutus";
tag = "v${finalAttrs.version}";
hash = "sha256-Jk4O0euYvW7e8iwS0zmKAmw4yXMNU0ABovznzv5tXVM=";
hash = "sha256-Kb5+ue83YEHUG6Ezi7e7WmljHUPRXXD7/bT2ypTZVg4=";
};
vendorHash = "sha256-YdnKRxPagV6h22QEEOpC/HNUGfyFyWwIsh2LxMUmMrk=";
vendorHash = "sha256-XpwwFz8PfyTksLD0SomC5BE0tzUL9D/qtBSed4mrsXQ=";
ldflags = [
"-s"

View file

@ -0,0 +1,80 @@
{
lib,
stdenv,
fetchFromGitHub,
cmake,
makeWrapper,
pkg-config,
which,
xxd,
ffmpeg,
libcamera,
live555,
openssl,
v4l-utils,
}:
stdenv.mkDerivation rec {
pname = "camera-streamer";
version = "0.4.2";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "ayufan";
repo = "camera-streamer";
tag = "v${version}";
hash = "sha256-umU8Rp8+wUvQCNK8OpgND/6gPD013SB6sdXSLy5UGAQ=";
fetchSubmodules = true;
};
# not sure why the -Werror isn't being an issue for the project maintainer
# my best guess is it's because the project README specifices
# "Debian Bookworm" as a requirement which provides gcc12 by default
postPatch = ''
sed -i 's|git submodule update.*||' Makefile
substituteInPlace Makefile --replace-warn "-Werror" ""
'';
strictDeps = true;
nativeBuildInputs = [
cmake
makeWrapper
pkg-config
which
xxd
];
buildInputs = [
ffmpeg
libcamera
live555
openssl
];
dontUseCmakeConfigure = true;
makeFlags = [
"GIT_VERSION=${src.tag}"
"GIT_REVISION=${src.rev}"
];
installPhase = ''
runHook preInstall
install -D camera-streamer $out/bin/camera-streamer
wrapProgram $out/bin/camera-streamer --prefix PATH : ${lib.makeBinPath [ v4l-utils ]}
runHook postInstall
'';
meta = {
homepage = "https://github.com/ayufan/camera-streamer";
changelog = "https://github.com/ayufan/camera-streamer/releases/tag/v${version}";
description = "High-performance low-latency camera streamer for Raspberry PI's";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ _30350n ];
platforms = lib.platforms.linux;
mainProgram = "camera-streamer";
};
}

View file

@ -9,16 +9,27 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "cedar";
version = "4.5.1";
version = "4.11.0";
src = fetchFromGitHub {
owner = "cedar-policy";
repo = "cedar";
tag = "v${finalAttrs.version}";
hash = "sha256-f8d7KL1DzEfJqEJ5uwwOJCgePE/frOXIFcXuoybIp2U=";
hash = "sha256-9IJ/AMWOtkNAoBbzTKqUZI87MvHPihdhNBwsmn0qpDA=";
};
cargoHash = "sha256-MK6Zcpf12mGzntEv632kQjH7YOx31QBCmSJHxjE3l1c=";
cargoHash = "sha256-sinfwdi3/ZFmdbxRiUbtmhsVGcJenn82HFu8mJz415I=";
cargoBuildFlags = [
"--bin"
"cedar"
];
cargoTestFlags = finalAttrs.cargoBuildFlags;
preCheck = ''
export TMPDIR="/tmp"
'';
passthru = {
tests.version = testers.testVersion { package = cedar; };

View file

@ -6,13 +6,13 @@
buildGoModule (finalAttrs: {
pname = "chisel";
version = "1.11.6";
version = "1.11.7";
src = fetchFromGitHub {
owner = "jpillora";
repo = "chisel";
tag = "v${finalAttrs.version}";
hash = "sha256-3pLqTOVJfp9MiorObS8I1KHB0MthzzK3oLFz+5emqxE=";
hash = "sha256-VLQsYxd7wMRTrmqO5dGgqmhL/oOQULEIMo4xUaKXG5I=";
};
vendorHash = "sha256-hqHd+62csVjHY2oAvi5fwlI0LbjR/LSDg6b1SMwe8Fw=";

View file

@ -0,0 +1,37 @@
{
lib,
stdenvNoCC,
fetchurl,
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "chromium-hsts-preload-list";
version = "151.0.7891.2";
src = fetchurl {
url = "https://raw.github.com/chromium/chromium/${finalAttrs.version}/net/http/transport_security_state_static.json";
hash = "sha256-YuiotSk0Lf3IHz/UjgCmU/brdB1lszob6DN4DXyjiWU=";
};
dontUnpack = true;
strictDeps = true;
__structuredAttrs = true;
installPhase = ''
runHook preInstall
install -Dm444 $src $out/share/chromium-hsts-preload-list/transport_security_state_static.json
runHook postInstall
'';
passthru.updateScript = ./update.sh;
meta = {
description = "Chromium HSTS preload list";
homepage = "https://www.chromium.org/hsts/";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ schembriaiden ];
platforms = lib.platforms.all;
};
})

View file

@ -0,0 +1,17 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p common-updater-scripts curl jq nix
set -euo pipefail
latest_version=$(
curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/chromium/chromium/tags" \
| jq -r 'map(select(.prerelease | not)) | .[1].name'
)
hash=$(
nix-prefetch-url "https://raw.github.com/chromium/chromium/$latest_version/net/http/transport_security_state_static.json"
)
sri_hash=$(nix hash convert --hash-algo sha256 --to sri "$hash")
cd "$(dirname "$0")/../../../.."
update-source-version chromium-hsts-preload-list "$latest_version" "$sri_hash"

View file

@ -91,7 +91,6 @@ let
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-vaapi
];
gstPluginPath = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0" gstPackages;

View file

@ -64,7 +64,6 @@ rustPlatform.buildRustPackage (finalAttrs: {
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-vaapi
gst_all_1.gstreamer
libayatana-appindicator
openssl

View file

@ -58,6 +58,7 @@ stdenv.mkDerivation (finalAttrs: {
cmakeFlags = [
"-DCMAKE_SKIP_RPATH=ON" # Avoid generating incorrect RPATH
"-DSKIP_BUILD_TESTS=ON" # Perform unit tests in `checkPhase` manually, with one job at a time.
];
strictDeps = true;
@ -99,6 +100,7 @@ stdenv.mkDerivation (finalAttrs: {
runHook preCheck
export QT_QPA_PLATFORM=offscreen
ctest --test-dir "src/unittests" --output-on-failure
./bin/legacytests
runHook postCheck

View file

@ -0,0 +1,12 @@
diff --git a/themes/src/sass/gtk/_common-3.0.scss b/themes/src/sass/gtk/_common-3.0.scss
index 4148a1b4..735905e9 100644
--- a/themes/src/sass/gtk/_common-3.0.scss
+++ b/themes/src/sass/gtk/_common-3.0.scss
@@ -1119,7 +1119,6 @@ dropdown {
> button > box {
border-radius: 0 $modal-radius $modal-radius 0;
- border-spacing: $space-size;
> stack > row.activatable {
&:hover,

View file

@ -23,6 +23,9 @@ stdenvNoCC.mkDerivation {
# remove when merged
# https://github.com/Fausto-Korpsvart/Everforest-GTK-Theme/pull/34
./fix-install-script.patch
# remove when merged
# https://github.com/Fausto-Korpsvart/Everforest-GTK-Theme/pull/35
./gtk3-remove-border-spacing.patch
];
propagatedUserEnvPkgs = [

View file

@ -51,7 +51,7 @@ flutter338.buildFlutterApplication rec {
mpv-unwrapped
gst_all_1.gst-libav
gst_all_1.gst-plugins-base
gst_all_1.gst-vaapi
gst_all_1.gst-plugins-bad
gst_all_1.gstreamer
libunwind
orc

View file

@ -1,75 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
buildGoModule,
nodejs,
pnpm_9,
fetchPnpmDeps,
pnpmConfigHook,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "garage-webui";
version = "1.1.0";
src = fetchFromGitHub {
owner = "khairul169";
repo = "garage-webui";
tag = finalAttrs.version;
hash = "sha256-bqUAhZBSQkWZ1QsgPslEUDwt8NOg25Os0NGlPoyjPL4=";
};
frontend = stdenv.mkDerivation (finalAttrs': {
pname = "${finalAttrs.pname}-frontend";
inherit (finalAttrs) version src;
nativeBuildInputs = [
nodejs
pnpmConfigHook
pnpm_9
];
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs') pname version src;
pnpm = pnpm_9;
fetcherVersion = 3;
hash = "sha256-z/Y9q/SE2c/KYzIOAfATlprjr6NjmmUHQB+ZbO39OK4=";
};
buildPhase = ''
runHook preBuild
pnpm run build
runHook postBuild
'';
installPhase = ''
runHook preInstall
cp -r dist $out/
runHook postInstall
'';
});
preBuild = ''
cp -r ${finalAttrs.frontend} ./ui/dist
'';
modRoot = "./backend";
tags = [ "prod" ];
env.CGO_ENABLED = 0;
vendorHash = "sha256-7z6r6w/SbBlYYHMxm11xFl/QEYZc2KebnOJZRgYRUYk=";
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Simple admin web UI for Garage";
homepage = "https://github.com/khairul169/garage-webui";
changelog = "https://github.com/khairul169/garage-webui/releases/tag/${finalAttrs.version}";
mainProgram = "garage-webui";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ griffi-gh ];
};
})

View file

@ -6,7 +6,7 @@
}:
buildGoModule (finalAttrs: {
pname = "gh-aw";
version = "0.79.8";
version = "0.80.9";
__structuredAttrs = true;
@ -14,10 +14,10 @@ buildGoModule (finalAttrs: {
owner = "github";
repo = "gh-aw";
tag = "v${finalAttrs.version}";
hash = "sha256-n1w235wCvHZs48PWIu3v4qob3SQPt1kMLszHe/7Rcwg=";
hash = "sha256-2BGFKy/X8j0jYQc+W2rLZmZmPgCvZ+QOZweQaAQQJLM=";
};
vendorHash = "sha256-GgDf2Ly8Vs/FTqk3w5yNYn/X1bWyfUBWhfl8QH2WFVg=";
vendorHash = "sha256-jxh8R/X12/QHxZOIKsTvS6FcDQSmJ7RJEvDnJuUr93A=";
subPackages = [ "cmd/gh-aw" ];

View file

@ -11,13 +11,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "glaze";
version = "7.8.2";
version = "7.8.3";
src = fetchFromGitHub {
owner = "stephenberry";
repo = "glaze";
tag = "v${finalAttrs.version}";
hash = "sha256-T0oYGqmF+0gXT4VESN4h1P/rUfV9BGmpvLWp+6BKiFI=";
hash = "sha256-WqtaZ3AVDs1oIfAVQuU63eg+0753LoYfv/pRyG9OMnM=";
};
nativeBuildInputs = [ cmake ];

View file

@ -59,7 +59,6 @@ stdenv.mkDerivation (finalAttrs: {
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-rtsp-server
gst_all_1.gst-vaapi
pipewire
networkmanager
json-glib

View file

@ -16,13 +16,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "guile-hoot";
version = "0.8.0";
version = "0.9.0";
src = fetchFromCodeberg {
owner = "spritely";
repo = "hoot";
tag = "v${finalAttrs.version}";
hash = "sha256-b372dMUsDTa+hYrOwvj+/YcwVP52BCJxwSGRaqSSWZs=";
hash = "sha256-ZzWGdLKiJF9lBKrlX7jCKnPlmWRi1dDB4zrfkIOMpQU=";
};
nativeBuildInputs = [
@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
libs = [ "$out" ] ++ finalAttrs.propagatedBuildInputs;
in
''
cp ./repl/repl.js $out/share/guile-hoot/0.8.0/repl/repl.js
cp ./repl/repl.js $out/share/guile-hoot/${finalAttrs.version}/repl/repl.js
wrapProgram $out/bin/hoot \
--prefix GUILE_LOAD_PATH : ${lib.makeSearchPath guile.siteDir libs} \
--prefix GUILE_LOAD_COMPILED_PATH : ${lib.makeSearchPath guile.siteCcacheDir libs}
@ -62,7 +62,10 @@ stdenv.mkDerivation (finalAttrs: {
meta = {
description = "Scheme to WebAssembly compiler backend for GNU Guile and a general purpose WASM toolchain";
homepage = "https://codeberg.org/spritely/hoot";
license = lib.licenses.asl20;
license = with lib.licenses; [
asl20
lgpl3Plus
];
maintainers = with lib.maintainers; [ jinser ];
platforms = lib.platforms.unix;
mainProgram = "hoot";

View file

@ -4,7 +4,7 @@
stdenv,
fetchFromGitHub,
# Pinned, because our FODs are not guaranteed to be stable between major versions.
pnpm_10_29_2,
pnpm_10,
fetchPnpmDeps,
pnpmConfigHook,
nodejs,
@ -21,7 +21,7 @@
}:
let
pnpm = pnpm_10_29_2;
pnpm = pnpm_10;
legendary = callPackage ./legendary.nix { };
epic-integration = callPackage ./epic-integration.nix { };

View file

@ -2,8 +2,8 @@
lib,
stdenvNoCC,
fetchzip,
installFonts,
}:
stdenvNoCC.mkDerivation rec {
pname = "inter";
version = "4.1";
@ -14,15 +14,13 @@ stdenvNoCC.mkDerivation rec {
hash = "sha256-5vdKKvHAeZi6igrfpbOdhZlDX2/5+UvzlnCQV6DdqoQ=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/share/fonts/truetype
cp Inter.ttc InterVariable*.ttf $out/share/fonts/truetype
runHook postInstall
nativeBuildInputs = [ installFonts ];
postPatch = ''
rm extras/ -rf
'';
dontInstallWebfonts = true;
meta = {
homepage = "https://rsms.me/inter/";
description = "Typeface specially designed for user interfaces";

View file

@ -95,6 +95,10 @@ stdenv.mkDerivation {
scapy
lxml
])
# For office2john.py
++ (with python3Packages; [
olefile
])
++ (with perlPackages; [
# For pass_gen.pl
DigestMD4

View file

@ -52,18 +52,13 @@ stdenv.mkDerivation (finalAttrs: {
];
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version;
inherit (finalAttrs)
pname
version
src
patches
;
pnpm = pnpm_9;
# We need to pass the patched source code, so pnpm sees the patched version
src = stdenv.mkDerivation {
name = "${finalAttrs.pname}-patched-source";
inherit (finalAttrs) src patches;
installPhase = ''
cp -pr --reflink=auto -- . $out
'';
};
fetcherVersion = 3;
hash = "sha256-aT4JPx3iYw4kw8GHXKWMnelSVT0q2S3PK8DgSCQCyKQ=";
};

View file

@ -91,7 +91,6 @@ flutter.buildFlutterApplication {
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-vaapi
gst_all_1.gstreamer
libayatana-appindicator
mpv-unwrapped

View file

@ -11,16 +11,16 @@
buildGoModule (finalAttrs: {
pname = "kcl";
version = "0.12.3";
version = "0.12.4";
src = fetchFromGitHub {
owner = "kcl-lang";
repo = "cli";
rev = "v${finalAttrs.version}";
hash = "sha256-vOdL+It8wY+U0Jt68KPAxMe3th0muaCXlEkuEphCVVY=";
hash = "sha256-jtAfFwgtIP2sJRH4RcGTgVn/S5yvA15q3u2xeWus/8s=";
};
vendorHash = "sha256-NfRVgGtm8w/K0utb3/AlBfT71txpmJlOaFrdqGC8Dkg=";
vendorHash = "sha256-aKXfVDu3uTEeSzs4nVWQMUj+HaVkzk+iTr+lti+Yb6E=";
subPackages = [ "cmd/kcl" ];
@ -51,7 +51,7 @@ buildGoModule (finalAttrs: {
runHook preInstallCheck
set -o pipefail
$out/bin/kcl --version | grep $version
$out/bin/kcl <(echo 'hello = "KCL"') | grep "hello: KCL"
$out/bin/kcl run <(echo 'hello = "KCL"') | grep "hello: KCL"
runHook postInstallCheck
'';

View file

@ -116,7 +116,7 @@ stdenv.mkDerivation (finalAttrs: {
'';
meta = {
description = "Core parser and runner for kulala.nvim";
description = "HTTP client library powering the Kulala toolchain";
homepage = "https://github.com/mistweaverco/kulala-core";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ khaneliman ];

View file

@ -7,6 +7,7 @@
unicode-character-database,
unicode-idna,
publicsuffix-list,
chromium-hsts-preload-list,
cmake,
ninja,
pkg-config,
@ -14,6 +15,7 @@
libavif,
angle, # libEGL
libjxl,
libedit,
libpulseaudio,
libwebp,
libxcrypt,
@ -34,6 +36,8 @@
skia,
nixosTests,
unstableGitUpdater,
_experimental-update-script-combinators,
common-updater-scripts,
libtommath,
sdl3,
icu78,
@ -42,18 +46,18 @@
stdenv.mkDerivation (finalAttrs: {
pname = "ladybird";
version = "0-unstable-2026-05-04";
version = "0-unstable-2026-06-05";
src = fetchFromGitHub {
owner = "LadybirdBrowser";
repo = "ladybird";
rev = "90b790f8702a5d5c5a66ef02f8669da2838ca6e3";
hash = "sha256-BdJ24YtKMv8B6Vvequf9b5qr0S3FfFuphFo78mCIaN4=";
rev = "02b205361dd239e134f434e484b609d1fa5f1938";
hash = "sha256-+CVJjrL1kqT2A7r89F+riiHpMa39rcggqG9SByidUY4=";
};
cargoDeps = rustPlatform.fetchCargoVendor {
inherit (finalAttrs) src;
hash = "sha256-sbNYOdY56+waCVQHbGuvV5jT9EawV2IiGmL1e/O6ZRc=";
hash = "sha256-n0ACVH8NXwe7SIaGFoJ20WIGGR3XjcuLTwPSKGJpT5s=";
};
postPatch = ''
@ -85,6 +89,9 @@ stdenv.mkDerivation (finalAttrs: {
mkdir build/Caches/PublicSuffix
cp ${publicsuffix-list}/share/publicsuffix/public_suffix_list.dat build/Caches/PublicSuffix
mkdir build/Caches/HSTSPreload
cp ${chromium-hsts-preload-list}/share/chromium-hsts-preload-list/transport_security_state_static.json build/Caches/HSTSPreload
'';
nativeBuildInputs = [
@ -109,6 +116,7 @@ stdenv.mkDerivation (finalAttrs: {
libavif
angle # libEGL
libjxl
libedit
libwebp
libxcrypt
mimalloc
@ -176,7 +184,25 @@ stdenv.mkDerivation (finalAttrs: {
nixosTest = nixosTests.ladybird;
};
passthru.updateScript = unstableGitUpdater { };
passthru.updateScript =
let
updateSource = unstableGitUpdater {
hardcodeZeroVersion = true;
};
updateCargoDeps = {
command = [
(lib.getExe' common-updater-scripts "update-source-version")
"ladybird"
"--ignore-same-version"
"--source-key=cargoDeps.vendorStaging"
];
};
in
_experimental-update-script-combinators.sequence [
updateSource
updateCargoDeps
];
meta = {
description = "Browser using the SerenityOS LibWeb engine with a Qt or Cocoa GUI";

View file

@ -11,13 +11,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "level-zero";
version = "1.29.0";
version = "1.31.0";
src = fetchFromGitHub {
owner = "oneapi-src";
repo = "level-zero";
tag = "v${finalAttrs.version}";
hash = "sha256-2OtJoVO8C9E1bf2uQv01O99wtuguINRSX4dCM6S93ns=";
hash = "sha256-/3HVvivHKSwvrrFEU7LHP2H/6bHDBDyI1SVr/3A6Ie0=";
};
nativeBuildInputs = [

View file

@ -2,21 +2,12 @@
lib,
stdenv,
fetchFromGitLab,
fetchurl,
chromium-hsts-preload-list,
autoconf-archive,
autoreconfHook,
pkg-config,
python3,
}:
let
chromium_version = "151.0.7891.2";
hsts_list = fetchurl {
url = "https://raw.github.com/chromium/chromium/${chromium_version}/net/http/transport_security_state_static.json";
hash = "sha256-YuiotSk0Lf3IHz/UjgCmU/brdB1lszob6DN4DXyjiWU=";
};
in
stdenv.mkDerivation rec {
pname = "libhsts";
version = "0.1.0";
@ -39,7 +30,7 @@ stdenv.mkDerivation rec {
postPatch = ''
pushd tests
cp ${hsts_list} transport_security_state_static.json
cp ${chromium-hsts-preload-list}/share/chromium-hsts-preload-list/transport_security_state_static.json .
# strip comments from json
sed 's/^ *\/\/.*$//g' transport_security_state_static.json >hsts.json
popd
@ -53,8 +44,6 @@ stdenv.mkDerivation rec {
python3
];
passthru.updateScript = ./update.sh;
meta = {
description = "Library to easily check a domain against the Chromium HSTS Preload list";
mainProgram = "hsts";

View file

@ -1,14 +0,0 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl jq
set -euo pipefail -x
cd "$(dirname "$0")"
chromium_version=$(curl -s ${GITHUB_TOKEN:+-u ":$GITHUB_TOKEN"} "https://api.github.com/repos/chromium/chromium/tags" | jq -r 'map(select(.prerelease | not)) | .[1].name')
sha256=$(nix-prefetch-url "https://raw.github.com/chromium/chromium/$chromium_version/net/http/transport_security_state_static.json")
hash=$(nix hash convert --to sri "$sha256")
sed -e "0,/chromium_version/s/chromium_version = \".*\"/chromium_version = \"$chromium_version\"/" \
-e "0,/hash/s/hash = \".*\"/sha256 = \"$hash\"/" \
--in-place ./default.nix

View file

@ -27,6 +27,7 @@
gmp,
libdrm,
libpulseaudio,
sndio,
}:
let
fullPath = lib.makeLibraryPath [
@ -53,18 +54,19 @@ let
gmp
libdrm
libpulseaudio
sndio
];
lightworks = stdenv.mkDerivation rec {
version = "2025.1";
rev = "148287";
version = "2025.2";
rev = "56356";
pname = "lightworks";
src =
if stdenv.hostPlatform.system == "x86_64-linux" then
fetchurl {
url = "https://cdn.lwks.com/releases/${version}/lightworks_${version}_r${rev}.deb";
sha256 = "sha256-opYbWzZYim5wqSaxDeGmc10XxFkkE521PDB8OULh7Jc=";
url = "https://cdn.lwks.com/releases/${version}/Lightworks-${version}-${rev}.deb";
sha256 = "sha256-MQsXl10I85qHiOosBEpdrLPq3iIiFlzumQv2R2sXNn8=";
}
else
throw "${pname}-${version} is not supported on ${stdenv.hostPlatform.system}";
@ -125,6 +127,7 @@ buildFHSEnv {
antonxy
vojta001
kashw2
tombert
];
platforms = [ "x86_64-linux" ];
};

View file

@ -12,7 +12,7 @@
buildNpmPackage (finalAttrs: {
pname = "matterjs-server";
version = "1.1.1";
version = "1.1.2";
__structuredAttrs = true;
strictDeps = true;
@ -20,10 +20,10 @@ buildNpmPackage (finalAttrs: {
owner = "matter-js";
repo = "matterjs-server";
tag = "v${finalAttrs.version}";
hash = "sha256-1BbAPTu9YFSYuZh7sIa1mpAGJtyWB3NWxls8zindmso=";
hash = "sha256-+ICWKZAcKwfd72eWUwmM7XmCwC4F6P+o1JsHNK2+ROE=";
};
npmDepsHash = "sha256-FcGjEOpXMaB4GQGcFfOgFwXrkbGKb8q55j95x+m+lxQ=";
npmDepsHash = "sha256-L1G8/Y23deIjA4azMFLn+ZS95sKoRPSR1O7R8kZF5MU=";
nativeBuildInputs = [
makeBinaryWrapper

View file

@ -6,13 +6,13 @@
buildGoModule (finalAttrs: {
pname = "mcp-grafana";
version = "0.16.0";
version = "0.17.0";
src = fetchFromGitHub {
owner = "grafana";
repo = "mcp-grafana";
tag = "v${finalAttrs.version}";
hash = "sha256-/K7m+VexScHppGuxKsGpz18WmJ3Xphmk2/nCHphwL1o=";
hash = "sha256-uAVqmLGZzD1CMXIw/eYGh/15W2jDS8Iwr5jClRSuCyQ=";
};
vendorHash = "sha256-E7Uh5nG6elUhEa+4RCtgGrle0Py6TjRc+OOvjtik1D8=";

View file

@ -23,7 +23,7 @@
stdenv.mkDerivation (finalAttrs: {
pname = "nextcloud-client";
version = "33.0.5";
version = "33.0.6";
outputs = [
"out"
@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: {
owner = "nextcloud-releases";
repo = "desktop";
tag = "v${finalAttrs.version}";
hash = "sha256-YRaND3JdZQZGtuNfthliyqcPvpC742h4C6l3HBbYorI=";
hash = "sha256-jIK8LszlX19KrhP0u1BNwBxujMg2/lEuYqWWNRMkoiE=";
};
patches = [

View file

@ -2,9 +2,12 @@
lib,
stdenv,
fetchurl,
fstrm,
libevent,
openssl,
pkg-config,
protobuf,
protobufc,
systemdMinimal,
nixosTests,
config,
@ -14,37 +17,42 @@
bind8Stats ? config.nsd.bind8Stats or false,
checking ? config.nsd.checking or false,
ipv6 ? config.nsd.ipv6 or true,
mmap ? config.nsd.mmap or false,
minimalResponses ? config.nsd.minimalResponses or true,
mmap ? config.nsd.mmap or false,
nsec3 ? config.nsd.nsec3 or true,
ratelimit ? config.nsd.ratelimit or false,
recvmmsg ? config.nsd.recvmmsg or false,
rootServer ? config.nsd.rootServer or false,
rrtypes ? config.nsd.rrtypes or false,
zoneStats ? config.nsd.zoneStats or false,
withDnstap ? true,
withSystemd ? config.nsd.withSystemd or (lib.meta.availableOn stdenv.hostPlatform systemdMinimal),
configFile ? config.nsd.configFile or "/etc/nsd/nsd.conf",
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nsd";
version = "4.12.0";
version = "4.14.3";
src = fetchurl {
url = "https://www.nlnetlabs.nl/downloads/nsd/nsd-${finalAttrs.version}.tar.gz";
hash = "sha256-+ezCz3m6UFgPLfYpGO/EQAhMW/EQV9tEwZqpZDzUteg=";
hash = "sha256-limtZNnBsBm74iKW1RSNeuZfWIziZaZCR1B0DwUrsSs=";
};
nativeBuildInputs = [
pkg-config
];
]
++ lib.optionals withDnstap [ protobuf ];
buildInputs = [
libevent
openssl
]
++ lib.optionals withSystemd [
systemdMinimal
++ lib.optionals withSystemd [ systemdMinimal ]
++ lib.optionals withDnstap [
fstrm
# NSD links against libprotobuf-c, it's not just a build-time dependency.
protobufc
];
enableParallelBuilding = true;
@ -73,6 +81,7 @@ stdenv.mkDerivation (finalAttrs: {
++ edf rootServer "root-server"
++ edf rrtypes "draft-rrtypes"
++ edf zoneStats "zone-stats"
++ edf withDnstap "dnstap"
++ edf withSystemd "systemd"
++ [
"--with-ssl=${openssl.dev}"

View file

@ -1,20 +1,20 @@
From e4449f06a8989ff22947309151855b388c311aed Mon Sep 17 00:00:00 2001
From 0db315c9ca1e8f2144edf020aa4dd309e889d4d1 Mon Sep 17 00:00:00 2001
From: Jared Baur <jaredbaur@fastmail.com>
Date: Mon, 22 Jan 2024 20:42:48 -0800
Subject: [PATCH] Add dlopen discoverer
---
internal/lookup/dlopen.go | 57 ++++++++++++++++++++++++++++++++++++++
internal/lookup/library.go | 3 ++
2 files changed, 60 insertions(+)
create mode 100644 internal/lookup/dlopen.go
pkg/lookup/dlopen.go | 63 +++++++++++++++++++++++++++++++++++++++++++
pkg/lookup/library.go | 1 +
2 files changed, 64 insertions(+)
create mode 100644 pkg/lookup/dlopen.go
diff --git a/internal/lookup/dlopen.go b/internal/lookup/dlopen.go
diff --git a/pkg/lookup/dlopen.go b/pkg/lookup/dlopen.go
new file mode 100644
index 00000000..7cd84522
index 0000000..7af8ca0
--- /dev/null
+++ b/internal/lookup/dlopen.go
@@ -0,0 +1,57 @@
+++ b/pkg/lookup/dlopen.go
@@ -0,0 +1,63 @@
+package lookup
+
+// #cgo LDFLAGS: -ldl
@ -35,11 +35,17 @@ index 00000000..7cd84522
+ file
+}
+
+// NewDlopenLocator creats a locator that can be used for locating libraries
+// NewDlopenLocator creates a locator that can be used for locating libraries
+// through the dlopen mechanism.
+func NewDlopenLocator(opts ...Option) Locator {
+ f := newFileLocator(opts...)
+ d := dlopenLocator{file: *f}
+ o := NewFactory(opts...)
+ f := file{
+ logger: o.logger,
+ filter: o.filter,
+ count: o.count,
+ prefixes: getSearchPrefixes(o.root, o.searchPaths...),
+ }
+ d := dlopenLocator{file: f}
+ return &d
+}
+
@ -72,19 +78,18 @@ index 00000000..7cd84522
+
+ return []string{libAbsolutePath}, nil
+}
diff --git a/internal/lookup/library.go b/internal/lookup/library.go
index 7f5cf7c8..916edde2 100644
--- a/internal/lookup/library.go
+++ b/internal/lookup/library.go
@@ -61,7 +61,10 @@ func NewLibraryLocator(opts ...Option) Locator {
// We construct a symlink locator for expected library locations.
symlinkLocator := NewSymlinkLocator(opts...)
+ dlopenLocator := NewDlopenLocator(opts...)
+
l := First(
+ dlopenLocator,
symlinkLocator,
newLdcacheLocator(opts...),
diff --git a/pkg/lookup/library.go b/pkg/lookup/library.go
index e57bd0e..adeff77 100644
--- a/pkg/lookup/library.go
+++ b/pkg/lookup/library.go
@@ -51,6 +51,7 @@ func NewLibraryLocator(opts ...Option) Locator {
}...),
)
--
l := First(
+ NewDlopenLocator(opts...),
NewSymlinkLocator(opts...),
f.newLdcacheLocator(),
)
--
2.54.0

View file

@ -13,13 +13,13 @@ let
in
buildGoModule (finalAttrs: {
pname = "nvidia-container-toolkit";
version = "1.18.2";
version = "1.19.1";
src = fetchFromGitHub {
owner = "NVIDIA";
repo = "nvidia-container-toolkit";
tag = "v${finalAttrs.version}";
hash = "sha256-OMM7IQ65jPr9I5YUwVR3SXbuARnLjS2GSVq2j4J8uFY=";
hash = "sha256-0ivgJA5JY/17FIoOrOvUF7NjMMu7aXfh39sMQcabCm8=";
};
@ -33,11 +33,15 @@ buildGoModule (finalAttrs: {
patches = [
# This patch causes library lookups to first attempt loading via dlopen
# before falling back to the regular symlink location and ldcache location.
# Required on NixOS, where the driver libraries live outside the ldcache and
# the FHS paths that the upstream locators search. Upstream tried to add an
# equivalent locator but reverted it; tracked in
# https://github.com/NVIDIA/nvidia-container-toolkit/issues/1677
./0001-Add-dlopen-discoverer.patch
];
postPatch = ''
substituteInPlace internal/config/config.go \
substituteInPlace api/config/v1/config.go \
--replace-fail '/usr/bin/nvidia-container-runtime-hook' "$tools/bin/nvidia-container-runtime-hook" \
--replace-fail '/sbin/ldconfig' '${lib.getBin glibc}/sbin/ldconfig'

View file

@ -0,0 +1,56 @@
{
lib,
stdenv,
fetchzip,
unzip,
makeWrapper,
nodejs,
python3,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "open-stage-control-headless";
version = "1.30.3";
src = fetchzip {
url = "https://openstagecontrol.ammd.net/packages/open-stage-control_${finalAttrs.version}_node.zip";
hash = "sha256-ef9433pG+eMFc+7pReE2qA3hK27y5KyiRTPQ2h6Ir8A=";
};
__structuredAttrs = true;
strictDeps = true;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
python3.pkgs.python-rtmidi
];
dontConfigure = true;
dontBuild = true;
sourceRoot = ".";
installPhase = ''
runHook preInstall
mkdir -p "$out/lib/open-stage-control"
cp -r ./source/* "$out/lib/open-stage-control/"
mkdir -p "$out/bin"
makeWrapper ${nodejs}/bin/node "$out/bin/open-stage-control" \
--prefix PYTHONPATH : "$PYTHONPATH" \
--prefix PATH : ${lib.makeBinPath [ python3 ]} \
--add-flags "$out/lib/open-stage-control"
runHook postInstall
'';
meta = {
description = "Libre and modular OSC / MIDI controller";
homepage = "https://openstagecontrol.ammd.net/";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ eymeric ];
platforms = nodejs.meta.platforms;
mainProgram = "open-stage-control";
};
})

View file

@ -20,7 +20,7 @@ stdenvNoCC.mkDerivation (finalAttrs: {
pnpm = pnpm_11;
sourceRoot = "${finalAttrs.src.name}/${finalAttrs.pnpmRoot}";
fetcherVersion = 4;
hash = "sha256-NN5MmWYQgaG4s8+mnLWo8EzOobACOnYhdwt4+/4kz9o=";
hash = "sha256-pQ01vBvC29B5oxDWtt7anI5QtFbvQFFBVamQtA2WTNo=";
};
nativeBuildInputs = [

View file

@ -28,13 +28,13 @@ let
in
buildGoModule (finalAttrs: {
pname = "opencloud";
version = "7.1.0";
version = "7.2.0";
src = fetchFromGitHub {
owner = "opencloud-eu";
repo = "opencloud";
tag = "v${finalAttrs.version}";
hash = "sha256-Lr/YF+vuaBIe6sQ+CeVuqV6BDe9jAIQLTZbCKyvn6As=";
hash = "sha256-GAoDEXk7sBN7N0V/msi/fcJS72RqqlF6Qb5B9hArmvk=";
};
postPatch = ''

View file

@ -10,20 +10,20 @@
}:
stdenvNoCC.mkDerivation (finalAttrs: {
pname = "opencloud-web";
version = "7.1.0";
version = "7.1.2";
src = fetchFromGitHub {
owner = "opencloud-eu";
repo = "web";
tag = "v${finalAttrs.version}";
hash = "sha256-awEGCmdauqHkigXqumOYs8woOyY8gIccmzKOyrZ7SwQ=";
hash = "sha256-zwD/Mn7jL960EVaG3gVqFo6FPPMhQTMz3LKy8ZnOObk=";
};
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version src;
pnpm = pnpm_11;
fetcherVersion = 4;
hash = "sha256-oIVbhvFiVu0S7sSs5u14M0A1+Q1WmiAsyoBt8QtojyE=";
hash = "sha256-YEdZ5B11I6U140qam7e1TMOacRqUeINhr/TI13ddAa0=";
};
nativeBuildInputs = [

View file

@ -37,10 +37,12 @@ buildGoModule (finalAttrs: {
runHook preInstall
install -Dm 644 -t $out/etc/udev/rules.d 99-openlinkhub.rules
install -Dm 755 -t $out/bin $GOPATH/bin/OpenLinkHub
install -Dm 755 -t $out/opt/OpenLinkHub $GOPATH/bin/OpenLinkHub
mkdir -p $out/opt/OpenLinkHub
cp -r {database,static,web} $out/opt/OpenLinkHub
cp -rt $out/opt/OpenLinkHub database static web
mkdir -p $out/bin
ln -st $out/bin $out/opt/OpenLinkHub/OpenLinkHub
runHook postInstall
'';

View file

@ -45,17 +45,13 @@ pythonPackages.buildPythonApplication (finalAttrs: {
++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform qt5.qtwayland) [
qt5.qtwayland
]
++ lib.optionals (pyqt5.multimediaEnabled) (
[
qt5.qtmultimedia.bin
gst_all_1.gst-libav
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
]
++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform gst_all_1.gst-vaapi) [
gst_all_1.gst-vaapi
]
);
++ lib.optionals (pyqt5.multimediaEnabled) [
qt5.qtmultimedia.bin
gst_all_1.gst-libav
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
];
pythonRelaxDeps = lib.optionals stdenv.hostPlatform.isDarwin [
# Should be resolved in the next version

View file

@ -74,7 +74,6 @@ stdenv.mkDerivation (finalAttrs: {
gst_all_1.gst-plugins-good
gst_all_1.gst-plugins-bad
gst_all_1.gst-plugins-ugly
gst_all_1.gst-vaapi
glib-networking # For GIO_EXTRA_MODULES. Fixes "TLS support is not available"
];

View file

@ -0,0 +1,126 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
rustPlatform,
pkg-config,
pipewire,
nix-update-script,
stdenv,
}:
rustPlatform.buildRustPackage (
finalAttrs:
let
web = buildNpmPackage {
pname = "${finalAttrs.pname}-web";
inherit (finalAttrs) version src;
sourceRoot = "${finalAttrs.src.name}/web";
npmDepsHash = "sha256-ZX/3H/VdRdWC2j+mPA/0rZflDhslqTN1mqA9vvQRQG0=";
installPhase = ''
runHook preInstall
cp -r dist $out
runHook postInstall
'';
};
in
{
pname = "pipeweaver";
version = "0.1.6";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "pipeweaver";
repo = "pipeweaver";
tag = "v${finalAttrs.version}";
hash = "sha256-wf3gxCLT5vOz+5+CpfmkX0stKoAOpQ6KIoW6xBNV1xk=";
};
cargoHash = "sha256-Jv0fF6keg2NcUnCJhCId7rwPVZK1/Q9+otQNjp54RCI=";
nativeBuildInputs = [
pkg-config
rustPlatform.bindgenHook
];
buildInputs = [
pipewire
];
cargoBuildFlags = [
"--workspace"
"--exclude"
"pipeweaver-app"
"--all-features"
];
cargoTestFlags = [
"--workspace"
"--exclude"
"pipeweaver-app"
"--all-features"
];
postPatch = ''
# Prevent daemon/build.rs from running to prevent impure git and npm calls.
rm daemon/build.rs
substituteInPlace daemon/Cargo.toml --replace-fail 'build = "build.rs"' ""
mkdir -p daemon/web-content
cp -r ${web}/* daemon/web-content/
'';
# Provide GIT_HASH that build.rs would have set
env.GIT_HASH = finalAttrs.src.tag;
installPhase = ''
runHook preInstall
releaseDir=target/${stdenv.hostPlatform.rust.cargoShortTarget}/release
install -Dm755 $releaseDir/pipeweaver-daemon -t $out/bin
install -Dm755 $releaseDir/pipeweaver-client -t $out/bin
install -Dm644 daemon/resources/icons/pipeweaver.png \
$out/share/icons/hicolor/48x48/apps/pipeweaver.png
install -Dm644 daemon/resources/icons/pipeweaver.svg \
$out/share/icons/hicolor/scalable/apps/pipeweaver.svg
install -Dm644 daemon/resources/icons/pipeweaver-large.png \
$out/share/pixmaps/pipeweaver.png
install -Dm644 daemon/resources/desktop/pipeweaver.desktop \
$out/share/applications/pipeweaver.desktop
substituteInPlace $out/share/applications/pipeweaver.desktop \
--replace-fail "Path=/usr/bin" "Path=$out/bin" \
--replace-fail "Exec=/usr/bin/pipeweaver-daemon" "Exec=$out/bin/pipeweaver-daemon"
install -Dm644 README.md $out/share/doc/pipeweaver/README.md
install -Dm644 LICENSE $out/share/licenses/pipeweaver/LICENSE
runHook postInstall
'';
passthru = {
inherit web;
updateScript = nix-update-script {
extraArgs = [
"--subpackage"
"web"
];
};
};
meta = {
description = "Manage streaming audio on Linux through PipeWire with virtual channels, mixing, and routing";
homepage = "https://github.com/pipeweaver/pipeweaver";
license = lib.licenses.mit;
mainProgram = "pipeweaver-daemon";
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ saadndm ];
};
}
)

View file

@ -42,13 +42,13 @@
}:
buildGoModule (finalAttrs: {
pname = "podman";
version = "5.8.3";
version = "5.8.4";
src = fetchFromGitHub {
owner = "containers";
repo = "podman";
tag = "v${finalAttrs.version}";
hash = "sha256-MS5eaGTcCAtEvoQUhGlX8UfoOqNOv0VAoeFxfAvB3Zs=";
hash = "sha256-zhEtMZVKiv1L72EMlwgz8sHpmvhejGp98oW63aPj+rQ=";
};
patches = [
@ -204,5 +204,6 @@ buildGoModule (finalAttrs: {
license = lib.licenses.asl20;
teams = [ lib.teams.podman ];
mainProgram = "podman";
platforms = lib.platforms.linux;
};
})

View file

@ -16,11 +16,14 @@
jq,
versionCheckHook,
nix-update-script,
libGL,
gst_all_1,
qt6,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "project-graph";
version = "3.0.7";
version = "3.0.8";
__structuredAttrs = true;
@ -28,18 +31,25 @@ rustPlatform.buildRustPackage (finalAttrs: {
owner = "graphif";
repo = "project-graph";
tag = "v${finalAttrs.version}";
hash = "sha256-QC1YTcyH7q+TJiGLF7zjKTe1OcfFd74fSFr+23iYMyQ=";
hash = "sha256-VI2elNYYDPJVLE0LIaUJHLeemUHokqHob5oB7jgQOL4=";
};
cargoHash = "sha256-bsRX+iVo2jInWZvrX1fVE2oAqM8L/5zNzjRwtoviQN0=";
cargoHash = "sha256-RFYDFZ3NKr/7OxwgApexGnxR8ZQn09DFYNzhnqVYEzE=";
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version src;
pnpm = pnpm_10;
fetcherVersion = 3;
hash = "sha256-sTThym++UWKpKFZqhQJCewRKtdYe1tKNcESrxyxpLmY=";
hash = "sha256-6s5mv6hcpZUz/N5QNqUC8NamGT/B5Wv7DfY4Jte9jiQ=";
};
preFixup = lib.optionalString stdenv.hostPlatform.isLinux ''
gappsWrapperArgs+=(
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ libGL ]}"
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
)
'';
postPatch = ''
TAURI_CONFIG="app/src-tauri/tauri.conf.json"
if [ -f "$TAURI_CONFIG" ]; then
@ -53,6 +63,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
'';
preBuild = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE $(pkg-config --cflags Qt6WebEngineWidgets)"
pnpm run build
'';
@ -66,10 +77,17 @@ rustPlatform.buildRustPackage (finalAttrs: {
wrapGAppsHook4
];
dontWrapQtApps = true;
buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
glib-networking
openssl
webkitgtk_4_1
libGL
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
qt6.qtbase
qt6.qtwebengine
];
cargoRoot = "app/src-tauri";

View file

@ -56,7 +56,6 @@ python3Packages.buildPythonApplication (finalAttrs: {
gst_all_1.gst-plugins-ugly
(gst_all_1.gst-plugins-good.override { gtkSupport = true; })
gst_all_1.gst-libav
gst_all_1.gst-vaapi
];
doCheck = false; # there are no tests

View file

@ -56,6 +56,11 @@ stdenv.mkDerivation (finalAttrs: {
ELECTRON_SKIP_BINARY_DOWNLOAD = true;
};
postPatch = ''
# Hide update banner
echo "<template></template>" > src/components/banner/ManagerUpdateBanner.vue
'';
buildPhase = ''
runHook preBuild

View file

@ -9,14 +9,14 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rs-lxmf";
version = "1.0.0";
version = "1.0.1";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "ratspeak";
repo = "rsLXMF";
tag = "v${finalAttrs.version}";
hash = "sha256-fqSd+XZayW8mYdUF3MY/KjclvhfHtO1I4y1ot3EbdnA=";
hash = "sha256-VxtuDM34EnDya/OPA9H+ihrAdueczqjXsjQZMYenDIE=";
};
postPatch = ''
@ -26,7 +26,7 @@ rustPlatform.buildRustPackage (finalAttrs: {
done
'';
cargoHash = "sha256-Lv+mxsAtpzjd9tbMioZEH+7rvYVRiPYfD3icgQc+BrU=";
cargoHash = "sha256-qMDqCH2oCZDJ8TQTDtgxooL1Ltn4khVyXr186NfWtKY=";
doInstallCheck = true;
nativeInstallCheckInputs = [ versionCheckHook ];

View file

@ -12,17 +12,17 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rtk";
version = "0.42.4";
version = "0.43.0";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "rtk-ai";
repo = "rtk";
tag = "v${finalAttrs.version}";
hash = "sha256-8nLJ5PVefXmoXQyw6HERfCP06C+l4I+7XLwKFNVNpew=";
hash = "sha256-n5bkPPsrdM4fE5ltocTjlq+JwRgp39yib6S79fci4m4=";
};
cargoHash = "sha256-YsKOyEZ281ojqiitnvCFGy/MzHMyr4hlxqMnvrQwguQ=";
cargoHash = "sha256-XKUKdhxfnwUCOx9slqx4oUFa09HcosPLVh5Xkh87oSk=";
nativeBuildInputs = [
makeWrapper

View file

@ -26,14 +26,14 @@
stdenv.mkDerivation (finalAttrs: {
pname = "s7";
version = "11.8-unstable-2026-05-22";
version = "11.9-unstable-2026-06-27";
src = fetchFromGitLab {
domain = "cm-gitlab.stanford.edu";
owner = "bil";
repo = "s7";
rev = "d8791be9964708ccb98c7cabb39acd2b8f97fdbb";
hash = "sha256-kT2zFadlKc0JWqxnuoQ9hVinGhZb0XOwC3WEVeYcLPw=";
rev = "1416ca232c9154e47235be2378151f9f2beea278";
hash = "sha256-lA4nLtJ6+O5Cn7TQRzZCPhk3oB8qHdpewZE5yM8z4iw=";
};
buildInputs =

View file

@ -1,5 +1,6 @@
{
lib,
git,
stdenv,
fetchurl,
makeDesktopItem,
@ -16,13 +17,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "smartgit";
version = "24.1.5";
version = "26.1.038";
src = fetchurl {
url = "https://www.syntevo.com/downloads/smartgit/smartgit-linux-${
url = "https://download.smartgit.dev/smartgit/smartgit-${
builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version
}.tar.gz";
hash = "sha256-YqueTbwA9KcXEJG5TeWkPzzNyAnnJQ1+VQYsqZKS2/I=";
}-no-git-linux-amd64.tar.gz";
hash = "sha256-XyMdojfyaTS3S3felGRvOOazx1mym/wE3j4GyCU9crc=";
};
nativeBuildInputs = [ wrapGAppsHook3 ];
@ -37,6 +38,7 @@ stdenv.mkDerivation (finalAttrs: {
gappsWrapperArgs+=( \
--prefix PATH : ${
lib.makeBinPath [
git
jre
which
]
@ -103,11 +105,11 @@ stdenv.mkDerivation (finalAttrs: {
SmartGit is a multi-platform Git GUI client, free to use for active Open Source developers and users from academic institutions.
Command line Git is required.
'';
homepage = "https://www.syntevo.com/smartgit/";
changelog = "https://www.syntevo.com/smartgit/changelog-${lib.versions.majorMinor finalAttrs.version}.txt";
homepage = "https://www.smartgit.dev/";
changelog = "https://www.smartgit.dev/changelogs/changelog-${lib.versions.majorMinor finalAttrs.version}.txt";
license = lib.licenses.unfree;
mainProgram = "smartgit";
platforms = lib.platforms.linux;
platforms = [ "x86_64-linux" ];
maintainers = with lib.maintainers; [
jraygauthier
tmssngr

View file

@ -6,16 +6,16 @@
}:
buildGoModule (finalAttrs: {
pname = "terraform-mcp-server";
version = "0.5.2";
version = "1.0.0";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "terraform-mcp-server";
tag = "v${finalAttrs.version}";
hash = "sha256-4NUSMNLWn5Pmwq//M0yHn7qw9oUI4Q3MDXeQ8xBLLSI=";
hash = "sha256-0+TjwCDiuNAM6MkGTxw7cigwp1EaDmSFkyMYS+XwC1E=";
};
vendorHash = "sha256-FuAt2epg4wH7oNa0nvQMWZZwOL1YtpSVdEBxkeY2Heg=";
vendorHash = "sha256-6azUKwzkVg68SvuVlse5ljB2H49tRUWgDasLjEl8KKw=";
ldflags = [
"-X main.version=${finalAttrs.version}"

View file

@ -19,7 +19,6 @@ python3Packages.buildPythonApplication (finalAttrs: {
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
aioxmpp
beautifulsoup4
cssbeautifier
cssselect

View file

@ -18,17 +18,17 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "uv";
version = "0.11.22";
version = "0.11.25";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "astral-sh";
repo = "uv";
tag = finalAttrs.version;
hash = "sha256-/MDEo86070RYMxaZ/whXWIiI2hxt3b5eTYSb43RB5Vg=";
hash = "sha256-MtfaDZ6dDuTTBus9KKj5r03IHo48AmEcsU+VlAW3l68=";
};
cargoHash = "sha256-zStSTwpFWWc4sC59VPK7wYjQl77B+FvY/4E3zlppQjo=";
cargoHash = "sha256-dtkGj/de34HbdFPQbSWBHZGZmif2xQmUS8qqEyFTnmc=";
buildInputs = [
rust-jemalloc-sys

View file

@ -12,16 +12,16 @@
rustPlatform.buildRustPackage (finalAttrs: {
pname = "veilid";
version = "0.5.3";
version = "0.5.5";
src = fetchFromGitLab {
owner = "veilid";
repo = "veilid";
rev = "v${finalAttrs.version}";
hash = "sha256-qPV5kVp/1ZTLzo8i3DkGLxuoOaMJxZJUEzYGNReJyHY=";
hash = "sha256-14jRIs2iE5JH1ZmC/1DGcg6cejsnmhUTkquXNmOEuQA=";
};
cargoHash = "sha256-LjysGZihXoE82224nXNrRWIMe6/POXDqjMO29zg+MMI=";
cargoHash = "sha256-xuIw/RRKydanStS7dw1jK96bgEH0U5TDbayaBZq/OCg=";
nativeBuildInputs = [
capnproto

View file

@ -13,7 +13,7 @@
nodejs,
fetchPnpmDeps,
pnpmConfigHook,
pnpm_10_29_2,
pnpm_10,
_7zz,
electron,
@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: {
postPatch
;
pnpm = pnpm_10_29_2;
pnpm = pnpm_10;
# let's just be safe and add these explicitly to nativeBuildInputs
# even though the fetcher already uses them in its implementation
@ -78,7 +78,7 @@ stdenv.mkDerivation (finalAttrs: {
moreutils
nodejs
pnpmConfigHook
pnpm_10_29_2
pnpm_10
]
++ lib.optionals stdenv.hostPlatform.isLinux [
copyDesktopItems

View file

@ -159,7 +159,6 @@ effectiveBuildPythonApplication rec {
]
++ (with gst_all_1; [
gst-libav
gst-vaapi
gst-plugins-ugly
gst-plugins-bad
gst-plugins-base

View file

@ -6,7 +6,7 @@
pnpmDeps,
apiEndpoint ? "http://localhost:3000",
pnpmConfigHook,
pnpm_9,
pnpm_11,
nodejs,
}:
@ -16,7 +16,7 @@ stdenv.mkDerivation {
nativeBuildInputs = [
pnpmConfigHook
pnpm_9
pnpm_11
nodejs
];

View file

@ -4,14 +4,13 @@
fetchFromGitHub,
fetchPnpmDeps,
pnpmConfigHook,
pnpm_9,
pnpm_11,
nodejs,
makeWrapper,
callPackage,
nixosTests,
nix-update-script,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "your_spotify_server";
version = "1.20.0";
@ -25,15 +24,15 @@ stdenv.mkDerivation (finalAttrs: {
pnpmDeps = fetchPnpmDeps {
inherit (finalAttrs) pname version src;
pnpm = pnpm_9;
fetcherVersion = 3;
hash = "sha256-j6COg8Q0uj+5TjN/BUVst2UMhXLT3drLWUzdG/x51rk=";
pnpm = pnpm_11;
fetcherVersion = 4;
hash = "sha256-eUAzQ+LV+RZs/QEb5r7l9cisBjjWU8eGMm2r9ZNXmX8=";
};
nativeBuildInputs = [
makeWrapper
pnpmConfigHook
pnpm_9
pnpm_11
nodejs
];

View file

@ -20,13 +20,13 @@
stdenv.mkDerivation rec {
pname = "lxqt-wayland-session";
version = "0.4.0";
version = "0.4.1";
src = fetchFromGitHub {
owner = "lxqt";
repo = "lxqt-wayland-session";
rev = version;
hash = "sha256-QmknSFJLmAy3OxU9jv6xMAAxQXlWuUcuPNHDs8r2/ls=";
hash = "sha256-7wNp1a+JCnFu2h391KUeNRlZqybA5gY3ZCciYbIx5Rs=";
};
nativeBuildInputs = [

View file

@ -37,8 +37,6 @@ lib.makeScope newScope (
gst-editing-services = callPackage ./ges { };
gst-vaapi = callPackage ./vaapi { };
icamerasrc-ipu6 = callPackage ./icamerasrc { };
icamerasrc-ipu6ep = callPackage ./icamerasrc {
ipu6-camera-hal = ipu6ep-camera-hal;
@ -51,5 +49,6 @@ lib.makeScope newScope (
}
// lib.optionalAttrs config.allowAliases {
gst-plugins-viperfx = throw "'gst_all_1.gst-plugins-viperfx' was removed as it is broken and not maintained upstream"; # Added 2024-12-16
gst-vaapi = throw "'gst_all_1.gst-vaapi' has been removed in GStreamer 1.28. Users are recommended to switch to gst-plugins-bad, however it is not an in-place upgrade."; # Added 2026-06-28
}
)

View file

@ -1,120 +0,0 @@
{
lib,
stdenv,
fetchurl,
meson,
ninja,
pkg-config,
gst-plugins-base,
bzip2,
libva,
wayland,
wayland-protocols,
wayland-scanner,
libdrm,
udev,
libxv,
libxrandr,
libxext,
libx11,
libsm,
libice,
libxcb,
libGLU,
libGL,
gstreamer,
gst-plugins-bad,
nasm,
libvpx,
python3,
# Checks meson.is_cross_build(), so even canExecute isn't enough.
enableDocumentation ? stdenv.hostPlatform == stdenv.buildPlatform,
hotdoc,
directoryListingUpdater,
apple-sdk_gstreamer,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gstreamer-vaapi";
version = "1.26.11";
outputs = [
"out"
"dev"
];
src = fetchurl {
url = "https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-${finalAttrs.version}.tar.xz";
hash = "sha256-8S+TAnPHodPg1/hblP+dE3nRYqzMky6Mo9OJk+0n/Kw=";
};
separateDebugInfo = true;
__structuredAttrs = true;
strictDeps = true;
nativeBuildInputs = [
meson
ninja
pkg-config
python3
bzip2
wayland-scanner
]
++ lib.optionals enableDocumentation [
hotdoc
];
buildInputs = [
gstreamer
gst-plugins-base
gst-plugins-bad
libva
wayland
wayland-protocols
libdrm
udev
libx11
libxcb
libxext
libxv
libxrandr
libsm
libice
nasm
libvpx
]
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
libGL
libGLU
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
apple-sdk_gstreamer
];
mesonFlags = [
"-Dexamples=disabled" # requires many dependencies and probably not useful for our users
(lib.mesonEnable "doc" enableDocumentation)
];
postPatch = ''
patchShebangs \
scripts/extract-release-date-from-doap-file.py
'';
preFixup = ''
moveToOutput "lib/gstreamer-1.0/pkgconfig" "$dev"
'';
passthru = {
updateScript = directoryListingUpdater { odd-unstable = true; };
};
meta = {
description = "Set of VAAPI GStreamer Plug-ins";
homepage = "https://gstreamer.freedesktop.org";
license = lib.licenses.lgpl21Plus;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ tmarkus ];
};
})

View file

@ -89,7 +89,6 @@ let
gst-plugins-base
gst-plugins-good
gst-libav
gst-vaapi
;
};
qtmqtt = callPackage ./modules/qtmqtt.nix { };

View file

@ -14,7 +14,6 @@
gst-plugins-base,
gst-plugins-good,
gst-libav,
gst-vaapi,
ffmpeg,
libva,
libpulseaudio,
@ -59,7 +58,6 @@ qtModule {
gst-plugins-base
gst-plugins-good
gst-libav
gst-vaapi
];
patches = lib.optionals stdenv.hostPlatform.isMinGW [

View file

@ -0,0 +1,49 @@
From b225ea23753ce35356ad1b53c0854813004bb605 Mon Sep 17 00:00:00 2001
From: rathmann <Uwe.Rathmann@tigertal.de>
Date: Thu, 22 May 2025 15:33:04 +0200
Subject: [PATCH] pkgconfig for Qt 5/6 adjustments
---
src/src.pro | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/src/src.pro b/src/src.pro
index 96e0624..8990ece 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -81,22 +81,27 @@ contains(QWT_CONFIG, QwtPkgConfig) {
greaterThan(QT_MAJOR_VERSION, 4) {
- QMAKE_PKGCONFIG_FILE = Qt$${QT_MAJOR_VERSION}$${QMAKE_PKGCONFIG_NAME}
- QMAKE_PKGCONFIG_REQUIRES = Qt5Widgets Qt5Concurrent Qt5PrintSupport
+ QTLIB_PREFIX = Qt$${QT_MAJOR_VERSION} # e.g., "Qt5"
+ QMAKE_PKGCONFIG_FILE = $${QTLIB_PREFIX}$${QMAKE_PKGCONFIG_NAME} # e.g., "Qt5Qwt6"
+
+ # Base Qt library requirements
+ QMAKE_PKGCONFIG_REQUIRES = $${QTLIB_PREFIX}Widgets
+ QMAKE_PKGCONFIG_REQUIRES += $${QTLIB_PREFIX}Concurrent
+ QMAKE_PKGCONFIG_REQUIRES += $${QTLIB_PREFIX}PrintSupport
contains(QWT_CONFIG, QwtSvg) {
- QMAKE_PKGCONFIG_REQUIRES += Qt5Svg
+ QMAKE_PKGCONFIG_REQUIRES += $${QTLIB_PREFIX}Svg
}
contains(QWT_CONFIG, QwtOpenGL) {
- QMAKE_PKGCONFIG_REQUIRES += Qt5OpenGL
+ QMAKE_PKGCONFIG_REQUIRES += $${QTLIB_PREFIX}OpenGL
}
QMAKE_DISTCLEAN += $${DESTDIR}/$${QMAKE_PKGCONFIG_DESTDIR}/$${QMAKE_PKGCONFIG_FILE}.pc
}
else {
- # there is no QMAKE_PKGCONFIG_FILE fo Qt4
+ # there is no QMAKE_PKGCONFIG_FILE for Qt4
QMAKE_PKGCONFIG_REQUIRES = QtGui
contains(QWT_CONFIG, QwtSvg) {
--
2.54.0

View file

@ -23,6 +23,19 @@ stdenv.mkDerivation rec {
sha256 = "sha256-3LCFiWwoquxVGMvAjA7itOYK2nrJKdgmOfYYmFGmEpo=";
};
patches = [
# Fix the generated pkg-config file when built against Qt6.
# The file wrongly pulled in an unsatisfied dependency to Qt5.
#
# When building Qwt using Qt6, the constructed pkgconfig .pc file was
# previously set up to only look for Qt5 libraries. This fix now matches
# the library dependency to the Qt version used in building Qwt.
#
# See upstream commit b225ea23753ce35356ad1b53c0854813004bb605.
# https://sourceforge.net/p/qwt/git/ci/b225ea23753ce35356ad1b53c0854813004bb605/basic
./0001-pkgconfig-for-Qt-5-6-adjustments.patch
];
propagatedBuildInputs = [
qtbase
qtsvg

View file

@ -167,7 +167,9 @@ stdenv.mkDerivation (finalAttrs: {
stdenv.buildPlatform.canExecute stdenv.hostPlatform
&& !stdenv.hostPlatform.isDarwin
# Tests rely on mocking, which can't work with static libs.
&& !stdenv.hostPlatform.isStatic;
&& !stdenv.hostPlatform.isStatic
# swtpm does not build on 32-bit targets
&& !stdenv.hostPlatform.is32bit;
# Since we rewrote the load path in the dynamic loader for the TCTI
# The various tcti implementation should be placed in their target directory
# before we could run tests, so we make turn checkPhase into installCheckPhase

View file

@ -6,17 +6,19 @@
lapack,
blas,
autoreconfHook,
nix-update-script,
}:
buildOctavePackage rec {
pname = "control";
version = "3.6.1";
version = "4.2.1";
src = fetchFromGitHub {
owner = "gnu-octave";
repo = "pkg-control";
tag = "control-${version}";
sha256 = "sha256-7beEsdrne50NY4lGCotxGXwwWnMzUR2CKCc20OCjd0g=";
tag = "${pname}-${version}";
fetchSubmodules = true;
sha256 = "sha256-NOZi003brDQ5nVyP7w5n7hxhafbiBwMPErhhTQhn2bw=";
};
# Running autoreconfHook inside the src directory fixes a compile issue about
@ -41,6 +43,13 @@ buildOctavePackage rec {
blas
];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"control-(.*)"
];
};
meta = {
homepage = "https://gnu-octave.github.io/packages/control/";
license = lib.licenses.gpl3Plus;

View file

@ -0,0 +1,34 @@
From 91833ab6c1a769f82f30dbf126362d079905bfc6 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=A9clairevoyant?=
<848000+eclairevoyant@users.noreply.github.com>
Date: Fri, 26 Jun 2026 21:28:41 -0400
Subject: [PATCH] addfeatures/hmtx: avoid unsigned integer underflow
---
c/addfeatures/hotconv/hmtx.cpp | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/c/addfeatures/hotconv/hmtx.cpp b/c/addfeatures/hotconv/hmtx.cpp
index 9336c986..2d8ca98e 100644
--- a/c/addfeatures/hotconv/hmtx.cpp
+++ b/c/addfeatures/hotconv/hmtx.cpp
@@ -52,12 +52,12 @@ int hmtxFill(hotCtx g) {
/* Optimize metrics */
FWord width = hmtx.advanceWidth.back();
size_t i;
- for (i = hmtx.advanceWidth.size() - 2; i >= 0; i--) {
- if (hmtx.advanceWidth[i] != width)
+ for (i = hmtx.advanceWidth.size(); i >= 2; i--) {
+ if (hmtx.advanceWidth[i-2] != width)
break;
}
- if (i + 2 != hmtx.advanceWidth.size())
- hmtx.advanceWidth.resize(i+2);
+ if (i != hmtx.advanceWidth.size())
+ hmtx.advanceWidth.resize(i);
return hmtx.Fill();
}
--
2.54.0

View file

@ -69,6 +69,10 @@ buildPythonPackage (finalAttrs: {
# Use antlr4 runtime from nixpkgs and link it dynamically
./use-dynamic-system-antlr4-runtime.patch
# integer underflow causes incorrect behavior
# patch submitted upstream as https://github.com/adobe-type-tools/afdko/pull/1843
./0001-addfeatures-hmtx-avoid-unsigned-integer-underflow.patch
];
env = {

View file

@ -0,0 +1,11 @@
--- a/aiohttp_jinja2/__init__.py
+++ b/aiohttp_jinja2/__init__.py
@@ -38,7 +38,7 @@
"APP_CONTEXT_PROCESSORS_KEY"
)
APP_KEY: Final = web.AppKey[jinja2.Environment]("APP_KEY")
-REQUEST_CONTEXT_KEY: Final = "aiohttp_jinja2_context"
+REQUEST_CONTEXT_KEY: Final = web.RequestKey("jinja_context", dict)
_T = TypeVar("_T")
_P = ParamSpec("_P")

View file

@ -20,6 +20,11 @@ buildPythonPackage rec {
hash = "sha256-o6f/UmTlvKUuiuVHu/0HYbcklSMNQ40FtsCRW+YZsOI=";
};
patches = [
# Adapted from https://github.com/aio-libs/aiohttp-jinja2/pull/1025
./aiohttp-3.14.patch
];
build-system = [ setuptools ];
dependencies = [

View file

@ -14,14 +14,14 @@
buildPythonPackage rec {
pname = "aioimmich";
version = "0.15.0";
version = "0.15.1";
pyproject = true;
src = fetchFromGitHub {
owner = "mib1185";
repo = "aioimmich";
tag = "v${version}";
hash = "sha256-lsxN4gl1t7za/0ac6fXZysEeXSQtNAvQCMN/eqRvWoQ=";
hash = "sha256-2WdQnK25vrBtNKzkgpSaWcdkrfEggtBhe3DI7DuMS8k=";
};
postPatch = ''

View file

@ -1,52 +0,0 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
pyopenssl,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "aiosasl";
version = "0.5.0";
pyproject = true;
src = fetchFromGitHub {
owner = "horazont";
repo = "aiosasl";
tag = "v${version}";
hash = "sha256-JIuNPb/l4QURMQc905H2iNGCfMz+zM/QJhDQOR8LPdc=";
};
patches = [
(fetchpatch {
name = "python311-compat.patch";
url = "https://github.com/horazont/aiosasl/commit/44c48d36b416bd635d970dba2607a31b2167ea1b.patch";
hash = "sha256-u6PJKV54dU2MA9hXa/9hJ3eLVds1DuLHGbt8y/OakWs=";
})
];
postPatch = ''
# https://github.com/horazont/aiosasl/issues/28
substituteInPlace tests/test_aiosasl.py \
--replace-fail "assertRaisesRegexp" "assertRaisesRegex"
'';
build-system = [ setuptools ];
nativeCheckInputs = [
pyopenssl
pytestCheckHook
];
pythonImportsCheck = [ "aiosasl" ];
meta = {
description = "Asyncio SASL library";
homepage = "https://github.com/horazont/aiosasl";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View file

@ -1,98 +0,0 @@
{
lib,
aioopenssl,
aiosasl,
babel,
buildPythonPackage,
dnspython,
fetchFromCodeberg,
lxml,
multidict,
pyasn1-modules,
pyasn1,
pyopenssl,
pytestCheckHook,
pythonAtLeast,
pytz,
setuptools,
sortedcollections,
tzlocal,
}:
buildPythonPackage rec {
pname = "aioxmpp";
version = "0.13.3";
pyproject = true;
src = fetchFromCodeberg {
owner = "jssfr";
repo = "aioxmpp";
tag = "v${version}";
hash = "sha256-bQPKEM5eKhFI3Kx3U1espdxqjnG4yUgOXmYCrd98PDo=";
};
postPatch = ''
substituteInPlace tests/bookmarks/test_service.py \
--replace-fail 'can only assign an iterable$' 'must assign iterable'
substituteInPlace tests/test_utils.py \
--replace-fail 'property of .* has no' 'property .*of .* has no'
'';
pythonRelaxDeps = [
"lxml"
];
build-system = [ setuptools ];
dependencies = [
aiosasl
aioopenssl
babel
dnspython
lxml
multidict
pyasn1
pyasn1-modules
pyopenssl
pytz
sortedcollections
tzlocal
];
pythonImportsCheck = [
"aioxmpp"
"aioxmpp.node"
"aioxmpp.security_layer"
"aioxmpp.stanza"
"aioxmpp.stream"
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTestPaths = [ "benchmarks" ];
disabledTests = [
# AttributeError: 'zoneinfo.ZoneInfo' object has no attribute 'normalize'
"test_convert_field_datetime_default_locale"
]
++ lib.optionals (pythonAtLeast "3.12") [
# asyncio issues
"test_is_abstract"
"Testbackground"
"TestCapturingXSO"
"Testcheck_x509"
"TestClient"
"TestIntegerType"
"TestStanzaStream"
"TestStanzaToken"
"TestXMLStream"
];
meta = {
description = "Pure-python XMPP library for asyncio";
homepage = "https://codeberg.org/jssfr/aioxmpp";
changelog = "https://codeberg.org/jssfr/aioxmpp/src/tag/${src.tag}/docs/api/changelog.rst";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
};
}

View file

@ -2,9 +2,9 @@
lib,
buildPythonPackage,
fetchFromGitHub,
fetchpatch,
poetry-core,
pytest7CheckHook,
setuptools,
jsonschema,
pyyaml,
jinja2,
@ -23,6 +23,18 @@ buildPythonPackage rec {
hash = "sha256-JelFfd3WS012dveNlIljhLdyPmgE9VEOXoZE3MBA/Gw=";
};
patches = [
(fetchpatch {
name = "setuptools-82-compat.patch";
url = "https://github.com/efficios/barectf/commit/e16d289546bb4f6b0d909f79b8d6188eabe32640.patch";
hash = "sha256-5tSOxc6trSHFPnVj+7YVO9J65bZ1H2MFKrZAbRy1WTM=";
excludes = [
"pyproject.toml"
"poetry.lock"
];
})
];
nativeBuildInputs = [
poetry-core
];
@ -33,8 +45,11 @@ buildPythonPackage rec {
"termcolor"
];
pythonRemoveDeps = [
"setuptools"
];
propagatedBuildInputs = [
setuptools # needs pkg_resources at runtime
jsonschema
pyyaml
jinja2

View file

@ -19,14 +19,14 @@
buildPythonPackage (finalAttrs: {
pname = "cutlass";
version = "0.4.0";
version = "0.5.0";
pyproject = true;
__structuredAttrs = true;
# No tags on GitHub
src = fetchPypi {
inherit (finalAttrs) pname version;
hash = "sha256-+9Y7twguzeqGJP9813hAStzjLVlTeLD+JHrHndzA9AM=";
hash = "sha256-dAxt/1EROwJix/Sz889XJ9MXfN1FBFQYSNeB3H43g7E=";
};
build-system = [

View file

@ -31,7 +31,10 @@ buildPythonPackage (finalAttrs: {
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail ', "vcs-versioning"' ""
--replace-fail ', "vcs-versioning"' "" \
--replace-fail "setuptools_scm[toml]>=3.4,<10" "setuptools_scm[toml]"
substituteInPlace setup.cfg \
--replace-fail "setuptools_scm==9.2.2" "setuptools_scm"
'';
build-system = [

View file

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
nix-update-script,
# build-system
cmake,
@ -34,7 +35,7 @@
buildPythonPackage (finalAttrs: {
pname = "ggml-python";
version = "0.0.42";
version = "0.0.44";
pyproject = true;
__structuredAttrs = true;
@ -44,7 +45,7 @@ buildPythonPackage (finalAttrs: {
tag = "v${finalAttrs.version}";
# ggml-python expects an older version of ggml than pkgs.ggml's
fetchSubmodules = true;
hash = "sha256-dbYxAropTT8h1BnMg4Ua1hY/IUYWHaZcS0ckj38UoO4=";
hash = "sha256-Pjc91nKBAdmEg8TmirWdD1AcKlY+BCDAoHzL6mTE2SM=";
};
build-system = [
@ -92,6 +93,13 @@ buildPythonPackage (finalAttrs: {
pytestCheckHook
];
passthru.updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"^v([0-9.]+)$"
];
};
meta = {
description = "Python bindings for ggml";
homepage = "https://github.com/abetlen/ggml-python";

View file

@ -38,6 +38,7 @@ buildPythonPackage rec {
disabledTests = [
# tries to match exact error text, fails with jq 1.8
"test_value_error_is_raised_if_program_is_invalid"
"test_value_error_is_raised_if_input_cannot_be_processed_by_program"
];
pythonImportsCheck = [ "jq" ];

View file

@ -4,7 +4,6 @@
fetchFromGitHub,
buildPythonPackage,
replaceVars,
fetchpatch,
# nativeBuildInputs
setuptools,
@ -16,8 +15,8 @@
# tests
numba,
pytestCheckHook,
pytest-xdist,
writableTmpDirAsHomeHook,
numpy_1,
writers,
python,
@ -56,11 +55,26 @@ buildPythonPackage (finalAttrs: {
hash = "sha256-DMmUyTElDFyMK4BUQ4EhDNmG43lOWQHurKbnSyhAs5k=";
};
patches = [
./numpy2.5.patch
]
++ lib.optionals cudaSupport [
(replaceVars ./cuda_path.patch {
cuda_toolkit_path = cudatoolkit;
cuda_toolkit_lib_path = lib.getLib cudatoolkit;
})
];
postPatch = ''
substituteInPlace numba/cuda/cudadrv/driver.py \
--replace-fail \
"dldir = [" \
"dldir = [ '${addDriverRunpath.driverLink}/lib', "
substituteInPlace setup.py \
--replace-fail 'max_numpy_run_version = "2.5"' 'max_numpy_run_version = "2.6"'
substituteInPlace numba/__init__.py \
--replace-fail "(2, 4)" "(2, 6)"
'';
build-system = [
@ -84,15 +98,9 @@ buildPythonPackage (finalAttrs: {
llvmlite
];
patches = lib.optionals cudaSupport [
(replaceVars ./cuda_path.patch {
cuda_toolkit_path = cudatoolkit;
cuda_toolkit_lib_path = lib.getLib cudatoolkit;
})
];
nativeCheckInputs = [
pytestCheckHook
pytest-xdist
writableTmpDirAsHomeHook
];
@ -145,9 +153,6 @@ buildPythonPackage (finalAttrs: {
doFullCheck = true;
testsWithoutSandbox = false;
};
numpy_1 = numba.override {
numpy = numpy_1;
};
};
meta = {

View file

@ -1,28 +0,0 @@
diff --git a/numba/__init__.py b/numba/__init__.py
index 33f752018..7d3b3ae8d 100644
--- a/numba/__init__.py
+++ b/numba/__init__.py
@@ -39,8 +39,8 @@ def _ensure_critical_deps():
f"{numpy_version[0]}.{numpy_version[1]}.")
raise ImportError(msg)
- if numpy_version > (2, 3):
- msg = (f"Numba needs NumPy 2.3 or less. Got NumPy "
+ if numpy_version > (2, 4):
+ msg = (f"Numba needs NumPy 2.4 or less. Got NumPy "
f"{numpy_version[0]}.{numpy_version[1]}.")
raise ImportError(msg)
diff --git a/setup.py b/setup.py
index 9eaa191cb..a5febef1e 100644
--- a/setup.py
+++ b/setup.py
@@ -23,7 +23,7 @@ min_python_version = "3.10"
max_python_version = "3.15" # exclusive
min_numpy_build_version = "2.0.0rc1"
min_numpy_run_version = "1.22"
-max_numpy_run_version = "2.4"
+max_numpy_run_version = "2.5"
min_llvmlite_version = "0.46.0dev0"
max_llvmlite_version = "0.47"

View file

@ -0,0 +1,26 @@
diff --git a/numba/np/arrayobj.py b/numba/np/arrayobj.py
index ae81627ec..dd69a2a45 100644
--- a/numba/np/arrayobj.py
+++ b/numba/np/arrayobj.py
@@ -6639,7 +6639,7 @@ def impl_np_vstack(tup):
return impl
-if numpy_version >= (2, 0):
+if (2, 0) <= numpy_version < (2, 5):
overload(np.row_stack)(impl_np_vstack)
diff --git a/numba/tests/test_dyn_array.py b/numba/tests/test_dyn_array.py
index 99328052c..dfbf57589 100644
--- a/numba/tests/test_dyn_array.py
+++ b/numba/tests/test_dyn_array.py
@@ -36,7 +36,7 @@ def np_vstack(a, b, c):
return np.vstack((a, b, c))
def np_row_stack(a, b, c):
- return np.row_stack((a, b, c))
+ return np.vstack((a, b, c))
def np_dstack(a, b, c):
return np.dstack((a, b, c))

View file

@ -8,7 +8,7 @@
buildPythonPackage (finalAttrs: {
pname = "oelint-data";
version = "1.5.6";
version = "1.5.8";
pyproject = true;
__structuredAttrs = true;
@ -16,7 +16,7 @@ buildPythonPackage (finalAttrs: {
owner = "priv-kweihmann";
repo = "oelint-data";
tag = finalAttrs.version;
hash = "sha256-JkH8y3FzpMMIIv/42c+WzqJtA63SVQ/1v6ZE/5ybYR8=";
hash = "sha256-cjQAJtslRGZ7FwjlVoxgGVoPmdx6J8qlHcxbl/auf0I=";
};
build-system = [

View file

@ -1,10 +1,10 @@
{
lib,
buildPythonPackage,
hatchling,
opentelemetry-api,
opentelemetry-instrumentation,
opentelemetry-test-utils,
pytest-benchmark,
pytestCheckHook,
}:
@ -24,9 +24,14 @@ buildPythonPackage {
nativeCheckInputs = [
opentelemetry-test-utils
pytest-benchmark
pytestCheckHook
];
pytestFlags = [
"--benchmark-disable"
];
pythonImportsCheck = [ "opentelemetry.instrumentation.logging" ];
meta = opentelemetry-instrumentation.meta // {

View file

@ -63,7 +63,7 @@
let
pandas = buildPythonPackage rec {
pname = "pandas";
version = "3.0.3";
version = "3.0.4";
pyproject = true;
src = fetchFromGitHub {
@ -73,7 +73,7 @@ let
postFetch = ''
sed -i 's/git_refnames = "[^"]*"/git_refnames = " (tag: ${src.tag})"/' $out/pandas/_version.py
'';
hash = "sha256-G+pWdmft/kcxv97ySa+0ZFEgvMKuNaK33DseZQ8R1z8=";
hash = "sha256-cPnvBVs5xXjbRoj6KU/KeNn+To9oue7H0OBaJ2JdJG4=";
};
# A NOTE regarding the Numpy version relaxing: Both Numpy versions 1.x &

View file

@ -29,14 +29,14 @@
buildPythonPackage (finalAttrs: {
pname = "pyatv";
version = "0.17.0";
version = "0.18.0";
pyproject = true;
src = fetchFromGitHub {
owner = "postlund";
repo = "pyatv";
tag = "v${finalAttrs.version}";
hash = "sha256-wsLqG1yJf5A3BMgpbQMrXn6NzpcF4BU1TD+0NJ6Nt7c=";
hash = "sha256-UNBpVB2H+xr0ijdlfK/Hrh6k3lhRSqHkthjWp/WZsaQ=";
};
pythonRelaxDeps = [

View file

@ -12,14 +12,14 @@
buildPythonPackage (finalAttrs: {
pname = "pysigma-backend-elasticsearch";
version = "2.0.3";
version = "2.1.0";
pyproject = true;
src = fetchFromGitHub {
owner = "SigmaHQ";
repo = "pySigma-backend-elasticsearch";
tag = "v${finalAttrs.version}";
hash = "sha256-54AxC3cK8Vh/cT2LjYzbgQFJrgoSxFU2QbsML3YUCHs=";
hash = "sha256-eSf0uhjhO1Bc63EBy505tTGASTNJ/mK0943vBXAT9As=";
};
build-system = [ poetry-core ];

Some files were not shown because too many files have changed in this diff Show more