From 37e17c1e2986d3adb3d242d08e06e588917333f6 Mon Sep 17 00:00:00 2001 From: Nidhish Chauhan Date: Sun, 24 May 2026 23:57:51 +0530 Subject: [PATCH 01/31] oshu: init at 2.0.3 --- pkgs/by-name/os/oshu/package.nix | 67 ++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 pkgs/by-name/os/oshu/package.nix diff --git a/pkgs/by-name/os/oshu/package.nix b/pkgs/by-name/os/oshu/package.nix new file mode 100644 index 000000000000..0cd6b1d99a36 --- /dev/null +++ b/pkgs/by-name/os/oshu/package.nix @@ -0,0 +1,67 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + pkg-config, + SDL2, + SDL2_image, + ffmpeg, + cairo, + pango, + versionCheckHook, + nix-update-script, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "oshu"; + version = "2.0.3"; + + src = fetchFromGitHub { + owner = "fmang"; + repo = "oshu"; + tag = finalAttrs.version; + hash = "sha256-bVMEhaSaLtlxkPnu3rtue6Ov5m+8ymteBRLnWVv0YEI="; + }; + + __structuredAttrs = true; + strictDeps = true; + + nativeBuildInputs = [ + cmake + pkg-config + versionCheckHook + ]; + + buildInputs = [ + SDL2 + SDL2_image + ffmpeg + cairo + pango + ]; + + cmakeFlag = [ + "-DCMAKE_BUILD_TYPE=Release" + "-DOSHU_DEFAULT_SKIN=minimal" + ]; + + doCheck = true; + checkTarget = "check"; + + nativeInstallCheckInputs = [ versionCheckHook ]; + doInstallCheck = true; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Lightweight osu! client for Linux and low-end systems"; + homepage = "https://github.com/fmang/oshu"; + mainProgram = "oshu"; + changelog = "https://github.com/fmang/oshu/releases/tag/${finalAttrs.version}"; + license = lib.licenses.gpl3Only; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ castorNova2 ]; + sourceProvenance = with lib.sourceTypes; [ fromSource ]; + }; +}) From 96ddb72fc7fc6c2190e7d85030bba10a1647d879 Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Mon, 8 Jun 2026 13:59:02 -0700 Subject: [PATCH 02/31] leetsolve: init at 1.2.0 Homepage: https://github.com/eannchen/leetsolv Signed-off-by: Ethan Carter Edwards --- pkgs/by-name/le/leetsolv/package.nix | 50 ++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 pkgs/by-name/le/leetsolv/package.nix diff --git a/pkgs/by-name/le/leetsolv/package.nix b/pkgs/by-name/le/leetsolv/package.nix new file mode 100644 index 000000000000..1efc4fb78c8c --- /dev/null +++ b/pkgs/by-name/le/leetsolv/package.nix @@ -0,0 +1,50 @@ +{ + lib, + buildGoModule, + fetchFromGitHub, + versionCheckHook, + writableTmpDirAsHomeHook, + nix-update-script, +}: + +buildGoModule (finalAttrs: { + pname = "leetsolv"; + version = "1.2.0"; + + __structuredAttrs = true; + + src = fetchFromGitHub { + owner = "eannchen"; + repo = "leetsolv"; + tag = "v${finalAttrs.version}"; + hash = "sha256-ZZ5TtrVUVWUTrGkp4p5k/aNT/XfCwJPsTjTUMcSz7sc="; + }; + + vendorHash = null; + + ldflags = [ + "-s" + "-X main.Version=${finalAttrs.version}" + "-X main.BuildTime=1970-01-01T00:00:00Z" + "-X main.GitCommit=${finalAttrs.src.rev}" + ]; + + # needed for unit tests, also for version test + nativeCheckInputs = [ writableTmpDirAsHomeHook ]; + + nativeInstallCheckInputs = [ versionCheckHook ]; + versionCheckKeepEnvironment = [ "HOME" ]; + versionCheckProgramArg = "version"; + doInstallCheck = true; + + passthru.updateScript = nix-update-script { }; + + meta = { + description = "Spaced repetition CLI for DSA and LeetCode"; + homepage = "https://github.com/eannchen/leetsolv"; + changelog = "https://github.com/eannchen/leetsolv/releases/tag/v${finalAttrs.version}"; + license = lib.licenses.mit; + maintainers = with lib.maintainers; [ ethancedwards8 ]; + mainProgram = "leetsolv"; + }; +}) From bfaf956e9c0e9ef4acbb3a7f6c09e18c2798c815 Mon Sep 17 00:00:00 2001 From: eyjhb Date: Tue, 9 Jun 2026 12:42:27 +0200 Subject: [PATCH 03/31] python3Packages.frida-python: add eyjhb as maintainer --- pkgs/development/python-modules/frida-python/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/frida-python/default.nix b/pkgs/development/python-modules/frida-python/default.nix index cc992c53d6f0..c3a19f1c6fa2 100644 --- a/pkgs/development/python-modules/frida-python/default.nix +++ b/pkgs/development/python-modules/frida-python/default.nix @@ -56,7 +56,10 @@ buildPythonPackage { lgpl2Plus wxWindowsException31 ]; - maintainers = with lib.maintainers; [ s1341 ]; + maintainers = with lib.maintainers; [ + s1341 + eyjhb + ]; platforms = [ "x86_64-linux" "aarch64-linux" From 3d1a45bdebf00f270d8eb3b6af8b1c147b73c776 Mon Sep 17 00:00:00 2001 From: eyjhb Date: Tue, 9 Jun 2026 12:42:35 +0200 Subject: [PATCH 04/31] python3Packages.frida-python: add passthru.updateScript --- .../python-modules/frida-python/default.nix | 2 ++ .../python-modules/frida-python/update.sh | 26 +++++++++++++++++++ 2 files changed, 28 insertions(+) create mode 100755 pkgs/development/python-modules/frida-python/update.sh diff --git a/pkgs/development/python-modules/frida-python/default.nix b/pkgs/development/python-modules/frida-python/default.nix index c3a19f1c6fa2..4407b2a21441 100644 --- a/pkgs/development/python-modules/frida-python/default.nix +++ b/pkgs/development/python-modules/frida-python/default.nix @@ -49,6 +49,8 @@ buildPythonPackage { "frida._frida" ]; + passthru.updateScript = ./update.sh; + meta = { description = "Dynamic instrumentation toolkit for developers, reverse-engineers, and security researchers (Python bindings)"; homepage = "https://www.frida.re"; diff --git a/pkgs/development/python-modules/frida-python/update.sh b/pkgs/development/python-modules/frida-python/update.sh new file mode 100755 index 000000000000..2dde81527470 --- /dev/null +++ b/pkgs/development/python-modules/frida-python/update.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env nix-shell +#! nix-shell -i bash -p curl jq nix + +set -euox pipefail + +dir="$(dirname "$0")" +latest=$(curl -s https://pypi.org/pypi/frida/json | jq -r '.info.version') + +sed -i "s/version = \".*\"/version = \"$latest\"/" "$dir/default.nix" + +for system_platform in \ + "x86_64-linux|manylinux1_x86_64" \ + "aarch64-linux|manylinux2014_aarch64" \ + "x86_64-darwin|macosx_10_13_x86_64" \ + "aarch64-darwin|macosx_11_0_arm64" +do + system="${system_platform%%|*}" + platform="${system_platform##*|}" + url=$(curl -s "https://pypi.org/pypi/frida/${latest}/json" | \ + jq -r ".urls[] | select(.filename | test(\"${platform}\")) | .url") + hash=$(nix-prefetch-url --type sha256 "$url" 2>/dev/null | tail -1) + sri=$(nix hash to-sri --type sha256 "$hash") + + old_sri=$(grep -A1 "${system} = {" "$dir/default.nix" | grep -o 'sha256-[^"]*') + sed -i "s|${old_sri}|${sri}|" "$dir/default.nix" +done From 42fd90da4689bf779dbe3a6dbc10806b3f106f0f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 10 Jun 2026 16:55:07 +0000 Subject: [PATCH 05/31] aardvark-dns: 1.17.1 -> 2.0.0 --- pkgs/by-name/aa/aardvark-dns/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/aa/aardvark-dns/package.nix b/pkgs/by-name/aa/aardvark-dns/package.nix index 5515f8b50a53..d4ae035f8518 100644 --- a/pkgs/by-name/aa/aardvark-dns/package.nix +++ b/pkgs/by-name/aa/aardvark-dns/package.nix @@ -7,16 +7,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "aardvark-dns"; - version = "1.17.1"; + version = "2.0.0"; src = fetchFromGitHub { owner = "containers"; repo = "aardvark-dns"; tag = "v${finalAttrs.version}"; - hash = "sha256-gd04T+GK/+gCWGMnNfFzCcTBPbjU8e5mWjFf7uvob38="; + hash = "sha256-w+qHHq/4jdkEzyoxfy1h6Vb+55uWLJhirbBSZHxLxTU="; }; - cargoHash = "sha256-19EisvHJZJ1L3f0+pE6wgfChkRoYU8W/iaAppwbjbdQ="; + cargoHash = "sha256-rpflZfMYNlrn13Cv3znkS2Jp9peyIJDQrXVnVnVuy9g="; passthru.tests = { inherit (nixosTests) podman; }; From 4f9d9fe6ae7bb0ae8fb107f0aca66ade563fb60e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 10 Jun 2026 19:50:22 +0000 Subject: [PATCH 06/31] netavark: 1.17.2 -> 2.0.0 --- pkgs/by-name/ne/netavark/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ne/netavark/package.nix b/pkgs/by-name/ne/netavark/package.nix index cdccae339838..21ab26755886 100644 --- a/pkgs/by-name/ne/netavark/package.nix +++ b/pkgs/by-name/ne/netavark/package.nix @@ -11,16 +11,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "netavark"; - version = "1.17.2"; + version = "2.0.0"; src = fetchFromGitHub { owner = "containers"; repo = "netavark"; rev = "v${finalAttrs.version}"; - hash = "sha256-FdJNcHYK6Jc1dNqcUr5Ne8dv1dzlHRhcjoldiihrov8="; + hash = "sha256-hMtYAG1OnnK1xECp8yiGEtgrWWnVfywLokOw6fzKEjw="; }; - cargoHash = "sha256-wp/1lWc3OfNQt74m8DtpuFO/Mf07+M7numq2FMEkeGo="; + cargoHash = "sha256-oVIOS0bzvT6FW43TJ/p0PZO/cjskzljhyxqeM0aSCCo="; nativeBuildInputs = [ installShellFiles From b7fedeeae5d47abf9e660ec6fc88c359cdf9a217 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Fri, 12 Jun 2026 19:28:19 +0000 Subject: [PATCH 07/31] podman: 5.8.2 -> 5.8.3 --- pkgs/by-name/po/podman/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/po/podman/package.nix b/pkgs/by-name/po/podman/package.nix index 9090f58fae0d..0b2ab61c9351 100644 --- a/pkgs/by-name/po/podman/package.nix +++ b/pkgs/by-name/po/podman/package.nix @@ -42,13 +42,13 @@ }: buildGoModule (finalAttrs: { pname = "podman"; - version = "5.8.2"; + version = "5.8.3"; src = fetchFromGitHub { owner = "containers"; repo = "podman"; tag = "v${finalAttrs.version}"; - hash = "sha256-WUcM594sUerb7/SsAu0PkpOyYuIMjaosr8Bp6d36dYk="; + hash = "sha256-MS5eaGTcCAtEvoQUhGlX8UfoOqNOv0VAoeFxfAvB3Zs="; }; patches = [ From cba87f58b97c3ced074df99cf5507f230a2c9e7a Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Jun 2026 03:58:14 +0000 Subject: [PATCH 08/31] podman-compose: 1.5.0 -> 1.6.0 --- pkgs/by-name/po/podman-compose/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/po/podman-compose/package.nix b/pkgs/by-name/po/podman-compose/package.nix index d0169a667af0..b3c452607184 100644 --- a/pkgs/by-name/po/podman-compose/package.nix +++ b/pkgs/by-name/po/podman-compose/package.nix @@ -5,7 +5,7 @@ }: python3Packages.buildPythonApplication (finalAttrs: { - version = "1.5.0"; + version = "1.6.0"; pname = "podman-compose"; pyproject = true; @@ -13,7 +13,7 @@ python3Packages.buildPythonApplication (finalAttrs: { repo = "podman-compose"; owner = "containers"; tag = "v${finalAttrs.version}"; - hash = "sha256-AEnq0wsDHaCxefaEX4lB+pCAIKzN0oyaBNm7t7tK/yI="; + hash = "sha256-zkXLZfYWpIaQYoUU7GcGnkuTBmhzpJkyojbzFuTR5FI="; }; build-system = [ From ececc384a370d51ce029228a072a99e1cbffff0c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 13 Jun 2026 19:09:50 +0000 Subject: [PATCH 09/31] runc: 1.4.2 -> 1.4.3 --- pkgs/by-name/ru/runc/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ru/runc/package.nix b/pkgs/by-name/ru/runc/package.nix index 6776d0da64dc..a70f8cb683b0 100644 --- a/pkgs/by-name/ru/runc/package.nix +++ b/pkgs/by-name/ru/runc/package.nix @@ -16,13 +16,13 @@ buildGoModule (finalAttrs: { pname = "runc"; - version = "1.4.2"; + version = "1.4.3"; src = fetchFromGitHub { owner = "opencontainers"; repo = "runc"; tag = "v${finalAttrs.version}"; - hash = "sha256-bBZEcFr/w8r0pKb0ijONUogCKRMgbMQt3o2NR+zhXrU="; + hash = "sha256-I9DruagoSWjrEBB4n+w5rzali5wvD/q3tVQFWPDnLAI="; }; vendorHash = null; From 7a2b317ce0012bfd87571861078741f5c1fd9767 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 14 Jun 2026 11:27:01 +0000 Subject: [PATCH 10/31] igv: 2.19.7 -> 2.19.8 --- pkgs/by-name/ig/igv/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/ig/igv/package.nix b/pkgs/by-name/ig/igv/package.nix index b9015f6a1601..073f969113b6 100644 --- a/pkgs/by-name/ig/igv/package.nix +++ b/pkgs/by-name/ig/igv/package.nix @@ -10,10 +10,10 @@ stdenv.mkDerivation (finalAttrs: { pname = "igv"; - version = "2.19.7"; + version = "2.19.8"; src = fetchzip { url = "https://data.broadinstitute.org/igv/projects/downloads/${lib.versions.majorMinor finalAttrs.version}/IGV_${finalAttrs.version}.zip"; - sha256 = "sha256-IkzaQAM+s1boEKo/3ShtbUhihrhxLQCTz8/0lzAyYJA="; + sha256 = "sha256-WVf/y0+Hk3OIz+hlCTJ81Ui/s6vthFLJWLuBJAOGzaQ="; }; installPhase = '' From 10b91b95431ab35f873502af9c557988ed4f92bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Sun, 14 Jun 2026 19:13:17 +0200 Subject: [PATCH 11/31] ceph: Fix SAML authentication --- pkgs/by-name/ce/ceph/python-env.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/ce/ceph/python-env.nix b/pkgs/by-name/ce/ceph/python-env.nix index 8d50840196aa..78c5df5a17f2 100644 --- a/pkgs/by-name/ce/ceph/python-env.nix +++ b/pkgs/by-name/ce/ceph/python-env.nix @@ -43,6 +43,9 @@ ceph-python.withPackages ( cryptography jsonpatch + # src/pybind/mgr/dashboard/services/sso.py + python3-saml + # src/tools/cephfs/shell/setup.py cmd2 colorama From a635d4cbae322b10fe3b81d336bb159be95f1a51 Mon Sep 17 00:00:00 2001 From: Tim van Herpen Date: Wed, 17 Jun 2026 10:21:15 +0200 Subject: [PATCH 12/31] nixos/outline: allow DATABASE_URL override from environment --- nixos/modules/services/web-apps/outline.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/web-apps/outline.nix b/nixos/modules/services/web-apps/outline.nix index 3617aeff7272..2187f7a6ccd7 100644 --- a/nixos/modules/services/web-apps/outline.nix +++ b/nixos/modules/services/web-apps/outline.nix @@ -836,14 +836,12 @@ in ${ if (cfg.databaseUrl == "local") then '' - DATABASE_URL=${lib.escapeShellArg localPostgresqlUrl} - export DATABASE_URL - export PGSSLMODE=disable + export DATABASE_URL="''${DATABASE_URL:-${lib.escapeShellArg localPostgresqlUrl}}" + export PGSSLMODE="''${PGSSLMODE:-disable}" '' else '' - DATABASE_URL=${lib.escapeShellArg cfg.databaseUrl} - export DATABASE_URL + export DATABASE_URL="''${DATABASE_URL:-${lib.escapeShellArg cfg.databaseUrl}}" '' } From 86030d0b31a1d53b001a132b1437fd7e39a0faea Mon Sep 17 00:00:00 2001 From: Aiden Schembri Date: Wed, 17 Jun 2026 18:28:32 +0200 Subject: [PATCH 13/31] zed-editor: 1.6.3 -> 1.7.2 --- pkgs/by-name/ze/zed-editor/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ze/zed-editor/package.nix b/pkgs/by-name/ze/zed-editor/package.nix index 094749694b18..2eb7ee0ea3b2 100644 --- a/pkgs/by-name/ze/zed-editor/package.nix +++ b/pkgs/by-name/ze/zed-editor/package.nix @@ -98,7 +98,7 @@ let in rustPlatform.buildRustPackage (finalAttrs: { pname = "zed-editor"; - version = "1.6.3"; + version = "1.7.2"; outputs = [ "out" @@ -111,7 +111,7 @@ rustPlatform.buildRustPackage (finalAttrs: { owner = "zed-industries"; repo = "zed"; tag = "v${finalAttrs.version}"; - hash = "sha256-9YdmsOtqjQT79R5IwrAtinaJ741xjyW1kZxZiEC0dAc="; + hash = "sha256-f4CxfUsOEZQIIf0+v+3nXH4zlM3mPy/eZyzXG1ayiVc="; }; postPatch = '' @@ -134,7 +134,7 @@ rustPlatform.buildRustPackage (finalAttrs: { --replace-fail 'builder.include(&glib_path_config);' 'builder.include("${lib.getLib glib}/lib/glib-2.0/include");' ''; - cargoHash = "sha256-U7vOTZsWtOTP3XCn5iSVvM1HmuvG+bRMMjN1EbB/TkI="; + cargoHash = "sha256-QTnDiNFrBl8E6BgFL1HjoJhGfMBUzOoMimkyKdwUcks="; __structuredAttrs = true; From 056671d24ea2e2edf2712c09228959b2f79952d3 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 17 Jun 2026 20:45:46 +0200 Subject: [PATCH 14/31] tuxedo: 2026.6.2 -> 2026.6.3 Diff: https://github.com/webstonehq/tuxedo/compare/v2026.6.2...v2026.6.3 Changelog: https://github.com/webstonehq/tuxedo/releases/tag/v2026.6.3 --- pkgs/by-name/tu/tuxedo/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/tu/tuxedo/package.nix b/pkgs/by-name/tu/tuxedo/package.nix index aba3f266771b..57e42632a085 100644 --- a/pkgs/by-name/tu/tuxedo/package.nix +++ b/pkgs/by-name/tu/tuxedo/package.nix @@ -8,17 +8,17 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "tuxedo"; - version = "2026.6.2"; + version = "2026.6.3"; __structuredAttrs = true; src = fetchFromGitHub { owner = "webstonehq"; repo = "tuxedo"; tag = "v${finalAttrs.version}"; - hash = "sha256-0ulyr7AbB6KZbAAvxc/s0NJTPBYS42UCbEXYREJTWMo="; + hash = "sha256-1uTa+S1bUyBsWy5FpmXFbggFc7lMbnDKul0h1O4NvMI="; }; - cargoHash = "sha256-Sd3O/bw3/FZeas2eWAvSV3HWcDQg8Cla2hagWVYRKsc="; + cargoHash = "sha256-PIhtD0/0hxFOn51PwOWCtz82a2dvhS+2jbd8Wvr/JUM="; preCheck = '' export HOME="$TMPDIR/home" From 72bc27377e2711764081cdd1b0c0968e143ddc08 Mon Sep 17 00:00:00 2001 From: David Ruiz Date: Wed, 17 Jun 2026 20:49:34 +0200 Subject: [PATCH 15/31] vimPlugins.slimline-nvim: init at 2.10.0 https://github.com/sschleemilch/slimline.nvim Component submodules under `slimline.components.*` read the user-supplied `slimline.config` at require time, so they fail nvimRequireCheck without an active user configuration. Skip them via `nvimSkipModules` in overrides.nix. --- .../applications/editors/vim/plugins/generated.nix | 14 ++++++++++++++ .../applications/editors/vim/plugins/overrides.nix | 14 ++++++++++++++ .../editors/vim/plugins/vim-plugin-names | 1 + 3 files changed, 29 insertions(+) diff --git a/pkgs/applications/editors/vim/plugins/generated.nix b/pkgs/applications/editors/vim/plugins/generated.nix index dc433b28353a..064caf4daebc 100644 --- a/pkgs/applications/editors/vim/plugins/generated.nix +++ b/pkgs/applications/editors/vim/plugins/generated.nix @@ -16128,6 +16128,20 @@ final: prev: { meta.hydraPlatforms = [ ]; }; + slimline-nvim = buildVimPlugin { + pname = "slimline.nvim"; + version = "2.10.0"; + src = fetchFromGitHub { + owner = "sschleemilch"; + repo = "slimline.nvim"; + tag = "v2.10.0"; + hash = "sha256-ma+79ysHuTe4KxmFjxO0xMCz/bvhc3mc3sXBNcecjdI="; + }; + meta.homepage = "https://github.com/sschleemilch/slimline.nvim/"; + meta.license = getLicenseFromSpdxId "MIT"; + meta.hydraPlatforms = [ ]; + }; + slimv = buildVimPlugin { pname = "slimv"; version = "0.9.13-unstable-2026-05-17"; diff --git a/pkgs/applications/editors/vim/plugins/overrides.nix b/pkgs/applications/editors/vim/plugins/overrides.nix index 63cf04e188fa..048136405dff 100644 --- a/pkgs/applications/editors/vim/plugins/overrides.nix +++ b/pkgs/applications/editors/vim/plugins/overrides.nix @@ -4084,6 +4084,20 @@ assertNoAdditions { }; }); + slimline-nvim = super.slimline-nvim.overrideAttrs { + nvimSkipModules = [ + # Component modules read the user-supplied slimline.config at require time. + "slimline.components.diagnostics" + "slimline.components.filetype_lsp" + "slimline.components.mode" + "slimline.components.path" + "slimline.components.progress" + "slimline.components.recording" + "slimline.components.searchcount" + "slimline.components.selectioncount" + ]; + }; + smart-open-nvim = super.smart-open-nvim.overrideAttrs { dependencies = with self; [ plenary-nvim diff --git a/pkgs/applications/editors/vim/plugins/vim-plugin-names b/pkgs/applications/editors/vim/plugins/vim-plugin-names index 1ca54bd8537c..8e0ef82824a3 100644 --- a/pkgs/applications/editors/vim/plugins/vim-plugin-names +++ b/pkgs/applications/editors/vim/plugins/vim-plugin-names @@ -1150,6 +1150,7 @@ https://github.com/folke/sidekick.nvim/,, https://github.com/AndrewRadev/sideways.vim/,, https://github.com/skim-rs/skim.vim/,, https://github.com/mopp/sky-color-clock.vim/,, +https://github.com/sschleemilch/slimline.nvim/,, https://github.com/kovisoft/slimv/,, https://github.com/danielfalk/smart-open.nvim/,, https://github.com/mrjones2014/smart-splits.nvim/,, From 5ae2c040e230ed3ddb6464b5741e8cf475104fe6 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 17 Jun 2026 20:51:20 +0200 Subject: [PATCH 16/31] tuxedo: use `writableTmpDirAsHomeHook` --- pkgs/by-name/tu/tuxedo/package.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/by-name/tu/tuxedo/package.nix b/pkgs/by-name/tu/tuxedo/package.nix index 57e42632a085..7872da38b27e 100644 --- a/pkgs/by-name/tu/tuxedo/package.nix +++ b/pkgs/by-name/tu/tuxedo/package.nix @@ -2,6 +2,7 @@ lib, rustPlatform, fetchFromGitHub, + writableTmpDirAsHomeHook, nix-update-script, versionCheckHook, }: @@ -20,18 +21,7 @@ rustPlatform.buildRustPackage (finalAttrs: { cargoHash = "sha256-PIhtD0/0hxFOn51PwOWCtz82a2dvhS+2jbd8Wvr/JUM="; - preCheck = '' - export HOME="$TMPDIR/home" - export XDG_CONFIG_HOME="$TMPDIR/config" - export XDG_CACHE_HOME="$TMPDIR/cache" - export XDG_STATE_HOME="$TMPDIR/state" - - mkdir -p \ - "$HOME" \ - "$XDG_CONFIG_HOME" \ - "$XDG_CACHE_HOME" \ - "$XDG_STATE_HOME" - ''; + nativeCheckInputs = [ writableTmpDirAsHomeHook ]; passthru.updateScript = nix-update-script { }; @@ -42,6 +32,7 @@ rustPlatform.buildRustPackage (finalAttrs: { # Failure "--skip=insert_dialog_after_nl_parse" ]; + meta = { description = "fast, keyboard-driven terminal UI for todo.txt"; homepage = "https://github.com/webstonehq/tuxedo"; From 61bfac53212ae12c920cb00901c351dff549514a Mon Sep 17 00:00:00 2001 From: crop Date: Tue, 16 Jun 2026 00:02:11 +0200 Subject: [PATCH 17/31] maintainers: add crop --- maintainers/maintainer-list.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/maintainers/maintainer-list.nix b/maintainers/maintainer-list.nix index aac1da3c21f4..2381e027592b 100644 --- a/maintainers/maintainer-list.nix +++ b/maintainers/maintainer-list.nix @@ -5723,6 +5723,12 @@ githubId = 4162215; keys = [ { fingerprint = "CE97 9DEE 904C 26AA 3716 78C2 96A4 38F9 EE72 572F"; } ]; }; + crop = { + email = "crop_tech@proton.me"; + name = "crop"; + github = "crop2000"; + githubId = 176233921; + }; crschnick = { email = "crschnick@xpipe.io"; name = "Christopher Schnick"; From 8a8fb0c6e48295c2e8d9cee4cc636c8923823c29 Mon Sep 17 00:00:00 2001 From: crop Date: Tue, 16 Jun 2026 00:18:53 +0200 Subject: [PATCH 18/31] kr106: init at version v2.5.13 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit basically the version proposed by @liberodark Co-authored-by: GaƩtan Lepage --- pkgs/by-name/kr/kr106/package.nix | 92 +++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 pkgs/by-name/kr/kr106/package.nix diff --git a/pkgs/by-name/kr/kr106/package.nix b/pkgs/by-name/kr/kr106/package.nix new file mode 100644 index 000000000000..06a3167c1b05 --- /dev/null +++ b/pkgs/by-name/kr/kr106/package.nix @@ -0,0 +1,92 @@ +{ + lib, + stdenv, + fetchFromGitHub, + cmake, + pkg-config, + alsa-lib, + freetype, + fontconfig, + libGL, + libx11, + libxcursor, + libxext, + libxinerama, + libxrandr, + nix-update-script, +}: + +stdenv.mkDerivation (finalAttrs: { + pname = "kr106"; + version = "2.5.13"; + + src = fetchFromGitHub { + owner = "kayrockscreenprinting"; + repo = "ultramaster_kr106"; + tag = "v${finalAttrs.version}"; + fetchSubmodules = true; + hash = "sha256-R0nvtdhhrT+ucpBSsWjJEUCInd4/0jDammlUsaCgL6M="; + }; + + nativeBuildInputs = [ + cmake + pkg-config + ]; + + buildInputs = [ + alsa-lib + freetype + fontconfig + libGL + libx11 + libxcursor + libxext + libxinerama + libxrandr + ]; + + cmakeFlags = [ + (lib.cmakeBool "KR106_COPY_AFTER_BUILD" false) + ]; + + # JUCE dlopen's these at runtime, crashes without them + env.NIX_LDFLAGS = toString [ + "-lX11" + "-lXext" + "-lXcursor" + "-lXinerama" + "-lXrandr" + ]; + + installPhase = '' + runHook preInstall + + mkdir -p $out/lib + cp -r KR106_artefacts/Release/LV2 $out/lib/lv2 + cp -r KR106_artefacts/Release/VST3 $out/lib/vst3 + cp -r KR106_artefacts/Release/CLAP $out/lib/clap + install -Dm755 "KR106_artefacts/Release/Standalone/Ultramaster KR-106" $out/bin/kr106 + + runHook postInstall + ''; + + __structuredAttrs = true; + strictDeps = true; + + doInstallCheck = true; + + passthru = { + updateScript = nix-update-script { }; + }; + + meta = { + description = "Synthesizer plugin emulating the Roland Juno-6, Juno-60 and Juno-106"; + homepage = "https://kayrock.org/kr106"; + downloadPage = "https://github.com/kayrockscreenprinting/ultramaster_kr106"; + changelog = "https://kayrock.org/kr106/changelog.html"; + license = lib.licenses.gpl3Only; + maintainers = with lib.maintainers; [ crop ]; + platforms = lib.platforms.linux; + mainProgram = "kr106"; + }; +}) From 13fdcebd4b02dd0d2db97ab7f8d72e240e9fa637 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Wed, 17 Jun 2026 20:46:25 +0000 Subject: [PATCH 19/31] gauge-unwrapped: 1.6.31 -> 1.6.32 --- pkgs/by-name/ga/gauge-unwrapped/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ga/gauge-unwrapped/package.nix b/pkgs/by-name/ga/gauge-unwrapped/package.nix index 1991fadd7378..b8b146f266d2 100644 --- a/pkgs/by-name/ga/gauge-unwrapped/package.nix +++ b/pkgs/by-name/ga/gauge-unwrapped/package.nix @@ -6,7 +6,7 @@ buildGoModule (finalAttrs: { pname = "gauge"; - version = "1.6.31"; + version = "1.6.32"; patches = [ # adds a check which adds an error message when trying to @@ -18,10 +18,10 @@ buildGoModule (finalAttrs: { owner = "getgauge"; repo = "gauge"; tag = "v${finalAttrs.version}"; - hash = "sha256-rvhWZgw0lq/YF8Js4UsIqiVOWe5/56bOaCq87+gdmPA="; + hash = "sha256-j8nT39mwRvccZQyrhviQxPbM3Cd7F2x4X24OYFq3LYQ="; }; - vendorHash = "sha256-FdTauyiGjmNRJNsVG4tS8PesC8J24NqQ4rmW3EgCoQk="; + vendorHash = "sha256-OmGKpgsouK5W/DWFi8vNT/0HSX5HqaAzNdN8eEAhNhk="; excludedPackages = [ "build" From a77fa848833a755fcee8c66c1b02fd07d70d07d7 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Wed, 17 Jun 2026 22:59:26 +0200 Subject: [PATCH 20/31] tuxedo: fix builds on Darwin --- pkgs/by-name/tu/tuxedo/package.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/tu/tuxedo/package.nix b/pkgs/by-name/tu/tuxedo/package.nix index 7872da38b27e..a98a359fb42e 100644 --- a/pkgs/by-name/tu/tuxedo/package.nix +++ b/pkgs/by-name/tu/tuxedo/package.nix @@ -23,16 +23,18 @@ rustPlatform.buildRustPackage (finalAttrs: { nativeCheckInputs = [ writableTmpDirAsHomeHook ]; - passthru.updateScript = nix-update-script { }; - doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ]; + __darwinAllowLocalNetworking = true; + checkFlags = [ # Failure "--skip=insert_dialog_after_nl_parse" ]; + passthru.updateScript = nix-update-script { }; + meta = { description = "fast, keyboard-driven terminal UI for todo.txt"; homepage = "https://github.com/webstonehq/tuxedo"; From 3ef4f905369f5ecad395de24e81433ab5edf9581 Mon Sep 17 00:00:00 2001 From: Mio Date: Thu, 18 Jun 2026 09:27:47 +1000 Subject: [PATCH 21/31] nixos/sniffnet: install package when enabled --- nixos/modules/programs/sniffnet.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/programs/sniffnet.nix b/nixos/modules/programs/sniffnet.nix index 91d56871dac6..6258bcb67c95 100644 --- a/nixos/modules/programs/sniffnet.nix +++ b/nixos/modules/programs/sniffnet.nix @@ -17,6 +17,8 @@ in }; config = lib.mkIf cfg.enable { + environment.systemPackages = [ pkgs.sniffnet ]; + security.wrappers.sniffnet = { owner = "root"; group = "root"; From 17d9278f493b77199857b326e5ae574fa4d38dd6 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Jun 2026 00:35:03 +0000 Subject: [PATCH 22/31] buildkit: 0.30.0 -> 0.31.0 --- pkgs/by-name/bu/buildkit/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/bu/buildkit/package.nix b/pkgs/by-name/bu/buildkit/package.nix index d5eaa20bfdf4..247a267aa1a3 100644 --- a/pkgs/by-name/bu/buildkit/package.nix +++ b/pkgs/by-name/bu/buildkit/package.nix @@ -7,13 +7,13 @@ buildGoModule (finalAttrs: { pname = "buildkit"; - version = "0.30.0"; + version = "0.31.0"; src = fetchFromGitHub { owner = "moby"; repo = "buildkit"; rev = "v${finalAttrs.version}"; - hash = "sha256-7QyfQew0RuL/EpJlKuY5CXdCiFwIS2Z4i1Fd4yUTx7g="; + hash = "sha256-mTYNyz2H980l7/Vcyf9wnEgmi2j6S63C9ZcwOaK/+YY="; }; vendorHash = null; From 0c7c9bb889b3328d6f13d9c83f67f2e6ee815e6e Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Jun 2026 02:10:44 +0000 Subject: [PATCH 23/31] gpxsee: 16.8 -> 16.9 --- pkgs/by-name/gp/gpxsee/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/gp/gpxsee/package.nix b/pkgs/by-name/gp/gpxsee/package.nix index cf93f011dfb4..b26d4010ac18 100644 --- a/pkgs/by-name/gp/gpxsee/package.nix +++ b/pkgs/by-name/gp/gpxsee/package.nix @@ -9,13 +9,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gpxsee"; - version = "16.8"; + version = "16.9"; src = fetchFromGitHub { owner = "tumic0"; repo = "GPXSee"; tag = finalAttrs.version; - hash = "sha256-8G1PN4sN/OawEetbud+va8tTSzY2sb27e3sLNWOwSfk="; + hash = "sha256-pb5HsmGIiC2A5IjGYm+M636J7vM8LP9LFGINkSaSSj4="; }; buildInputs = [ From a8114994e9cec99972a9b5c6488611bc35d89ba2 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Jun 2026 02:34:37 +0000 Subject: [PATCH 24/31] cargo-expand: 1.0.122 -> 1.0.123 --- pkgs/by-name/ca/cargo-expand/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ca/cargo-expand/package.nix b/pkgs/by-name/ca/cargo-expand/package.nix index 07b9e98b45c4..1c4dc8cbbc02 100644 --- a/pkgs/by-name/ca/cargo-expand/package.nix +++ b/pkgs/by-name/ca/cargo-expand/package.nix @@ -8,16 +8,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "cargo-expand"; - version = "1.0.122"; + version = "1.0.123"; src = fetchFromGitHub { owner = "dtolnay"; repo = "cargo-expand"; tag = finalAttrs.version; - hash = "sha256-GhlVBpTkh4uCpfQdBl5ACbkXpH5UO5w/an/w9FA4dT4="; + hash = "sha256-vd63DpKLZpE+fIdfy4gp9PDSSLICPXZdrjk7hMB9L0A="; }; - cargoHash = "sha256-CV+lfWLcyXoXPv8KLutJ819YIaKf3BHOZrj1eP3VMzo="; + cargoHash = "sha256-mLpihgQ5PNRE72xWRHgcA8KxujR7Pi4bGnwahOQJ4qo="; nativeInstallCheckInputs = [ versionCheckHook ]; doInstallCheck = true; From 1c95683621db04e25b8ed59439bcde32c3ff3100 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Jun 2026 06:28:56 +0000 Subject: [PATCH 25/31] mdfried: 0.22.0 -> 0.22.2 --- pkgs/by-name/md/mdfried/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/md/mdfried/package.nix b/pkgs/by-name/md/mdfried/package.nix index 2291edeeeba0..276656a43e77 100644 --- a/pkgs/by-name/md/mdfried/package.nix +++ b/pkgs/by-name/md/mdfried/package.nix @@ -10,16 +10,16 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "mdfried"; - version = "0.22.0"; + version = "0.22.2"; src = fetchFromGitHub { owner = "benjajaja"; repo = "mdfried"; tag = "v${finalAttrs.version}"; - hash = "sha256-zJSh5g1FkR/nqk2qj22Xo8qIOjwyF346PM4KOUOCBBo="; + hash = "sha256-HRtuqnD6erRC1Xx+3NSbaFgqRHzurj1xbOJNGykGIpU="; }; - cargoHash = "sha256-2wwaEKknnxX6QuE+6udHL2GTOuPpS1oqRI+b3aP0e1I="; + cargoHash = "sha256-jnByeBBL13DavExG2pVN7vNRr+UXGkxRY0a4MkwzRe0="; nativeBuildInputs = [ pkg-config From e7e551ec4ba185731a12ff554520e2fca7b45c9c Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Jun 2026 07:36:19 +0000 Subject: [PATCH 26/31] home-assistant-custom-components.better_thermostat: 1.8.1 -> 1.8.2 --- .../custom-components/better_thermostat/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/home-assistant/custom-components/better_thermostat/package.nix b/pkgs/servers/home-assistant/custom-components/better_thermostat/package.nix index 30cd2e4552a3..f18d33475c4c 100644 --- a/pkgs/servers/home-assistant/custom-components/better_thermostat/package.nix +++ b/pkgs/servers/home-assistant/custom-components/better_thermostat/package.nix @@ -8,13 +8,13 @@ buildHomeAssistantComponent rec { owner = "KartoffelToby"; domain = "better_thermostat"; - version = "1.8.1"; + version = "1.8.2"; src = fetchFromGitHub { owner = "KartoffelToby"; repo = "better_thermostat"; tag = version; - hash = "sha256-VSTGYs97ro65rrV80D6b3/XEeGi86FzXwU5nPabS5gE="; + hash = "sha256-agGCRIhCVRJWFXdva4lOjeM1Qh7LvYBowGi7LiatnMU="; }; passthru.updateScript = gitUpdater { From 7d5d29b8a7b00879ff909d6d774aa992ec82c7e7 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 18 Jun 2026 07:54:05 +0000 Subject: [PATCH 27/31] python3Packages.ggml-python: 0.0.41 -> 0.0.42 Diff: https://github.com/abetlen/ggml-python/compare/v0.0.41...v0.0.42 --- pkgs/development/python-modules/ggml-python/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/ggml-python/default.nix b/pkgs/development/python-modules/ggml-python/default.nix index 671bb7a357a8..dfc5798bc261 100644 --- a/pkgs/development/python-modules/ggml-python/default.nix +++ b/pkgs/development/python-modules/ggml-python/default.nix @@ -34,7 +34,7 @@ buildPythonPackage (finalAttrs: { pname = "ggml-python"; - version = "0.0.41"; + version = "0.0.42"; pyproject = true; __structuredAttrs = true; @@ -44,7 +44,7 @@ buildPythonPackage (finalAttrs: { tag = "v${finalAttrs.version}"; # ggml-python expects an older version of ggml than pkgs.ggml's fetchSubmodules = true; - hash = "sha256-gtjoB62thkGx4N8gYsb8P8uFTHiGz0FrTLLqLBPA97M="; + hash = "sha256-dbYxAropTT8h1BnMg4Ua1hY/IUYWHaZcS0ckj38UoO4="; }; build-system = [ From 27f2564b552ed716dcd4f4decd5f0a00e619f144 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Jun 2026 07:58:46 +0000 Subject: [PATCH 28/31] linyaps-box: 2.1.2 -> 2.2.0 --- pkgs/by-name/li/linyaps-box/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/li/linyaps-box/package.nix b/pkgs/by-name/li/linyaps-box/package.nix index 00bb109c0759..d4d11afd0e63 100644 --- a/pkgs/by-name/li/linyaps-box/package.nix +++ b/pkgs/by-name/li/linyaps-box/package.nix @@ -13,13 +13,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "linyaps-box"; - version = "2.1.2"; + version = "2.2.0"; src = fetchFromGitHub { owner = "OpenAtom-Linyaps"; repo = "linyaps-box"; rev = finalAttrs.version; - hash = "sha256-i4wSddstCosDpBEcunoVsV464PTHmuvDDEFrsPQKnxU="; + hash = "sha256-s17BI5nftQFrDZQVKBJjQYSOJHDPlkA2VLG4Hd61xSY="; }; nativeBuildInputs = [ From b0908d474aa810922f27ad59c7594ec21933b588 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Thu, 18 Jun 2026 09:06:48 +0000 Subject: [PATCH 29/31] switchfin: 0.9.0 -> 0.9.1 --- pkgs/by-name/sw/switchfin/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/sw/switchfin/package.nix b/pkgs/by-name/sw/switchfin/package.nix index 36bd4b2afe70..544ade8a4af8 100644 --- a/pkgs/by-name/sw/switchfin/package.nix +++ b/pkgs/by-name/sw/switchfin/package.nix @@ -17,13 +17,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "switchfin"; - version = "0.9.0"; + version = "0.9.1"; src = fetchFromGitHub { owner = "dragonflylee"; repo = "switchfin"; rev = finalAttrs.version; - hash = "sha256-W1qdU9x9GTdLkGNaGE9BopQAO6QIanzPbOvD2wEhfUw="; + hash = "sha256-Q/AXCnw3NZh9Y0CciP87vmVsoHggMMKL4SYdmLhC62c="; fetchSubmodules = true; }; From 37a1ccb86cc1dca46d22326114d13b530bd870dd Mon Sep 17 00:00:00 2001 From: K900 Date: Thu, 18 Jun 2026 15:48:09 +0300 Subject: [PATCH 30/31] mesa: 26.1.2 -> 26.1.3 Diff: https://gitlab.freedesktop.org/mesa/mesa/-/compare/mesa-26.1.2...mesa-26.1.3 Changelog: https://docs.mesa3d.org/relnotes/26.1.3.html --- pkgs/development/libraries/mesa/common.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/mesa/common.nix b/pkgs/development/libraries/mesa/common.nix index 979a4c44a604..bd4040f6e184 100644 --- a/pkgs/development/libraries/mesa/common.nix +++ b/pkgs/development/libraries/mesa/common.nix @@ -5,14 +5,14 @@ # nix build .#legacyPackages.x86_64-darwin.mesa .#legacyPackages.aarch64-darwin.mesa rec { pname = "mesa"; - version = "26.1.2"; + version = "26.1.3"; src = fetchFromGitLab { domain = "gitlab.freedesktop.org"; owner = "mesa"; repo = "mesa"; rev = "mesa-${version}"; - hash = "sha256-GqIU9BL57n+ihpeXug+K9kOtvHZ+LCUQg1wi/rrYWuc="; + hash = "sha256-W2Ud9wmiIuDYMnFj8sK2SGAI1WayMCtdj7/7od/1Ql4="; }; meta = { From 46e58bbc0020df96320383da3069387f75b52c52 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Thu, 18 Jun 2026 14:48:44 +0200 Subject: [PATCH 31/31] nixos/pretalx: exclude SC1091 for pretalx-manage The wrapper sources environment files that may or may not be available at build time. --- nixos/modules/services/web-apps/pretalx.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/modules/services/web-apps/pretalx.nix b/nixos/modules/services/web-apps/pretalx.nix index c67910f03fb6..16fc6f090983 100644 --- a/nixos/modules/services/web-apps/pretalx.nix +++ b/nixos/modules/services/web-apps/pretalx.nix @@ -48,6 +48,10 @@ let } } -- ${lib.getExe' pythonEnv "pretalx-manage"} "$@" ''; + excludeShellChecks = [ + # Not following: /run/agenix/pretalx-env was not specified as input + "SC1091" + ]; }; in