From 5eaf5fe4a92cc6c84bdafc9178d56addec58a92f Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 4 Oct 2025 15:49:27 +0000 Subject: [PATCH 01/14] k9s: 0.50.12 -> 0.50.13 --- pkgs/by-name/k9/k9s/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/k9/k9s/package.nix b/pkgs/by-name/k9/k9s/package.nix index 5c9db57ab782..e0ab9190a475 100644 --- a/pkgs/by-name/k9/k9s/package.nix +++ b/pkgs/by-name/k9/k9s/package.nix @@ -12,13 +12,13 @@ buildGoModule (finalAttrs: { pname = "k9s"; - version = "0.50.12"; + version = "0.50.13"; src = fetchFromGitHub { owner = "derailed"; repo = "k9s"; tag = "v${finalAttrs.version}"; - hash = "sha256-eN0z2Q6aMUcDnIyA1EoixKnDFvG7b7Z1F0LKZvV7pQo="; + hash = "sha256-X1AZArXeqfn+YSkj3c4gIVJrFvA4U3oV/XtvpsNhutg="; }; ldflags = [ @@ -32,7 +32,7 @@ buildGoModule (finalAttrs: { proxyVendor = true; - vendorHash = "sha256-Y0GBQf/iPhfBAlQGd/Ecn2fv0pspVzOTrmOzAluwfNY="; + vendorHash = "sha256-6IYMrh1wIiU2jy9RMpFWfjlerpfW/luFcusmlWBS7RE="; # TODO investigate why some config tests are failing doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); From 68d41691775497d60b8855d732386f4bc2c076d0 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 4 Oct 2025 18:00:38 +0000 Subject: [PATCH 02/14] dprint-plugins.dprint-plugin-biome: 0.10.3 -> 0.10.4 --- pkgs/by-name/dp/dprint/plugins/dprint-plugin-biome.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/dp/dprint/plugins/dprint-plugin-biome.nix b/pkgs/by-name/dp/dprint/plugins/dprint-plugin-biome.nix index a6d386fdd5ae..2707f2da497b 100644 --- a/pkgs/by-name/dp/dprint/plugins/dprint-plugin-biome.nix +++ b/pkgs/by-name/dp/dprint/plugins/dprint-plugin-biome.nix @@ -1,7 +1,7 @@ { mkDprintPlugin }: mkDprintPlugin { description = "Biome (JS/TS) wrapper plugin"; - hash = "sha256-hQL9lzyqXGe2HKED21eGepwNUyYaVVoVnxeONoQFyqE="; + hash = "sha256-czgTZXlW+LdTKGtX7JJtG7qAbnWlQpunMY92WiC+X8A="; initConfig = { configExcludes = [ "**/node_modules" ]; configKey = "biome"; @@ -16,6 +16,6 @@ mkDprintPlugin { }; pname = "dprint-plugin-biome"; updateUrl = "https://plugins.dprint.dev/dprint/biome/latest.json"; - url = "https://plugins.dprint.dev/biome-0.10.3.wasm"; - version = "0.10.3"; + url = "https://plugins.dprint.dev/biome-0.10.4.wasm"; + version = "0.10.4"; } From 1e60af0ecc8a8a440be13703d5ad1ff04fdf6410 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 4 Oct 2025 19:59:19 +0000 Subject: [PATCH 03/14] gitify: 6.8.0 -> 6.9.1 --- pkgs/by-name/gi/gitify/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gi/gitify/package.nix b/pkgs/by-name/gi/gitify/package.nix index ecdbe3ae769e..33b42d89cc49 100644 --- a/pkgs/by-name/gi/gitify/package.nix +++ b/pkgs/by-name/gi/gitify/package.nix @@ -14,13 +14,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "gitify"; - version = "6.8.0"; + version = "6.9.1"; src = fetchFromGitHub { owner = "gitify-app"; repo = "gitify"; tag = "v${finalAttrs.version}"; - hash = "sha256-7/pa9QG4MojqFcWhuunNEs+4+Z4jI9nMCGinV9YotwA="; + hash = "sha256-Bd2Yy2wpO0ksAv3O19QhKFSbX+QjFaYZ4iE1b7lc6VI="; }; nativeBuildInputs = [ @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { pnpmDeps = pnpm_10.fetchDeps { inherit (finalAttrs) pname version src; fetcherVersion = 2; - hash = "sha256-Sf1yaBR2q0TADHIcot7euNL69E1w2FN2JKSvJeZqfkA="; + hash = "sha256-/iNKeHjVQhkpm0lXZ6WBcm5Y0HOktsMQR1G4KEHYJCE="; }; env.ELECTRON_SKIP_BINARY_DOWNLOAD = 1; From 02843ee432e578a56bb16b97bfd44a3544b164cd Mon Sep 17 00:00:00 2001 From: Felix Singer Date: Sat, 4 Oct 2025 22:32:36 +0200 Subject: [PATCH 04/14] comrak: 0.42.0 -> 0.43.0 Signed-off-by: Felix Singer --- pkgs/by-name/co/comrak/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/co/comrak/package.nix b/pkgs/by-name/co/comrak/package.nix index 8eeb1c4a5212..7023ddf7e8db 100644 --- a/pkgs/by-name/co/comrak/package.nix +++ b/pkgs/by-name/co/comrak/package.nix @@ -6,16 +6,16 @@ rustPlatform.buildRustPackage rec { pname = "comrak"; - version = "0.42.0"; + version = "0.43.0"; src = fetchFromGitHub { owner = "kivikakk"; repo = "comrak"; rev = "v${version}"; - sha256 = "sha256-xPT5gJkFxszn1Z0EBtp70e3uDRD2mn1f3jtS1yBAdgI="; + sha256 = "sha256-v/KoV4wYHAivFIozkvG1LgvqlcWZKMmdA+/6F6Xffak="; }; - cargoHash = "sha256-pLjOb8P2CGxj40bPCUqW6tZpiiqur/smDp34UOc1Uv0="; + cargoHash = "sha256-gzHHOHPVmP7656T4D53pvxGVNJqjgEq5kzuBoHQUiMI="; meta = { description = "CommonMark-compatible GitHub Flavored Markdown parser and formatter"; From f3991e50480f01df2c520944aa0b49992f51a666 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 4 Oct 2025 20:39:08 +0000 Subject: [PATCH 05/14] got: 0.118.1 -> 0.120 --- pkgs/by-name/go/got/package.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/by-name/go/got/package.nix b/pkgs/by-name/go/got/package.nix index e88584546e4a..de8586086fe1 100644 --- a/pkgs/by-name/go/got/package.nix +++ b/pkgs/by-name/go/got/package.nix @@ -25,11 +25,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "got"; - version = "0.118.1"; + version = "0.120"; src = fetchurl { url = "https://gameoftrees.org/releases/portable/got-portable-${finalAttrs.version}.tar.gz"; - hash = "sha256-d8E4eR7eb6nFNQeHEf977Un+VNhsGGsIIMumXLCbplA="; + hash = "sha256-t6YMZ2H23CgQ9nZgaisy63YxwXqW3MdLjZm2e5Hon0M="; }; nativeBuildInputs = [ From d6c53aedacfddeada5a1f348ad7ce6b257757878 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sat, 4 Oct 2025 23:36:10 +0000 Subject: [PATCH 06/14] super-productivity: 15.0.0 -> 15.0.3 --- pkgs/by-name/su/super-productivity/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/su/super-productivity/package.nix b/pkgs/by-name/su/super-productivity/package.nix index 8016457a79db..8be9245e312e 100644 --- a/pkgs/by-name/su/super-productivity/package.nix +++ b/pkgs/by-name/su/super-productivity/package.nix @@ -14,13 +14,13 @@ buildNpmPackage rec { pname = "super-productivity"; - version = "15.0.0"; + version = "15.0.3"; src = fetchFromGitHub { owner = "johannesjo"; repo = "super-productivity"; tag = "v${version}"; - hash = "sha256-Wik0u5NXWhQUWQar9yV4DkAIYZHOaC7FlhAM+YXWFBA="; + hash = "sha256-Nc9S8vAj8HFFSkVexBpHW1Sd3hGSVNqY0YRWeDyOA3w="; postFetch = '' find $out -name package-lock.json -exec ${lib.getExe npm-lockfile-fix} -r {} \; @@ -63,7 +63,7 @@ buildNpmPackage rec { dontInstall = true; outputHashMode = "recursive"; - hash = "sha256-+lpK8SnXvk33hc/Pmv5g88/gQAT5tHgNDOCetOLgmnU="; + hash = "sha256-PilTsWaNCP6OTFCgIKtwxLGjUCKpCM+HLXwpWNwYTtA="; } ); From 4f563c4ac42e72006af2b39f13381f779502c048 Mon Sep 17 00:00:00 2001 From: "R. Ryantm" Date: Sun, 5 Oct 2025 00:39:05 +0000 Subject: [PATCH 07/14] kdePackages.qtpbfimageplugin: 4.7 -> 5.0 --- pkgs/development/libraries/qtpbfimageplugin/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/qtpbfimageplugin/default.nix b/pkgs/development/libraries/qtpbfimageplugin/default.nix index 324dbded0267..52c83faa3c97 100644 --- a/pkgs/development/libraries/qtpbfimageplugin/default.nix +++ b/pkgs/development/libraries/qtpbfimageplugin/default.nix @@ -8,13 +8,13 @@ stdenv.mkDerivation rec { pname = "qtpbfimageplugin"; - version = "4.7"; + version = "5.0"; src = fetchFromGitHub { owner = "tumic0"; repo = "QtPBFImagePlugin"; tag = version; - hash = "sha256-XcHfzBMLCP5ScGz1COpl+kYXzEZATYqvhDfKVS7ona4="; + hash = "sha256-ruaYJ3onc1banwgpZ0Gh7n8fZ9t7DQ6D6gshXH2IXfc="; }; nativeBuildInputs = [ From b5d8eda88cf7dd9f2b73bc46ae6b507b29fa78ce Mon Sep 17 00:00:00 2001 From: misilelab Date: Sun, 5 Oct 2025 14:43:22 +0900 Subject: [PATCH 08/14] act: 0.2.81 -> 0.2.82 https://github.com/nektos/act/releases/tag/v0.2.82 Signed-off-by: misilelab --- pkgs/by-name/ac/act/package.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ac/act/package.nix b/pkgs/by-name/ac/act/package.nix index 2919515f7859..b407ba2b7c57 100644 --- a/pkgs/by-name/ac/act/package.nix +++ b/pkgs/by-name/ac/act/package.nix @@ -8,7 +8,7 @@ }: let - version = "0.2.81"; + version = "0.2.82"; in buildGoModule { pname = "act"; @@ -18,10 +18,10 @@ buildGoModule { owner = "nektos"; repo = "act"; tag = "v${version}"; - hash = "sha256-5HTdvJiX8F6SA2mzlcmzBlx8oiJ72j9Nfg64b6Ob8NQ="; + hash = "sha256-NIslUM0kvgS4szejCngb1zJ+cjlJ970XkeegDjyOYIs="; }; - vendorHash = "sha256-v17TglIf+N3GfzHhutNX+nZeqVFheh/cXcCN1VgffT0="; + vendorHash = "sha256-EQgW+I0HjJhKioN0Moke9i+OggyJOSOHyatYnED4NX4="; doCheck = false; From 09d00053f76b60dfed3b41932e63597d1eb5fa64 Mon Sep 17 00:00:00 2001 From: iamanaws <78835633+Iamanaws@users.noreply.github.com> Date: Sat, 4 Oct 2025 23:05:19 -0700 Subject: [PATCH 09/14] mongodb-atlas-cli: 1.46.2 -> 1.48.0 --- pkgs/by-name/mo/mongodb-atlas-cli/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/mo/mongodb-atlas-cli/package.nix b/pkgs/by-name/mo/mongodb-atlas-cli/package.nix index faf0045737d3..d6edc7b1fada 100644 --- a/pkgs/by-name/mo/mongodb-atlas-cli/package.nix +++ b/pkgs/by-name/mo/mongodb-atlas-cli/package.nix @@ -11,16 +11,16 @@ buildGoModule rec { pname = "mongodb-atlas-cli"; - version = "1.46.2"; + version = "1.48.0"; src = fetchFromGitHub { owner = "mongodb"; repo = "mongodb-atlas-cli"; - tag = "refs/tags/atlascli/v${version}"; - hash = "sha256-yg6GSG4TXPj4n8s4TK/i7NveJXMAQczONSrLn39PKVI="; + tag = "atlascli/v${version}"; + hash = "sha256-xdsW1REvd6yIsFO9j4t7Ydb9eVt1a3I3TMBYw5eeYXI="; }; - vendorHash = "sha256-z42tJJD/iK9GDnYxdeMYogaMviGABizxX9fdWL8vVik="; + vendorHash = "sha256-Qwk4iVFvNGyam3QNJSuwCHD0BiqPIGV7qj3HfUzJNsQ="; nativeBuildInputs = [ installShellFiles ]; From 6f066d934bc49b4caf1d181620e40a9e890fca7d Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sat, 31 May 2025 19:56:35 +0200 Subject: [PATCH 10/14] ci/treefmt: add nixf-diagnose This currently has plenty of failures, so we disable many checks. We can now start working towards fixing these rules 1-by-1. --- ci/default.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/ci/default.nix b/ci/default.nix index 19229e85414e..629d798831e5 100644 --- a/ci/default.nix +++ b/ci/default.nix @@ -87,6 +87,31 @@ let "pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml" ]; + programs.nixf-diagnose.enable = true; + settings.formatter.nixf-diagnose = { + # Ensure nixfmt cleans up after nixf-diagnose. + priority = -1; + options = [ + "--auto-fix" + # Rule names can currently be looked up here: + # https://github.com/nix-community/nixd/blob/main/libnixf/src/Basic/diagnostic.py + # TODO: Remove the following and fix things. + "--ignore=parse-redundant-paren" + "--ignore=sema-extra-rec" + "--ignore=sema-extra-with" + "--ignore=sema-unused-def-lambda-noarg-formal" + "--ignore=sema-unused-def-lambda-witharg-arg" + "--ignore=sema-unused-def-lambda-witharg-formal" + "--ignore=sema-unused-def-let" + # Keep this rule, because we have `lib.or`. + "--ignore=or-identifier" + ]; + excludes = [ + # https://github.com/nix-community/nixd/issues/708 + "nixos/maintainers/scripts/azure-new/examples/basic/system.nix" + ]; + }; + settings.formatter.editorconfig-checker = { command = "${pkgs.lib.getExe pkgs.editorconfig-checker}"; options = [ "-disable-indent-size" ]; From 90e7159c559021ac4f4cc1222000f08a91feff69 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 1 Sep 2025 12:49:06 +0200 Subject: [PATCH 11/14] treewide: remove unused rec Auto-fix by nixf-diagnose. --- ci/default.nix | 1 - nixos/modules/programs/atop.nix | 2 +- .../modules/programs/nix-required-mounts.nix | 2 +- nixos/modules/services/databases/openldap.nix | 2 +- .../services/desktop-managers/gnome.nix | 2 +- nixos/modules/services/misc/gitlab.nix | 2 +- .../services/monitoring/parsedmarc.nix | 2 +- .../services/networking/https-dns-proxy.nix | 2 +- nixos/modules/services/web-apps/flarum.nix | 2 +- nixos/modules/services/web-apps/gancio.nix | 2 +- nixos/tests/hledger-web.nix | 2 +- nixos/tests/installed-tests/default.nix | 2 +- nixos/tests/jenkins-cli.nix | 2 +- nixos/tests/locate.nix | 2 +- nixos/tests/pihole-ftl/basic.nix | 2 +- nixos/tests/web-apps/phylactery.nix | 2 +- nixos/tests/zfs.nix | 4 +- .../editors/kakoune/plugins/overrides.nix | 6 +- .../applications/editors/sublime/3/common.nix | 2 +- .../extensions/ms-python.python/default.nix | 2 +- pkgs/applications/misc/cura/plugins.nix | 2 +- .../networking/cluster/hadoop/default.nix | 4 +- .../networking/cluster/spark/default.nix | 2 +- .../science/logic/klee/default.nix | 2 +- .../system/coolercontrol/default.nix | 2 +- pkgs/build-support/checkpoint-build.nix | 2 +- .../build-rust-crate/test/rcgen-crates.nix | 184 +++++++++--------- pkgs/build-support/rust/lib/default.nix | 2 +- .../by-name/ap/appindicator-sharp/package.nix | 2 +- pkgs/by-name/av/avizo/package.nix | 2 +- pkgs/by-name/bi/bic/package.nix | 2 +- pkgs/by-name/ce/cerca/package.nix | 2 +- pkgs/by-name/ce/certmitm/package.nix | 2 +- pkgs/by-name/cf/cfn-nag/package.nix | 2 +- pkgs/by-name/cj/cjs/package.nix | 2 +- pkgs/by-name/co/code-nautilus/package.nix | 2 +- pkgs/by-name/co/codux/package.nix | 2 +- pkgs/by-name/co/colmap/package.nix | 2 +- pkgs/by-name/co/coltrane/package.nix | 2 +- pkgs/by-name/co/countryguess/package.nix | 2 +- .../by-name/cr/crossfire-gridarta/package.nix | 2 +- pkgs/by-name/dc/dcgm/package.nix | 2 +- pkgs/by-name/de/defaultbrowser/package.nix | 2 +- pkgs/by-name/de/denemo/package.nix | 2 +- pkgs/by-name/dl/dli/package.nix | 2 +- pkgs/by-name/dp/dpms-off/package.nix | 2 +- pkgs/by-name/du/duti/package.nix | 2 +- pkgs/by-name/el/elmerfem/package.nix | 2 +- pkgs/by-name/gi/git-point/package.nix | 2 +- pkgs/by-name/ha/haxor-news/package.nix | 2 +- pkgs/by-name/ik/ike-scan/package.nix | 2 +- pkgs/by-name/ja/jasper-gtk-theme/package.nix | 2 +- pkgs/by-name/ki/kind-lang/package.nix | 2 +- pkgs/by-name/ku/kubernix/package.nix | 2 +- pkgs/by-name/ma/mari0/package.nix | 2 +- .../ni/nix-required-mounts/package.nix | 2 +- pkgs/by-name/no/nordic/package.nix | 2 +- pkgs/by-name/os/osx-cpu-temp/package.nix | 2 +- pkgs/by-name/ot/otto-matic/package.nix | 2 +- pkgs/by-name/ov/overcommit/package.nix | 2 +- pkgs/by-name/ow/owi/package.nix | 2 +- pkgs/by-name/pd/pdm/package.nix | 2 +- pkgs/by-name/po/polar/package.nix | 2 +- pkgs/by-name/pr/precice/package.nix | 2 +- pkgs/by-name/pr/prowler/package.nix | 2 +- .../pu/pulumi/extra/mk-pulumi-package.nix | 2 +- pkgs/by-name/qi/qimgv/package.nix | 2 +- .../re/reversal-icon-theme/package.nix | 2 +- pkgs/by-name/ro/roc/package.nix | 2 +- pkgs/by-name/sa/samfirm-js/package.nix | 2 +- .../sh/shadowsocks-v2ray-plugin/package.nix | 2 +- pkgs/by-name/so/soapyuhd/package.nix | 2 +- pkgs/by-name/ta/tamgamp-lv2/package.nix | 2 +- pkgs/by-name/te/teleport_16/package.nix | 2 +- pkgs/by-name/te/teleport_17/package.nix | 2 +- pkgs/by-name/te/teleport_18/package.nix | 2 +- pkgs/by-name/un/unwaf/package.nix | 2 +- pkgs/by-name/uu/uudeview/package.nix | 2 +- pkgs/by-name/wm/wmutils-opt/package.nix | 2 +- pkgs/by-name/x1/x11docker/package.nix | 2 +- .../xo/xow_dongle-firmware/package.nix | 2 +- pkgs/by-name/ze/zenmap/package.nix | 2 +- pkgs/data/themes/qogir-kde/default.nix | 2 +- .../elementary-session-settings/default.nix | 2 +- .../compilers/gcc/ng/common/default.nix | 14 +- .../compilers/ghc/9.0.2-binary.nix | 2 +- pkgs/development/compilers/ghc/9.10.3.nix | 2 +- pkgs/development/compilers/ghc/9.12.2.nix | 2 +- .../compilers/ghc/9.2.4-binary.nix | 2 +- .../compilers/ghc/9.6.3-binary.nix | 2 +- .../compilers/ghc/9.8.4-binary.nix | 2 +- .../libraries/prometheus-client-c/default.nix | 2 +- .../development/libraries/wlroots/default.nix | 2 +- .../ocaml-modules/augeas/default.nix | 2 +- .../ocaml-modules/cooltt/default.nix | 2 +- .../ocaml-modules/flac/default.nix | 2 +- .../python-modules/datalad-next/default.nix | 2 +- .../python-modules/dbt-common/default.nix | 2 +- .../python-modules/devpi-ldap/default.nix | 2 +- .../python-modules/libsupermesh/default.nix | 2 +- .../python-modules/manifold3d/default.nix | 2 +- .../python-modules/msrplib/default.nix | 2 +- .../python-modules/mypy-boto3/default.nix | 2 +- .../python-modules/nampa/default.nix | 2 +- .../python-modules/py-libnuma/default.nix | 2 +- .../python-modules/pyipv8/default.nix | 2 +- .../python-modules/pyquerylist/default.nix | 2 +- .../python-modules/pysecretsocks/default.nix | 2 +- .../python-modules/pytest-icdiff/default.nix | 2 +- .../python-coinmarketcap/default.nix | 2 +- .../python-modules/python-sat/default.nix | 2 +- .../python-modules/pytorchviz/default.nix | 2 +- .../python-modules/root/default.nix | 2 +- .../python-modules/sss/default.nix | 2 +- .../python-modules/tensorrt/default.nix | 2 +- .../python-modules/xcaplib/default.nix | 2 +- .../tools/analysis/sparse/default.nix | 2 +- .../tools/misc/creduce/default.nix | 2 +- pkgs/development/tools/replay-io/default.nix | 4 +- .../flightgear/openscenegraph-flightgear.nix | 2 +- .../cups/drivers/brother/dcp375cw/default.nix | 2 +- .../drivers/brother/dcp9020cdw/default.nix | 2 +- pkgs/misc/tmux-plugins/default.nix | 4 +- pkgs/os-specific/linux/digimend/default.nix | 2 +- .../custom-components/luxer_one/package.nix | 2 +- pkgs/test/vim/default.nix | 2 +- pkgs/tools/typesetting/tex/texlive/bin.nix | 2 +- pkgs/top-level/lua-packages.nix | 2 +- 128 files changed, 230 insertions(+), 231 deletions(-) diff --git a/ci/default.nix b/ci/default.nix index 629d798831e5..74cea1c01aa5 100644 --- a/ci/default.nix +++ b/ci/default.nix @@ -97,7 +97,6 @@ let # https://github.com/nix-community/nixd/blob/main/libnixf/src/Basic/diagnostic.py # TODO: Remove the following and fix things. "--ignore=parse-redundant-paren" - "--ignore=sema-extra-rec" "--ignore=sema-extra-with" "--ignore=sema-unused-def-lambda-noarg-formal" "--ignore=sema-unused-def-lambda-witharg-arg" diff --git a/nixos/modules/programs/atop.nix b/nixos/modules/programs/atop.nix index ca662d03213d..34e48fbd34b9 100644 --- a/nixos/modules/programs/atop.nix +++ b/nixos/modules/programs/atop.nix @@ -16,7 +16,7 @@ in options = { - programs.atop = rec { + programs.atop = { enable = lib.mkEnableOption "Atop, a tool for monitoring system resources"; diff --git a/nixos/modules/programs/nix-required-mounts.nix b/nixos/modules/programs/nix-required-mounts.nix index f1fa34509dbf..a7ec09fe5f9a 100644 --- a/nixos/modules/programs/nix-required-mounts.nix +++ b/nixos/modules/programs/nix-required-mounts.nix @@ -80,7 +80,7 @@ in ''; allowedPatterns = with lib.types; - lib.mkOption rec { + lib.mkOption { type = attrsOf Pattern; description = "The hook config, describing which paths to mount for which system features"; default = { }; diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix index 44affdfb0586..72593aff4c84 100644 --- a/nixos/modules/services/databases/openldap.nix +++ b/nixos/modules/services/databases/openldap.nix @@ -12,7 +12,7 @@ let ldapValueType = let # Can't do types.either with multiple non-overlapping submodules, so define our own - singleLdapValueType = lib.mkOptionType rec { + singleLdapValueType = lib.mkOptionType { name = "LDAP"; # TODO: It would be nice to define a { secret = ...; } option, using # systemd's LoadCredentials for secrets. That would remove the last diff --git a/nixos/modules/services/desktop-managers/gnome.nix b/nixos/modules/services/desktop-managers/gnome.nix index 39ae0d93451c..91f4002e59d7 100644 --- a/nixos/modules/services/desktop-managers/gnome.nix +++ b/nixos/modules/services/desktop-managers/gnome.nix @@ -42,7 +42,7 @@ let inherit flashbackEnabled nixos-background-dark nixos-background-light; }; - nixos-background-info = pkgs.writeTextFile rec { + nixos-background-info = pkgs.writeTextFile { name = "nixos-background-info"; text = '' diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index 240561f20278..127a7e73e83e 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -1699,7 +1699,7 @@ in filteredConfig = filterAttrs (_: v: v != null) cfg.pages.settings; isSecret = v: isAttrs v && v ? _secret && isString v._secret; mkPagesKeyValue = lib.generators.toKeyValue { - mkKeyValue = lib.flip lib.generators.mkKeyValueDefault "=" rec { + mkKeyValue = lib.flip lib.generators.mkKeyValueDefault "=" { mkValueString = v: if isInt v then diff --git a/nixos/modules/services/monitoring/parsedmarc.nix b/nixos/modules/services/monitoring/parsedmarc.nix index 61bce5726dd4..1d6a7c1f567f 100644 --- a/nixos/modules/services/monitoring/parsedmarc.nix +++ b/nixos/modules/services/monitoring/parsedmarc.nix @@ -11,7 +11,7 @@ let opt = options.services.parsedmarc; isSecret = v: isAttrs v && v ? _secret && isString v._secret; ini = pkgs.formats.ini { - mkKeyValue = lib.flip lib.generators.mkKeyValueDefault "=" rec { + mkKeyValue = lib.flip lib.generators.mkKeyValueDefault "=" { mkValueString = v: if isInt v then diff --git a/nixos/modules/services/networking/https-dns-proxy.nix b/nixos/modules/services/networking/https-dns-proxy.nix index 2476edf4a469..4e8f81888cc2 100644 --- a/nixos/modules/services/networking/https-dns-proxy.nix +++ b/nixos/modules/services/networking/https-dns-proxy.nix @@ -136,7 +136,7 @@ in wants = [ "nss-lookup.target" ]; before = [ "nss-lookup.target" ]; wantedBy = [ "multi-user.target" ]; - serviceConfig = rec { + serviceConfig = { Type = "exec"; DynamicUser = true; ProtectHome = "tmpfs"; diff --git a/nixos/modules/services/web-apps/flarum.nix b/nixos/modules/services/web-apps/flarum.nix index 2b5517d8af98..c4c05826d8cd 100644 --- a/nixos/modules/services/web-apps/flarum.nix +++ b/nixos/modules/services/web-apps/flarum.nix @@ -90,7 +90,7 @@ in description = "Home directory for writable storage"; }; - database = mkOption rec { + database = mkOption { type = with types; attrsOf (oneOf [ diff --git a/nixos/modules/services/web-apps/gancio.nix b/nixos/modules/services/web-apps/gancio.nix index 62de57276fcd..6dc6c26bc089 100644 --- a/nixos/modules/services/web-apps/gancio.nix +++ b/nixos/modules/services/web-apps/gancio.nix @@ -44,7 +44,7 @@ in default = "gancio"; }; - settings = mkOption rec { + settings = mkOption { type = types.submodule { freeformType = settingsFormat.type; options = { diff --git a/nixos/tests/hledger-web.nix b/nixos/tests/hledger-web.nix index 705288dc4e71..e772c7a74c18 100644 --- a/nixos/tests/hledger-web.nix +++ b/nixos/tests/hledger-web.nix @@ -9,7 +9,7 @@ let assets:cash -250$ ''; in -rec { +{ name = "hledger-web"; meta.maintainers = with lib.maintainers; [ marijanp ]; diff --git a/nixos/tests/installed-tests/default.nix b/nixos/tests/installed-tests/default.nix index 2dc0e850c066..5741f23d11b0 100644 --- a/nixos/tests/installed-tests/default.nix +++ b/nixos/tests/installed-tests/default.nix @@ -38,7 +38,7 @@ let }@args: makeTest ( recursiveUpdate - rec { + { name = tested.name; meta = { diff --git a/nixos/tests/jenkins-cli.nix b/nixos/tests/jenkins-cli.nix index 69167ffa3a6f..fd1801eaef25 100644 --- a/nixos/tests/jenkins-cli.nix +++ b/nixos/tests/jenkins-cli.nix @@ -1,5 +1,5 @@ { pkgs, ... }: -rec { +{ name = "jenkins-cli"; meta = with pkgs.lib.maintainers; { maintainers = [ pamplemousse ]; diff --git a/nixos/tests/locate.nix b/nixos/tests/locate.nix index 559868128560..012119bdcb2d 100644 --- a/nixos/tests/locate.nix +++ b/nixos/tests/locate.nix @@ -6,7 +6,7 @@ in name = "locate"; meta.maintainers = with pkgs.lib.maintainers; [ chkno ]; - nodes = rec { + nodes = { a = { environment.systemPackages = with pkgs; [ sshfs ]; virtualisation.fileSystems = { diff --git a/nixos/tests/pihole-ftl/basic.nix b/nixos/tests/pihole-ftl/basic.nix index 2d1a867b0938..5789d5a99428 100644 --- a/nixos/tests/pihole-ftl/basic.nix +++ b/nixos/tests/pihole-ftl/basic.nix @@ -5,7 +5,7 @@ ... }: -rec { +{ name = "pihole-ftl-basic"; meta.maintainers = with lib.maintainers; [ averyvigolo ]; diff --git a/nixos/tests/web-apps/phylactery.nix b/nixos/tests/web-apps/phylactery.nix index 1643231ff8f0..d6d52680ec5f 100644 --- a/nixos/tests/web-apps/phylactery.nix +++ b/nixos/tests/web-apps/phylactery.nix @@ -5,7 +5,7 @@ nodes.machine = { ... }: { - services.phylactery = rec { + services.phylactery = { enable = true; port = 8080; library = "/tmp"; diff --git a/nixos/tests/zfs.nix b/nixos/tests/zfs.nix index 12d9b23886f1..470d256ba515 100644 --- a/nixos/tests/zfs.nix +++ b/nixos/tests/zfs.nix @@ -214,12 +214,12 @@ in kernelPackages = pkgs.linuxPackages; }; - unstable = makeZfsTest rec { + unstable = makeZfsTest { zfsPackage = pkgs.zfs_unstable; kernelPackages = pkgs.linuxPackages; }; - unstableWithSystemdStage1 = makeZfsTest rec { + unstableWithSystemdStage1 = makeZfsTest { zfsPackage = pkgs.zfs_unstable; kernelPackages = pkgs.linuxPackages; enableSystemdStage1 = true; diff --git a/pkgs/applications/editors/kakoune/plugins/overrides.nix b/pkgs/applications/editors/kakoune/plugins/overrides.nix index 5c769e8db03f..09d53750ca24 100644 --- a/pkgs/applications/editors/kakoune/plugins/overrides.nix +++ b/pkgs/applications/editors/kakoune/plugins/overrides.nix @@ -112,7 +112,7 @@ self: super: { }; }; - kakoune-rainbow = super.kakoune-rainbow.overrideAttrs (oldAttrs: rec { + kakoune-rainbow = super.kakoune-rainbow.overrideAttrs (oldAttrs: { preFixup = '' mkdir -p $out/bin mv $out/share/kak/autoload/plugins/kakoune-rainbow/bin/kak-rainbow.scm $out/bin @@ -146,14 +146,14 @@ self: super: { }; }; - powerline-kak = super.powerline-kak.overrideAttrs (oldAttrs: rec { + powerline-kak = super.powerline-kak.overrideAttrs (oldAttrs: { preFixup = '' substituteInPlace $out/share/kak/autoload/plugins/powerline-kak/rc/modules/git.kak \ --replace ' git ' ' ${git}/bin/git ' ''; }); - hop-kak = rustPlatform.buildRustPackage rec { + hop-kak = rustPlatform.buildRustPackage { pname = "hop-kak"; version = "0.2.0"; diff --git a/pkgs/applications/editors/sublime/3/common.nix b/pkgs/applications/editors/sublime/3/common.nix index 38452146e105..b427f15aa508 100644 --- a/pkgs/applications/editors/sublime/3/common.nix +++ b/pkgs/applications/editors/sublime/3/common.nix @@ -140,7 +140,7 @@ let ''; }; in -stdenv.mkDerivation (rec { +stdenv.mkDerivation ({ inherit pname; version = buildVersion; diff --git a/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix b/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix index aa6bbe2d05c7..6b6ac27fde0b 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-python.python/default.nix @@ -37,7 +37,7 @@ let or (throw "unsupported platform ${stdenv.hostPlatform.system}"); in -vscode-utils.buildVscodeMarketplaceExtension rec { +vscode-utils.buildVscodeMarketplaceExtension { mktplcRef = base // { name = "python"; publisher = "ms-python"; diff --git a/pkgs/applications/misc/cura/plugins.nix b/pkgs/applications/misc/cura/plugins.nix index 4782e4e3c456..eec6b5cc864d 100644 --- a/pkgs/applications/misc/cura/plugins.nix +++ b/pkgs/applications/misc/cura/plugins.nix @@ -11,7 +11,7 @@ let self = { - octoprint = stdenv.mkDerivation rec { + octoprint = stdenv.mkDerivation { pname = "Cura-OctoPrintPlugin"; version = "3.5.18"; diff --git a/pkgs/applications/networking/cluster/hadoop/default.nix b/pkgs/applications/networking/cluster/hadoop/default.nix index 105621a2598a..3d5896aa623e 100644 --- a/pkgs/applications/networking/cluster/hadoop/default.nix +++ b/pkgs/applications/networking/cluster/hadoop/default.nix @@ -186,7 +186,7 @@ in # TODO: Package and add Intel Storage Acceleration Library tests = nixosTests.hadoop; }; - hadoop_3_3 = common rec { + hadoop_3_3 = common { pname = "hadoop"; platformAttrs = rec { x86_64-linux = { @@ -204,7 +204,7 @@ in # TODO: Package and add Intel Storage Acceleration Library tests = nixosTests.hadoop_3_3; }; - hadoop2 = common rec { + hadoop2 = common { pname = "hadoop"; platformAttrs.x86_64-linux = { version = "2.10.2"; diff --git a/pkgs/applications/networking/cluster/spark/default.nix b/pkgs/applications/networking/cluster/spark/default.nix index 2609c4fd0a2b..f472d23cccd7 100644 --- a/pkgs/applications/networking/cluster/spark/default.nix +++ b/pkgs/applications/networking/cluster/spark/default.nix @@ -101,7 +101,7 @@ in version = "3.5.5"; hash = "sha256-vzcWgIfHPhN3nyrxdk3f0p4fW3MpQ+FuEPnWPw0xNPg="; }; - spark_3_4 = spark rec { + spark_3_4 = spark { pname = "spark"; version = "3.4.4"; hash = "sha256-GItHmthLhG7y0XSF3QINCyE7wYFb0+lPZmYLUuMa4Ww="; diff --git a/pkgs/applications/science/logic/klee/default.nix b/pkgs/applications/science/logic/klee/default.nix index 6cf24445c6c4..dcccc03bb45c 100644 --- a/pkgs/applications/science/logic/klee/default.nix +++ b/pkgs/applications/science/logic/klee/default.nix @@ -51,7 +51,7 @@ let # Python used for KLEE tests. kleePython = python3.withPackages (ps: with ps; [ tabulate ]); in -llvmPackages.stdenv.mkDerivation rec { +llvmPackages.stdenv.mkDerivation { pname = "klee"; version = "3.1-unstable-2025-07-11"; diff --git a/pkgs/applications/system/coolercontrol/default.nix b/pkgs/applications/system/coolercontrol/default.nix index 35e138f5f195..009525ec8eb3 100644 --- a/pkgs/applications/system/coolercontrol/default.nix +++ b/pkgs/applications/system/coolercontrol/default.nix @@ -27,7 +27,7 @@ let applySharedDetails = drv: drv { inherit version src meta; }; in -rec { +{ coolercontrol-ui-data = applySharedDetails (callPackage ./coolercontrol-ui-data.nix { }); coolercontrold = applySharedDetails (callPackage ./coolercontrold.nix { }); diff --git a/pkgs/build-support/checkpoint-build.nix b/pkgs/build-support/checkpoint-build.nix index 5071ad4ac5b7..fc46565ca875 100644 --- a/pkgs/build-support/checkpoint-build.nix +++ b/pkgs/build-support/checkpoint-build.nix @@ -44,7 +44,7 @@ let }); in -rec { +{ inherit mkCheckpointBuild; /* Prepare a derivation for local builds. diff --git a/pkgs/build-support/rust/build-rust-crate/test/rcgen-crates.nix b/pkgs/build-support/rust/build-rust-crate/test/rcgen-crates.nix index 69905245b2d7..bca7163fdeea 100644 --- a/pkgs/build-support/rust/build-rust-crate/test/rcgen-crates.nix +++ b/pkgs/build-support/rust/build-rust-crate/test/rcgen-crates.nix @@ -92,7 +92,7 @@ rec { # inject test dependencies into the build crates = { - "asn1-rs" = rec { + "asn1-rs" = { crateName = "asn1-rs"; version = "0.3.1"; edition = "2018"; @@ -160,7 +160,7 @@ rec { "time" ]; }; - "asn1-rs-derive" = rec { + "asn1-rs-derive" = { crateName = "asn1-rs-derive"; version = "0.1.0"; edition = "2018"; @@ -189,7 +189,7 @@ rec { ]; }; - "asn1-rs-impl" = rec { + "asn1-rs-impl" = { crateName = "asn1-rs-impl"; version = "0.1.0"; edition = "2018"; @@ -214,7 +214,7 @@ rec { ]; }; - "autocfg 0.1.7" = rec { + "autocfg 0.1.7" = { crateName = "autocfg"; version = "0.1.7"; edition = "2015"; @@ -224,7 +224,7 @@ rec { ]; }; - "autocfg 1.0.1" = rec { + "autocfg 1.0.1" = { crateName = "autocfg"; version = "1.0.1"; edition = "2015"; @@ -234,7 +234,7 @@ rec { ]; }; - "base64" = rec { + "base64" = { crateName = "base64"; version = "0.13.0"; edition = "2018"; @@ -251,7 +251,7 @@ rec { "std" ]; }; - "base64ct" = rec { + "base64ct" = { crateName = "base64ct"; version = "1.1.1"; edition = "2018"; @@ -263,7 +263,7 @@ rec { "std" = [ "alloc" ]; }; }; - "bitflags" = rec { + "bitflags" = { crateName = "bitflags"; version = "1.3.2"; edition = "2018"; @@ -281,7 +281,7 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "botan" = rec { + "botan" = { crateName = "botan"; version = "0.8.1"; edition = "2018"; @@ -309,7 +309,7 @@ rec { "vendored" ]; }; - "botan-src" = rec { + "botan-src" = { crateName = "botan-src"; version = "0.21703.0"; edition = "2018"; @@ -320,7 +320,7 @@ rec { ]; }; - "botan-sys" = rec { + "botan-sys" = { crateName = "botan-sys"; version = "0.8.1"; edition = "2015"; @@ -351,7 +351,7 @@ rec { "vendored" ]; }; - "bumpalo" = rec { + "bumpalo" = { crateName = "bumpalo"; version = "3.9.1"; edition = "2018"; @@ -363,7 +363,7 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "byteorder" = rec { + "byteorder" = { crateName = "byteorder"; version = "1.4.3"; edition = "2018"; @@ -375,7 +375,7 @@ rec { "default" = [ "std" ]; }; }; - "cc" = rec { + "cc" = { crateName = "cc"; version = "1.0.72"; edition = "2018"; @@ -389,7 +389,7 @@ rec { "parallel" = [ "jobserver" ]; }; }; - "cfg-if" = rec { + "cfg-if" = { crateName = "cfg-if"; version = "1.0.0"; edition = "2018"; @@ -406,7 +406,7 @@ rec { ]; }; }; - "const-oid" = rec { + "const-oid" = { crateName = "const-oid"; version = "0.6.2"; edition = "2018"; @@ -417,7 +417,7 @@ rec { features = { }; }; - "crypto-bigint" = rec { + "crypto-bigint" = { crateName = "crypto-bigint"; version = "0.2.11"; edition = "2018"; @@ -457,7 +457,7 @@ rec { "rand_core" ]; }; - "cty" = rec { + "cty" = { crateName = "cty"; version = "0.2.2"; edition = "2015"; @@ -467,7 +467,7 @@ rec { ]; }; - "data-encoding" = rec { + "data-encoding" = { crateName = "data-encoding"; version = "2.3.2"; edition = "2018"; @@ -485,7 +485,7 @@ rec { "std" ]; }; - "der" = rec { + "der" = { crateName = "der"; version = "0.4.5"; edition = "2018"; @@ -524,7 +524,7 @@ rec { "std" ]; }; - "der-parser" = rec { + "der-parser" = { crateName = "der-parser"; version = "7.0.0"; edition = "2018"; @@ -577,7 +577,7 @@ rec { "std" ]; }; - "digest" = rec { + "digest" = { crateName = "digest"; version = "0.9.0"; edition = "2018"; @@ -601,7 +601,7 @@ rec { "std" ]; }; - "displaydoc" = rec { + "displaydoc" = { crateName = "displaydoc"; version = "0.2.3"; edition = "2018"; @@ -632,7 +632,7 @@ rec { "std" ]; }; - "foreign-types" = rec { + "foreign-types" = { crateName = "foreign-types"; version = "0.3.2"; edition = "2015"; @@ -648,7 +648,7 @@ rec { ]; }; - "foreign-types-shared" = rec { + "foreign-types-shared" = { crateName = "foreign-types-shared"; version = "0.1.1"; edition = "2015"; @@ -658,7 +658,7 @@ rec { ]; }; - "generic-array" = rec { + "generic-array" = { crateName = "generic-array"; version = "0.14.5"; edition = "2015"; @@ -684,7 +684,7 @@ rec { "serde" = [ "dep:serde" ]; }; }; - "getrandom" = rec { + "getrandom" = { crateName = "getrandom"; version = "0.2.4"; edition = "2018"; @@ -727,7 +727,7 @@ rec { }; resolvedDefaultFeatures = [ "std" ]; }; - "itoa" = rec { + "itoa" = { crateName = "itoa"; version = "1.0.1"; edition = "2018"; @@ -737,7 +737,7 @@ rec { ]; }; - "js-sys" = rec { + "js-sys" = { crateName = "js-sys"; version = "0.3.56"; edition = "2018"; @@ -753,7 +753,7 @@ rec { ]; }; - "lazy_static" = rec { + "lazy_static" = { crateName = "lazy_static"; version = "1.4.0"; edition = "2015"; @@ -777,7 +777,7 @@ rec { "spin_no_std" ]; }; - "libc" = rec { + "libc" = { crateName = "libc"; version = "0.2.116"; edition = "2015"; @@ -799,7 +799,7 @@ rec { "std" ]; }; - "libm" = rec { + "libm" = { crateName = "libm"; version = "0.2.1"; edition = "2018"; @@ -813,7 +813,7 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "log" = rec { + "log" = { crateName = "log"; version = "0.4.14"; edition = "2015"; @@ -849,7 +849,7 @@ rec { "value-bag" = [ "dep:value-bag" ]; }; }; - "memchr" = rec { + "memchr" = { crateName = "memchr"; version = "2.4.1"; edition = "2018"; @@ -871,7 +871,7 @@ rec { }; resolvedDefaultFeatures = [ "std" ]; }; - "minimal-lexical" = rec { + "minimal-lexical" = { crateName = "minimal-lexical"; version = "0.2.1"; edition = "2018"; @@ -884,7 +884,7 @@ rec { }; resolvedDefaultFeatures = [ "std" ]; }; - "nom" = rec { + "nom" = { crateName = "nom"; version = "7.1.0"; edition = "2018"; @@ -924,7 +924,7 @@ rec { "std" ]; }; - "num-bigint" = rec { + "num-bigint" = { crateName = "num-bigint"; version = "0.4.3"; edition = "2018"; @@ -968,7 +968,7 @@ rec { "std" ]; }; - "num-bigint-dig" = rec { + "num-bigint-dig" = { crateName = "num-bigint-dig"; version = "0.7.0"; edition = "2015"; @@ -1070,7 +1070,7 @@ rec { "zeroize" ]; }; - "num-integer" = rec { + "num-integer" = { crateName = "num-integer"; version = "0.1.44"; edition = "2015"; @@ -1101,7 +1101,7 @@ rec { "std" ]; }; - "num-iter" = rec { + "num-iter" = { crateName = "num-iter"; version = "0.1.42"; edition = "2015"; @@ -1139,7 +1139,7 @@ rec { ]; }; }; - "num-traits" = rec { + "num-traits" = { crateName = "num-traits"; version = "0.2.14"; edition = "2015"; @@ -1171,7 +1171,7 @@ rec { "std" ]; }; - "num_threads" = rec { + "num_threads" = { crateName = "num_threads"; version = "0.1.3"; edition = "2015"; @@ -1188,7 +1188,7 @@ rec { ]; }; - "oid-registry" = rec { + "oid-registry" = { crateName = "oid-registry"; version = "0.4.0"; edition = "2018"; @@ -1228,7 +1228,7 @@ rec { "x962" ]; }; - "once_cell" = rec { + "once_cell" = { crateName = "once_cell"; version = "1.9.0"; edition = "2018"; @@ -1250,7 +1250,7 @@ rec { "std" ]; }; - "openssl" = rec { + "openssl" = { crateName = "openssl"; version = "0.10.38"; edition = "2018"; @@ -1289,7 +1289,7 @@ rec { "vendored" = [ "ffi/vendored" ]; }; }; - "openssl-sys" = rec { + "openssl-sys" = { crateName = "openssl-sys"; version = "0.9.72"; edition = "2015"; @@ -1329,7 +1329,7 @@ rec { "vendored" = [ "openssl-src" ]; }; }; - "pem" = rec { + "pem" = { crateName = "pem"; version = "1.0.2"; edition = "2018"; @@ -1345,7 +1345,7 @@ rec { ]; }; - "pem-rfc7468" = rec { + "pem-rfc7468" = { crateName = "pem-rfc7468"; version = "0.2.4"; edition = "2018"; @@ -1364,7 +1364,7 @@ rec { }; resolvedDefaultFeatures = [ "alloc" ]; }; - "pkcs1" = rec { + "pkcs1" = { crateName = "pkcs1"; version = "0.2.4"; edition = "2018"; @@ -1414,7 +1414,7 @@ rec { "zeroize" ]; }; - "pkcs8" = rec { + "pkcs8" = { crateName = "pkcs8"; version = "0.7.6"; edition = "2018"; @@ -1497,7 +1497,7 @@ rec { "zeroize" ]; }; - "pkg-config" = rec { + "pkg-config" = { crateName = "pkg-config"; version = "0.3.24"; edition = "2015"; @@ -1507,7 +1507,7 @@ rec { ]; }; - "ppv-lite86" = rec { + "ppv-lite86" = { crateName = "ppv-lite86"; version = "0.2.16"; edition = "2018"; @@ -1523,7 +1523,7 @@ rec { "std" ]; }; - "proc-macro2" = rec { + "proc-macro2" = { crateName = "proc-macro2"; version = "1.0.36"; edition = "2018"; @@ -1546,7 +1546,7 @@ rec { "proc-macro" ]; }; - "quote" = rec { + "quote" = { crateName = "quote"; version = "1.0.15"; edition = "2018"; @@ -1570,7 +1570,7 @@ rec { "proc-macro" ]; }; - "rand" = rec { + "rand" = { crateName = "rand"; version = "0.8.4"; edition = "2018"; @@ -1652,7 +1652,7 @@ rec { "std_rng" ]; }; - "rand_chacha" = rec { + "rand_chacha" = { crateName = "rand_chacha"; version = "0.3.1"; edition = "2018"; @@ -1682,7 +1682,7 @@ rec { }; resolvedDefaultFeatures = [ "std" ]; }; - "rand_core" = rec { + "rand_core" = { crateName = "rand_core"; version = "0.6.3"; edition = "2018"; @@ -1714,7 +1714,7 @@ rec { "std" ]; }; - "rand_hc" = rec { + "rand_hc" = { crateName = "rand_hc"; version = "0.3.1"; edition = "2018"; @@ -1730,7 +1730,7 @@ rec { ]; }; - "rcgen" = rec { + "rcgen" = { crateName = "rcgen"; version = "0.9.2"; edition = "2018"; @@ -1821,7 +1821,7 @@ rec { "zeroize" ]; }; - "ring" = rec { + "ring" = { crateName = "ring"; version = "0.16.20"; edition = "2018"; @@ -1938,7 +1938,7 @@ rec { "once_cell" ]; }; - "rsa" = rec { + "rsa" = { crateName = "rsa"; version = "0.5.0"; edition = "2018"; @@ -2062,7 +2062,7 @@ rec { "std" ]; }; - "rusticata-macros" = rec { + "rusticata-macros" = { crateName = "rusticata-macros"; version = "4.0.0"; edition = "2018"; @@ -2080,7 +2080,7 @@ rec { ]; }; - "smallvec" = rec { + "smallvec" = { crateName = "smallvec"; version = "1.8.0"; edition = "2018"; @@ -2094,7 +2094,7 @@ rec { "serde" = [ "dep:serde" ]; }; }; - "spin" = rec { + "spin" = { crateName = "spin"; version = "0.5.2"; edition = "2015"; @@ -2105,7 +2105,7 @@ rec { ]; }; - "spki" = rec { + "spki" = { crateName = "spki"; version = "0.4.1"; edition = "2018"; @@ -2124,7 +2124,7 @@ rec { "std" = [ "der/std" ]; }; }; - "subtle" = rec { + "subtle" = { crateName = "subtle"; version = "2.4.1"; edition = "2015"; @@ -2140,7 +2140,7 @@ rec { ]; }; }; - "syn" = rec { + "syn" = { crateName = "syn"; version = "1.0.86"; edition = "2018"; @@ -2194,7 +2194,7 @@ rec { "visit" ]; }; - "synstructure" = rec { + "synstructure" = { crateName = "synstructure"; version = "0.12.6"; edition = "2018"; @@ -2244,7 +2244,7 @@ rec { "proc-macro" ]; }; - "thiserror" = rec { + "thiserror" = { crateName = "thiserror"; version = "1.0.30"; edition = "2018"; @@ -2260,7 +2260,7 @@ rec { ]; }; - "thiserror-impl" = rec { + "thiserror-impl" = { crateName = "thiserror-impl"; version = "1.0.30"; edition = "2018"; @@ -2285,7 +2285,7 @@ rec { ]; }; - "time" = rec { + "time" = { crateName = "time"; version = "0.3.7"; edition = "2018"; @@ -2357,7 +2357,7 @@ rec { "time-macros" ]; }; - "time-macros" = rec { + "time-macros" = { crateName = "time-macros"; version = "0.2.3"; edition = "2018"; @@ -2370,7 +2370,7 @@ rec { features = { }; }; - "typenum" = rec { + "typenum" = { crateName = "typenum"; version = "1.15.0"; edition = "2018"; @@ -2385,7 +2385,7 @@ rec { "scale_info" = [ "scale-info/derive" ]; }; }; - "unicode-xid" = rec { + "unicode-xid" = { crateName = "unicode-xid"; version = "0.2.2"; edition = "2015"; @@ -2399,7 +2399,7 @@ rec { }; resolvedDefaultFeatures = [ "default" ]; }; - "untrusted" = rec { + "untrusted" = { crateName = "untrusted"; version = "0.7.1"; edition = "2018"; @@ -2410,7 +2410,7 @@ rec { ]; }; - "vcpkg" = rec { + "vcpkg" = { crateName = "vcpkg"; version = "0.2.15"; edition = "2015"; @@ -2420,7 +2420,7 @@ rec { ]; }; - "version_check" = rec { + "version_check" = { crateName = "version_check"; version = "0.9.4"; edition = "2015"; @@ -2430,7 +2430,7 @@ rec { ]; }; - "wasi" = rec { + "wasi" = { crateName = "wasi"; version = "0.10.2+wasi-snapshot-preview1"; edition = "2018"; @@ -2454,7 +2454,7 @@ rec { "std" ]; }; - "wasm-bindgen" = rec { + "wasm-bindgen" = { crateName = "wasm-bindgen"; version = "0.2.79"; edition = "2018"; @@ -2497,7 +2497,7 @@ rec { "std" ]; }; - "wasm-bindgen-backend" = rec { + "wasm-bindgen-backend" = { crateName = "wasm-bindgen-backend"; version = "0.2.79"; edition = "2018"; @@ -2541,7 +2541,7 @@ rec { }; resolvedDefaultFeatures = [ "spans" ]; }; - "wasm-bindgen-macro" = rec { + "wasm-bindgen-macro" = { crateName = "wasm-bindgen-macro"; version = "0.2.79"; edition = "2018"; @@ -2566,7 +2566,7 @@ rec { }; resolvedDefaultFeatures = [ "spans" ]; }; - "wasm-bindgen-macro-support" = rec { + "wasm-bindgen-macro-support" = { crateName = "wasm-bindgen-macro-support"; version = "0.2.79"; edition = "2018"; @@ -2606,7 +2606,7 @@ rec { }; resolvedDefaultFeatures = [ "spans" ]; }; - "wasm-bindgen-shared" = rec { + "wasm-bindgen-shared" = { crateName = "wasm-bindgen-shared"; version = "0.2.79"; edition = "2018"; @@ -2616,7 +2616,7 @@ rec { ]; }; - "web-sys" = rec { + "web-sys" = { crateName = "web-sys"; version = "0.3.56"; edition = "2018"; @@ -4083,7 +4083,7 @@ rec { "Window" ]; }; - "webpki" = rec { + "webpki" = { crateName = "webpki"; version = "0.22.0"; edition = "2018"; @@ -4111,7 +4111,7 @@ rec { "std" ]; }; - "winapi" = rec { + "winapi" = { crateName = "winapi"; version = "0.3.9"; edition = "2015"; @@ -4139,7 +4139,7 @@ rec { "wtypesbase" ]; }; - "winapi-i686-pc-windows-gnu" = rec { + "winapi-i686-pc-windows-gnu" = { crateName = "winapi-i686-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; @@ -4149,7 +4149,7 @@ rec { ]; }; - "winapi-x86_64-pc-windows-gnu" = rec { + "winapi-x86_64-pc-windows-gnu" = { crateName = "winapi-x86_64-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; @@ -4159,7 +4159,7 @@ rec { ]; }; - "x509-parser" = rec { + "x509-parser" = { crateName = "x509-parser"; version = "0.13.0"; edition = "2018"; @@ -4231,7 +4231,7 @@ rec { "verify" ]; }; - "yasna" = rec { + "yasna" = { crateName = "yasna"; version = "0.5.0"; edition = "2018"; @@ -4259,7 +4259,7 @@ rec { "time" ]; }; - "zeroize" = rec { + "zeroize" = { crateName = "zeroize"; version = "1.4.3"; edition = "2018"; @@ -4284,7 +4284,7 @@ rec { "zeroize_derive" ]; }; - "zeroize_derive" = rec { + "zeroize_derive" = { crateName = "zeroize_derive"; version = "1.3.1"; edition = "2018"; diff --git a/pkgs/build-support/rust/lib/default.nix b/pkgs/build-support/rust/lib/default.nix index 86be047af73b..e492d03e3026 100644 --- a/pkgs/build-support/rust/lib/default.nix +++ b/pkgs/build-support/rust/lib/default.nix @@ -6,7 +6,7 @@ pkgsTargetTarget, }: -rec { +{ # These environment variables must be set when using `cargo-c` and # several other tools which do not deal well with cross # compilation. The symptom of the problem they fix is errors due diff --git a/pkgs/by-name/ap/appindicator-sharp/package.nix b/pkgs/by-name/ap/appindicator-sharp/package.nix index 24e8c314e7b1..f5f512103ecc 100644 --- a/pkgs/by-name/ap/appindicator-sharp/package.nix +++ b/pkgs/by-name/ap/appindicator-sharp/package.nix @@ -9,7 +9,7 @@ stdenv, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "appindicator-sharp"; version = "0-unstable-2016-01-18"; diff --git a/pkgs/by-name/av/avizo/package.nix b/pkgs/by-name/av/avizo/package.nix index cbec1c25b6b2..e9801ee33570 100644 --- a/pkgs/by-name/av/avizo/package.nix +++ b/pkgs/by-name/av/avizo/package.nix @@ -19,7 +19,7 @@ brightnessctl, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "avizo"; version = "1.3-unstable-2024-11-03"; diff --git a/pkgs/by-name/bi/bic/package.nix b/pkgs/by-name/bi/bic/package.nix index 2a57ca0d5466..2279faf537e1 100644 --- a/pkgs/by-name/bi/bic/package.nix +++ b/pkgs/by-name/bi/bic/package.nix @@ -14,7 +14,7 @@ pkg-config, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "bic"; version = "1.0.0-unstable-2022-02-16"; diff --git a/pkgs/by-name/ce/cerca/package.nix b/pkgs/by-name/ce/cerca/package.nix index 1a9134458728..32a2c23da6ad 100644 --- a/pkgs/by-name/ce/cerca/package.nix +++ b/pkgs/by-name/ce/cerca/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -buildGoModule rec { +buildGoModule { pname = "cerca"; version = "0-unstable-2025-05-21"; diff --git a/pkgs/by-name/ce/certmitm/package.nix b/pkgs/by-name/ce/certmitm/package.nix index 0b754cc54c11..829ba0618605 100644 --- a/pkgs/by-name/ce/certmitm/package.nix +++ b/pkgs/by-name/ce/certmitm/package.nix @@ -4,7 +4,7 @@ python3, }: -python3.pkgs.buildPythonApplication rec { +python3.pkgs.buildPythonApplication { pname = "certmitm"; version = "0-unstable-2025-05-14"; pyproject = false; diff --git a/pkgs/by-name/cf/cfn-nag/package.nix b/pkgs/by-name/cf/cfn-nag/package.nix index dc25c29fca35..71c198c9a9b7 100644 --- a/pkgs/by-name/cf/cfn-nag/package.nix +++ b/pkgs/by-name/cf/cfn-nag/package.nix @@ -5,7 +5,7 @@ ruby, }: -bundlerEnv rec { +bundlerEnv { pname = "cfn-nag"; version = "0.8.10"; diff --git a/pkgs/by-name/cj/cjs/package.nix b/pkgs/by-name/cj/cjs/package.nix index 70a9076ae0e9..e7b9bddabe16 100644 --- a/pkgs/by-name/cj/cjs/package.nix +++ b/pkgs/by-name/cj/cjs/package.nix @@ -17,7 +17,7 @@ libxml2, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "cjs"; version = "128.0-unstable-2025-09-15"; diff --git a/pkgs/by-name/co/code-nautilus/package.nix b/pkgs/by-name/co/code-nautilus/package.nix index 91925d5d9d40..873a36f17f8a 100644 --- a/pkgs/by-name/co/code-nautilus/package.nix +++ b/pkgs/by-name/co/code-nautilus/package.nix @@ -5,7 +5,7 @@ nautilus-python, python3, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "code-nautilus"; version = "0-unstable-2024-09-11"; diff --git a/pkgs/by-name/co/codux/package.nix b/pkgs/by-name/co/codux/package.nix index dc0424da6d0b..b7bca77b035b 100644 --- a/pkgs/by-name/co/codux/package.nix +++ b/pkgs/by-name/co/codux/package.nix @@ -16,7 +16,7 @@ let appimageContents = appimageTools.extractType2 { inherit pname version src; }; in -appimageTools.wrapType2 rec { +appimageTools.wrapType2 { inherit pname version src; extraInstallCommands = '' diff --git a/pkgs/by-name/co/colmap/package.nix b/pkgs/by-name/co/colmap/package.nix index ed97fb1b4e5d..babe6beab93b 100644 --- a/pkgs/by-name/co/colmap/package.nix +++ b/pkgs/by-name/co/colmap/package.nix @@ -62,7 +62,7 @@ let # TODO: migrate to redist packages inherit (cudaPackages) cudatoolkit; in -stdenv'.mkDerivation rec { +stdenv'.mkDerivation { version = "unstable-3.12.5-openimageio"; pname = "colmap"; src = fetchFromGitHub { diff --git a/pkgs/by-name/co/coltrane/package.nix b/pkgs/by-name/co/coltrane/package.nix index 9b40cf12d339..10f8bf3d69c2 100644 --- a/pkgs/by-name/co/coltrane/package.nix +++ b/pkgs/by-name/co/coltrane/package.nix @@ -4,7 +4,7 @@ bundlerUpdateScript, }: -bundlerApp rec { +bundlerApp { pname = "coltrane"; gemdir = ./.; exes = [ "coltrane" ]; diff --git a/pkgs/by-name/co/countryguess/package.nix b/pkgs/by-name/co/countryguess/package.nix index 22cf4135f4db..36982553f788 100644 --- a/pkgs/by-name/co/countryguess/package.nix +++ b/pkgs/by-name/co/countryguess/package.nix @@ -5,7 +5,7 @@ makeWrapper, }: -python3Packages.buildPythonApplication rec { +python3Packages.buildPythonApplication { pname = "countryguess"; version = "0-unstable-2025-03-04"; # upstream pyproject.toml is nonsense. Copied from another project diff --git a/pkgs/by-name/cr/crossfire-gridarta/package.nix b/pkgs/by-name/cr/crossfire-gridarta/package.nix index e60dad6e0d91..0eae54417943 100644 --- a/pkgs/by-name/cr/crossfire-gridarta/package.nix +++ b/pkgs/by-name/cr/crossfire-gridarta/package.nix @@ -7,7 +7,7 @@ gradle, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { name = "crossfire-gridarta"; version = "2025-04"; diff --git a/pkgs/by-name/dc/dcgm/package.nix b/pkgs/by-name/dc/dcgm/package.nix index d097d2957312..a9094cd870a5 100644 --- a/pkgs/by-name/dc/dcgm/package.nix +++ b/pkgs/by-name/dc/dcgm/package.nix @@ -70,7 +70,7 @@ let )) ]; in -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "dcgm"; version = "4.3.1"; # N.B: If you change this, be sure prometheus-dcgm-exporter supports this version. diff --git a/pkgs/by-name/de/defaultbrowser/package.nix b/pkgs/by-name/de/defaultbrowser/package.nix index b8c82b800345..744bc447fdd2 100644 --- a/pkgs/by-name/de/defaultbrowser/package.nix +++ b/pkgs/by-name/de/defaultbrowser/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "defaultbrowser"; version = "unstable-2020-07-23"; diff --git a/pkgs/by-name/de/denemo/package.nix b/pkgs/by-name/de/denemo/package.nix index 837791645e1e..ac500882d15f 100644 --- a/pkgs/by-name/de/denemo/package.nix +++ b/pkgs/by-name/de/denemo/package.nix @@ -26,7 +26,7 @@ wrapGAppsHook3, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "denemo"; version = "2.6.43"; diff --git a/pkgs/by-name/dl/dli/package.nix b/pkgs/by-name/dl/dli/package.nix index 6c50c0c116eb..44cd343b9100 100644 --- a/pkgs/by-name/dl/dli/package.nix +++ b/pkgs/by-name/dl/dli/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -buildGoModule rec { +buildGoModule { pname = "dli"; version = "0-unstable-2025-09-06"; diff --git a/pkgs/by-name/dp/dpms-off/package.nix b/pkgs/by-name/dp/dpms-off/package.nix index 2fd41461ada7..1a8cc1bf29d6 100644 --- a/pkgs/by-name/dp/dpms-off/package.nix +++ b/pkgs/by-name/dp/dpms-off/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage { pname = "dpms-off"; version = "0.2.1"; diff --git a/pkgs/by-name/du/duti/package.nix b/pkgs/by-name/du/duti/package.nix index e9175191a3b6..f793dbc5877e 100644 --- a/pkgs/by-name/du/duti/package.nix +++ b/pkgs/by-name/du/duti/package.nix @@ -5,7 +5,7 @@ autoreconfHook, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "duti"; version = "1.5.5pre"; src = fetchFromGitHub { diff --git a/pkgs/by-name/el/elmerfem/package.nix b/pkgs/by-name/el/elmerfem/package.nix index aacf40f49afa..e78ffe1d7320 100644 --- a/pkgs/by-name/el/elmerfem/package.nix +++ b/pkgs/by-name/el/elmerfem/package.nix @@ -16,7 +16,7 @@ vtkWithQt6, llvmPackages, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "elmerfem"; version = "9.0-unstable-2025-05-25"; diff --git a/pkgs/by-name/gi/git-point/package.nix b/pkgs/by-name/gi/git-point/package.nix index f3a307e3c826..1420708e1cbc 100644 --- a/pkgs/by-name/gi/git-point/package.nix +++ b/pkgs/by-name/gi/git-point/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage { pname = "git-point"; version = "0.2.2"; diff --git a/pkgs/by-name/ha/haxor-news/package.nix b/pkgs/by-name/ha/haxor-news/package.nix index d57a43d20c95..11ba11ebd899 100644 --- a/pkgs/by-name/ha/haxor-news/package.nix +++ b/pkgs/by-name/ha/haxor-news/package.nix @@ -5,7 +5,7 @@ python3Packages, }: -python3Packages.buildPythonApplication rec { +python3Packages.buildPythonApplication { pname = "haxor-news"; version = "unstable-2022-04-22"; format = "setuptools"; diff --git a/pkgs/by-name/ik/ike-scan/package.nix b/pkgs/by-name/ik/ike-scan/package.nix index 903dcd2003e7..f7386651d84f 100644 --- a/pkgs/by-name/ik/ike-scan/package.nix +++ b/pkgs/by-name/ik/ike-scan/package.nix @@ -7,7 +7,7 @@ stdenv, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "ike-scan"; version = "1.9.5-unstable-2024-09-15"; diff --git a/pkgs/by-name/ja/jasper-gtk-theme/package.nix b/pkgs/by-name/ja/jasper-gtk-theme/package.nix index 662f84cc033e..d884248b15d7 100644 --- a/pkgs/by-name/ja/jasper-gtk-theme/package.nix +++ b/pkgs/by-name/ja/jasper-gtk-theme/package.nix @@ -49,7 +49,7 @@ lib.checkListOfEnum "${pname}: theme variants" tweaks stdenvNoCC.mkDerivation - rec { + { inherit pname; version = "0-unstable-2025-04-02"; diff --git a/pkgs/by-name/ki/kind-lang/package.nix b/pkgs/by-name/ki/kind-lang/package.nix index 613d310a5dfe..a064dcc8cad7 100644 --- a/pkgs/by-name/ki/kind-lang/package.nix +++ b/pkgs/by-name/ki/kind-lang/package.nix @@ -10,7 +10,7 @@ let ghcVersion = "ghc910"; haskellPackages = haskell.packages.${ghcVersion}; - overrides = rec { + overrides = { version = "${raw-pkg.version}-unstable-2024-12-09"; postPatch = '' diff --git a/pkgs/by-name/ku/kubernix/package.nix b/pkgs/by-name/ku/kubernix/package.nix index 73fd7ed1ba8d..d61b67d1a03e 100644 --- a/pkgs/by-name/ku/kubernix/package.nix +++ b/pkgs/by-name/ku/kubernix/package.nix @@ -4,7 +4,7 @@ rustPlatform, }: -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage { pname = "kubernix"; version = "0.2.0-unstable-2021-11-16"; diff --git a/pkgs/by-name/ma/mari0/package.nix b/pkgs/by-name/ma/mari0/package.nix index d18e20da557e..38a1fa5d72a3 100644 --- a/pkgs/by-name/ma/mari0/package.nix +++ b/pkgs/by-name/ma/mari0/package.nix @@ -10,7 +10,7 @@ zip, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "mari0"; version = "1.6.2-unstable-2023-08-08"; diff --git a/pkgs/by-name/ni/nix-required-mounts/package.nix b/pkgs/by-name/ni/nix-required-mounts/package.nix index e37cba924edc..89069a112051 100644 --- a/pkgs/by-name/ni/nix-required-mounts/package.nix +++ b/pkgs/by-name/ni/nix-required-mounts/package.nix @@ -1,7 +1,7 @@ { addDriverRunpath, allowedPatternsPath ? callPackage ./closure.nix { inherit allowedPatterns; }, - allowedPatterns ? rec { + allowedPatterns ? { # This config is just an example. # When the hook observes either of the following requiredSystemFeatures: nvidia-gpu.onFeatures = [ diff --git a/pkgs/by-name/no/nordic/package.nix b/pkgs/by-name/no/nordic/package.nix index d27f7ff1a7e1..418d526e703b 100644 --- a/pkgs/by-name/no/nordic/package.nix +++ b/pkgs/by-name/no/nordic/package.nix @@ -7,7 +7,7 @@ kdePackages, }: -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation { pname = "nordic"; version = "2.2.0-unstable-2025-05-05"; diff --git a/pkgs/by-name/os/osx-cpu-temp/package.nix b/pkgs/by-name/os/osx-cpu-temp/package.nix index 8b55a27d6910..ba6deb709230 100644 --- a/pkgs/by-name/os/osx-cpu-temp/package.nix +++ b/pkgs/by-name/os/osx-cpu-temp/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "osx-cpu-temp"; version = "unstable-2020-12-04"; diff --git a/pkgs/by-name/ot/otto-matic/package.nix b/pkgs/by-name/ot/otto-matic/package.nix index f58ce12e8bd4..08595f76dce6 100644 --- a/pkgs/by-name/ot/otto-matic/package.nix +++ b/pkgs/by-name/ot/otto-matic/package.nix @@ -9,7 +9,7 @@ unstableGitUpdater, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "OttoMatic"; version = "4.0.1-unstable-2025-04-27"; diff --git a/pkgs/by-name/ov/overcommit/package.nix b/pkgs/by-name/ov/overcommit/package.nix index a5809b86472c..8100ba20db42 100644 --- a/pkgs/by-name/ov/overcommit/package.nix +++ b/pkgs/by-name/ov/overcommit/package.nix @@ -8,7 +8,7 @@ testers, }: -bundlerApp rec { +bundlerApp { pname = "overcommit"; gemdir = ./.; exes = [ "overcommit" ]; diff --git a/pkgs/by-name/ow/owi/package.nix b/pkgs/by-name/ow/owi/package.nix index 3554e91d8e4d..c21d43e056b4 100644 --- a/pkgs/by-name/ow/owi/package.nix +++ b/pkgs/by-name/ow/owi/package.nix @@ -13,7 +13,7 @@ let ocamlPackages = ocaml-ng.ocamlPackages_5_2; in -ocamlPackages.buildDunePackage rec { +ocamlPackages.buildDunePackage { pname = "owi"; version = "0.2-unstable-2025-09-25"; diff --git a/pkgs/by-name/pd/pdm/package.nix b/pkgs/by-name/pd/pdm/package.nix index 0a53a2c523d3..c4f097a2de66 100644 --- a/pkgs/by-name/pd/pdm/package.nix +++ b/pkgs/by-name/pd/pdm/package.nix @@ -22,7 +22,7 @@ let # pdm requires ...... -> ghostscript-with-X which is AGPL only matplotlib = super.matplotlib.override ({ enableTk = false; }); # pdm requires ...... -> jbig2dec which is AGPL only - moto = super.moto.overridePythonAttrs (old: rec { + moto = super.moto.overridePythonAttrs (old: { doCheck = false; }); }; diff --git a/pkgs/by-name/po/polar/package.nix b/pkgs/by-name/po/polar/package.nix index f7f438dac991..80de9a3d17ca 100644 --- a/pkgs/by-name/po/polar/package.nix +++ b/pkgs/by-name/po/polar/package.nix @@ -19,7 +19,7 @@ let }; in -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "polar"; # The package has no releases so let's use the latest commit diff --git a/pkgs/by-name/pr/precice/package.nix b/pkgs/by-name/pr/precice/package.nix index d60bc8bac569..ac12dbdd38e6 100644 --- a/pkgs/by-name/pr/precice/package.nix +++ b/pkgs/by-name/pr/precice/package.nix @@ -12,7 +12,7 @@ pkg-config, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "precice"; version = "3.2.0-unstable-2025-05-23"; diff --git a/pkgs/by-name/pr/prowler/package.nix b/pkgs/by-name/pr/prowler/package.nix index 5c43eb8885b3..06138fe29724 100644 --- a/pkgs/by-name/pr/prowler/package.nix +++ b/pkgs/by-name/pr/prowler/package.nix @@ -9,7 +9,7 @@ let packageOverrides = self: super: { # Doesn't work with latest pydantic - py-ocsf-models = super.py-ocsf-models.overridePythonAttrs (oldAttrs: rec { + py-ocsf-models = super.py-ocsf-models.overridePythonAttrs (oldAttrs: { dependencies = [ python3.pkgs.pydantic_1 python3.pkgs.cryptography diff --git a/pkgs/by-name/pu/pulumi/extra/mk-pulumi-package.nix b/pkgs/by-name/pu/pulumi/extra/mk-pulumi-package.nix index bdbe5f79f81f..d6705b5932ed 100644 --- a/pkgs/by-name/pu/pulumi/extra/mk-pulumi-package.nix +++ b/pkgs/by-name/pu/pulumi/extra/mk-pulumi-package.nix @@ -135,7 +135,7 @@ let ; }; - pulumi-gen = mkBasePackage rec { + pulumi-gen = mkBasePackage { inherit src version diff --git a/pkgs/by-name/qi/qimgv/package.nix b/pkgs/by-name/qi/qimgv/package.nix index e4a2e453456f..6c6ac5feaac6 100644 --- a/pkgs/by-name/qi/qimgv/package.nix +++ b/pkgs/by-name/qi/qimgv/package.nix @@ -10,7 +10,7 @@ opencv4, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "qimgv"; version = "1.0.3-unstable-2024-10-11"; diff --git a/pkgs/by-name/re/reversal-icon-theme/package.nix b/pkgs/by-name/re/reversal-icon-theme/package.nix index e61a5d6a15e7..8e81f62658c9 100644 --- a/pkgs/by-name/re/reversal-icon-theme/package.nix +++ b/pkgs/by-name/re/reversal-icon-theme/package.nix @@ -31,7 +31,7 @@ lib.checkListOfEnum "${pname}: color variants" colorVariants stdenvNoCC.mkDerivation - rec { + { inherit pname; version = "0-unstable-2023-05-13"; diff --git a/pkgs/by-name/ro/roc/package.nix b/pkgs/by-name/ro/roc/package.nix index 1a5de4353e23..6bbac562f1d4 100755 --- a/pkgs/by-name/ro/roc/package.nix +++ b/pkgs/by-name/ro/roc/package.nix @@ -20,7 +20,7 @@ let rocVersion = "alpha4"; in -rustPlatform.buildRustPackage rec { +rustPlatform.buildRustPackage { pname = "roc"; version = "0-${rocVersion}"; diff --git a/pkgs/by-name/sa/samfirm-js/package.nix b/pkgs/by-name/sa/samfirm-js/package.nix index f1f460a04145..60aadeaf15b3 100644 --- a/pkgs/by-name/sa/samfirm-js/package.nix +++ b/pkgs/by-name/sa/samfirm-js/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -buildNpmPackage rec { +buildNpmPackage { pname = "samfirm-js"; version = "0.3.0-unstable-2023-12-27"; diff --git a/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix b/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix index 0db84caedc3d..616f1208bf54 100644 --- a/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix +++ b/pkgs/by-name/sh/shadowsocks-v2ray-plugin/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -buildGoModule rec { +buildGoModule { pname = "shadowsocks-v2ray-plugin"; version = "1.3.2-unstable-2025-09-05"; diff --git a/pkgs/by-name/so/soapyuhd/package.nix b/pkgs/by-name/so/soapyuhd/package.nix index c3f57dc02081..fba5ed77970d 100644 --- a/pkgs/by-name/so/soapyuhd/package.nix +++ b/pkgs/by-name/so/soapyuhd/package.nix @@ -9,7 +9,7 @@ soapysdr, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "soapyuhd"; version = "0.4.1-unstable-2025-02-13"; diff --git a/pkgs/by-name/ta/tamgamp-lv2/package.nix b/pkgs/by-name/ta/tamgamp-lv2/package.nix index 2f32a41460f4..b0e503db8fba 100644 --- a/pkgs/by-name/ta/tamgamp-lv2/package.nix +++ b/pkgs/by-name/ta/tamgamp-lv2/package.nix @@ -7,7 +7,7 @@ zita-resampler, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "tamgamp.lv2"; version = "unstable-2020-06-14"; diff --git a/pkgs/by-name/te/teleport_16/package.nix b/pkgs/by-name/te/teleport_16/package.nix index 0d8fdc114401..cfd330a470b2 100644 --- a/pkgs/by-name/te/teleport_16/package.nix +++ b/pkgs/by-name/te/teleport_16/package.nix @@ -5,7 +5,7 @@ withRdpClient ? true, extPatches ? [ ], }: -buildTeleport rec { +buildTeleport { version = "16.5.15"; hash = "sha256-DqNG6gl+KdjSbkE9Bwum8az8cLCSOmZwo9xpuWafHCA="; vendorHash = "sha256-sZvRKLF2iZ3UpgGNUPuWMT7VTpnDa2uU0d1XjDKSmdo="; diff --git a/pkgs/by-name/te/teleport_17/package.nix b/pkgs/by-name/te/teleport_17/package.nix index 3213a864918b..7aa71820e439 100644 --- a/pkgs/by-name/te/teleport_17/package.nix +++ b/pkgs/by-name/te/teleport_17/package.nix @@ -6,7 +6,7 @@ extPatches ? [ ], }: -buildTeleport rec { +buildTeleport { version = "17.7.3"; hash = "sha256-YSYkJRAeu7iPOs/gFnozZbks0Fx5srNH0VjrKvFmHZo="; vendorHash = "sha256-7Rb94ERtp3H1Jwyh9d7AFT06d4xXdnfe5tpdvJQrbUQ="; diff --git a/pkgs/by-name/te/teleport_18/package.nix b/pkgs/by-name/te/teleport_18/package.nix index 96081e9578d7..7585fde5f5b0 100644 --- a/pkgs/by-name/te/teleport_18/package.nix +++ b/pkgs/by-name/te/teleport_18/package.nix @@ -6,7 +6,7 @@ extPatches ? [ ], }: -buildTeleport rec { +buildTeleport { version = "18.2.0"; hash = "sha256-JWgGRv9pK76u7IxwqnBcuAI93XIKfIVvme7l+a/3J7c="; vendorHash = "sha256-oPi/rIuwze2ZlyHfZ2MdDHHvdIaF2IZ2aklEVNRgoLo="; diff --git a/pkgs/by-name/un/unwaf/package.nix b/pkgs/by-name/un/unwaf/package.nix index c377aba3d45b..80e0a5867b05 100644 --- a/pkgs/by-name/un/unwaf/package.nix +++ b/pkgs/by-name/un/unwaf/package.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -buildGoModule rec { +buildGoModule { pname = "unwaf"; version = "0-unstable-2025-07-04"; diff --git a/pkgs/by-name/uu/uudeview/package.nix b/pkgs/by-name/uu/uudeview/package.nix index 211a70b7ff11..d14e02a8eb4a 100644 --- a/pkgs/by-name/uu/uudeview/package.nix +++ b/pkgs/by-name/uu/uudeview/package.nix @@ -7,7 +7,7 @@ autoreconfHook, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "uudeview"; version = "0.5.20-unstable-2025-03-20"; diff --git a/pkgs/by-name/wm/wmutils-opt/package.nix b/pkgs/by-name/wm/wmutils-opt/package.nix index c5eb09c8e4c0..1894af702624 100644 --- a/pkgs/by-name/wm/wmutils-opt/package.nix +++ b/pkgs/by-name/wm/wmutils-opt/package.nix @@ -6,7 +6,7 @@ xorg, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "wmutils-opt"; version = "1.0-unstable-2024-09-09"; diff --git a/pkgs/by-name/x1/x11docker/package.nix b/pkgs/by-name/x1/x11docker/package.nix index 0c151a8f05c7..cbd6ac36c245 100644 --- a/pkgs/by-name/x1/x11docker/package.nix +++ b/pkgs/by-name/x1/x11docker/package.nix @@ -20,7 +20,7 @@ weston, xwayland, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "x11docker"; version = "7.6.0-unstable-2024-04-04"; src = fetchFromGitHub { diff --git a/pkgs/by-name/xo/xow_dongle-firmware/package.nix b/pkgs/by-name/xo/xow_dongle-firmware/package.nix index b077ae814b87..aae11e3ba621 100644 --- a/pkgs/by-name/xo/xow_dongle-firmware/package.nix +++ b/pkgs/by-name/xo/xow_dongle-firmware/package.nix @@ -4,7 +4,7 @@ fetchurl, cabextract, }: -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation { pname = "xow_dongle-firmware"; version = "0-unstable-2025-04-22"; diff --git a/pkgs/by-name/ze/zenmap/package.nix b/pkgs/by-name/ze/zenmap/package.nix index 702ec89a866f..4167ae948408 100644 --- a/pkgs/by-name/ze/zenmap/package.nix +++ b/pkgs/by-name/ze/zenmap/package.nix @@ -8,7 +8,7 @@ xterm, }: -python3Packages.buildPythonApplication rec { +python3Packages.buildPythonApplication { pname = "zenmap"; version = nmap.version; pyproject = true; diff --git a/pkgs/data/themes/qogir-kde/default.nix b/pkgs/data/themes/qogir-kde/default.nix index 2819e8a16bf7..51779fb4346e 100644 --- a/pkgs/data/themes/qogir-kde/default.nix +++ b/pkgs/data/themes/qogir-kde/default.nix @@ -26,7 +26,7 @@ # ]; # }; -stdenvNoCC.mkDerivation rec { +stdenvNoCC.mkDerivation { pname = "qogir-kde"; version = "0-unstable-2024-12-21"; diff --git a/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix b/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix index b62d9af7ccc1..ebc521c3b292 100644 --- a/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix +++ b/pkgs/desktops/pantheon/desktop/elementary-session-settings/default.nix @@ -19,7 +19,7 @@ meson, ninja, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "elementary-session-settings"; # Allow disabling x11 session # nixpkgs-update: no auto update diff --git a/pkgs/development/compilers/gcc/ng/common/default.nix b/pkgs/development/compilers/gcc/ng/common/default.nix index 3f2e3b3b189d..ecb075894476 100644 --- a/pkgs/development/compilers/gcc/ng/common/default.nix +++ b/pkgs/development/compilers/gcc/ng/common/default.nix @@ -119,7 +119,7 @@ makeScopeWithSplicing' { langFortran = true; }; - gfortran = wrapCCWith rec { + gfortran = wrapCCWith { cc = gccPackages.gfortran-unwrapped; libcxx = targetGccPackages.libstdcxx; bintools = binutils; @@ -134,7 +134,7 @@ makeScopeWithSplicing' { ]; }; - gfortranNoLibgfortran = wrapCCWith rec { + gfortranNoLibgfortran = wrapCCWith { cc = gccPackages.gfortran-unwrapped; libcxx = targetGccPackages.libstdcxx; bintools = binutils; @@ -148,7 +148,7 @@ makeScopeWithSplicing' { ]; }; - gcc = wrapCCWith rec { + gcc = wrapCCWith { cc = gccPackages.gcc-unwrapped; libcxx = targetGccPackages.libstdcxx; bintools = binutils; @@ -162,7 +162,7 @@ makeScopeWithSplicing' { ]; }; - gccNoLibgcc = wrapCCWith rec { + gccNoLibgcc = wrapCCWith { cc = gccPackages.gcc-unwrapped; libcxx = null; bintools = binutilsNoLibc; @@ -176,7 +176,7 @@ makeScopeWithSplicing' { stdenv = overrideCC stdenv buildGccPackages.gccNoLibgcc; }; - gccWithLibc = wrapCCWith rec { + gccWithLibc = wrapCCWith { cc = gccPackages.gcc-unwrapped; libcxx = null; bintools = binutils; @@ -192,7 +192,7 @@ makeScopeWithSplicing' { stdenv = overrideCC stdenv buildGccPackages.gccWithLibc; }; - gccWithLibssp = wrapCCWith rec { + gccWithLibssp = wrapCCWith { cc = gccPackages.gcc-unwrapped; libcxx = null; bintools = binutils; @@ -209,7 +209,7 @@ makeScopeWithSplicing' { stdenv = overrideCC stdenv buildGccPackages.gccWithLibssp; }; - gccWithLibatomic = wrapCCWith rec { + gccWithLibatomic = wrapCCWith { cc = gccPackages.gcc-unwrapped; libcxx = null; bintools = binutils; diff --git a/pkgs/development/compilers/ghc/9.0.2-binary.nix b/pkgs/development/compilers/ghc/9.0.2-binary.nix index e99a7fe331c8..aa29a7cc010b 100644 --- a/pkgs/development/compilers/ghc/9.0.2-binary.nix +++ b/pkgs/development/compilers/ghc/9.0.2-binary.nix @@ -516,7 +516,7 @@ stdenv.mkDerivation { hadrian = null; }; - meta = rec { + meta = { homepage = "http://haskell.org/ghc"; description = "Glasgow Haskell Compiler"; license = lib.licenses.bsd3; diff --git a/pkgs/development/compilers/ghc/9.10.3.nix b/pkgs/development/compilers/ghc/9.10.3.nix index aac558f47417..582c192d57b4 100644 --- a/pkgs/development/compilers/ghc/9.10.3.nix +++ b/pkgs/development/compilers/ghc/9.10.3.nix @@ -1,4 +1,4 @@ -import ./common-hadrian.nix rec { +import ./common-hadrian.nix { version = "9.10.3"; sha256 = "d266864b9e0b7b741abe8c9d6a790d7c01c21cf43a1419839119255878ebc59a"; } diff --git a/pkgs/development/compilers/ghc/9.12.2.nix b/pkgs/development/compilers/ghc/9.12.2.nix index abd792750dc1..40ca6681a391 100644 --- a/pkgs/development/compilers/ghc/9.12.2.nix +++ b/pkgs/development/compilers/ghc/9.12.2.nix @@ -1,4 +1,4 @@ -import ./common-hadrian.nix rec { +import ./common-hadrian.nix { version = "9.12.2"; sha256 = "0e49cd5dde43f348c5716e5de9a5d7a0f8d68d945dc41cf75dfdefe65084f933"; } diff --git a/pkgs/development/compilers/ghc/9.2.4-binary.nix b/pkgs/development/compilers/ghc/9.2.4-binary.nix index 2031babd4ebb..adb1afa5e74f 100644 --- a/pkgs/development/compilers/ghc/9.2.4-binary.nix +++ b/pkgs/development/compilers/ghc/9.2.4-binary.nix @@ -480,7 +480,7 @@ stdenv.mkDerivation { hadrian = null; }; - meta = rec { + meta = { homepage = "http://haskell.org/ghc"; description = "Glasgow Haskell Compiler"; license = lib.licenses.bsd3; diff --git a/pkgs/development/compilers/ghc/9.6.3-binary.nix b/pkgs/development/compilers/ghc/9.6.3-binary.nix index 814c188be2da..e2444aac54fa 100644 --- a/pkgs/development/compilers/ghc/9.6.3-binary.nix +++ b/pkgs/development/compilers/ghc/9.6.3-binary.nix @@ -454,7 +454,7 @@ stdenv.mkDerivation { hadrian = null; }; - meta = rec { + meta = { homepage = "http://haskell.org/ghc"; description = "Glasgow Haskell Compiler"; license = lib.licenses.bsd3; diff --git a/pkgs/development/compilers/ghc/9.8.4-binary.nix b/pkgs/development/compilers/ghc/9.8.4-binary.nix index 11422665a057..e281377503cd 100644 --- a/pkgs/development/compilers/ghc/9.8.4-binary.nix +++ b/pkgs/development/compilers/ghc/9.8.4-binary.nix @@ -469,7 +469,7 @@ stdenv.mkDerivation { hadrian = null; }; - meta = rec { + meta = { homepage = "http://haskell.org/ghc"; description = "Glasgow Haskell Compiler"; license = lib.licenses.bsd3; diff --git a/pkgs/development/libraries/prometheus-client-c/default.nix b/pkgs/development/libraries/prometheus-client-c/default.nix index a33e20b7bd5b..d76b47dbeee1 100644 --- a/pkgs/development/libraries/prometheus-client-c/default.nix +++ b/pkgs/development/libraries/prometheus-client-c/default.nix @@ -62,7 +62,7 @@ let }; }; in -rec { +{ libprom = build { pname = "libprom"; subdir = "prom"; diff --git a/pkgs/development/libraries/wlroots/default.nix b/pkgs/development/libraries/wlroots/default.nix index 2fb4711bdcdf..66cbe09dd1a2 100644 --- a/pkgs/development/libraries/wlroots/default.nix +++ b/pkgs/development/libraries/wlroots/default.nix @@ -145,7 +145,7 @@ let }); in -rec { +{ wlroots_0_17 = generic { version = "0.17.4"; hash = "sha256-AzmXf+HMX/6VAr0LpfHwfmDB9dRrrLQHt7l35K98MVo="; diff --git a/pkgs/development/ocaml-modules/augeas/default.nix b/pkgs/development/ocaml-modules/augeas/default.nix index a4c74815ce01..efa3d94ac956 100644 --- a/pkgs/development/ocaml-modules/augeas/default.nix +++ b/pkgs/development/ocaml-modules/augeas/default.nix @@ -12,7 +12,7 @@ lib, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "ocaml-augeas"; version = "0.6"; diff --git a/pkgs/development/ocaml-modules/cooltt/default.nix b/pkgs/development/ocaml-modules/cooltt/default.nix index 69647bb08aa8..d6d5f10c1f6b 100644 --- a/pkgs/development/ocaml-modules/cooltt/default.nix +++ b/pkgs/development/ocaml-modules/cooltt/default.nix @@ -43,7 +43,7 @@ let license = lib.licenses.asl20; }; }; - kado = buildDunePackage rec { + kado = buildDunePackage { pname = "kado"; version = "unstable-2023-10-03"; src = fetchFromGitHub { diff --git a/pkgs/development/ocaml-modules/flac/default.nix b/pkgs/development/ocaml-modules/flac/default.nix index 3ba28f702a47..f58eee2bed89 100644 --- a/pkgs/development/ocaml-modules/flac/default.nix +++ b/pkgs/development/ocaml-modules/flac/default.nix @@ -8,7 +8,7 @@ flac, }: -buildDunePackage rec { +buildDunePackage { pname = "flac"; inherit (ogg) version src; diff --git a/pkgs/development/python-modules/datalad-next/default.nix b/pkgs/development/python-modules/datalad-next/default.nix index c46762606788..8a063e55244a 100644 --- a/pkgs/development/python-modules/datalad-next/default.nix +++ b/pkgs/development/python-modules/datalad-next/default.nix @@ -23,7 +23,7 @@ writableTmpDirAsHomeHook, }: -buildPythonPackage rec { +buildPythonPackage { pname = "datalad-next"; version = "1.6.0-unstable-2025-07-04"; pyproject = true; diff --git a/pkgs/development/python-modules/dbt-common/default.nix b/pkgs/development/python-modules/dbt-common/default.nix index d0829b2c34f3..3f44d1da7e43 100644 --- a/pkgs/development/python-modules/dbt-common/default.nix +++ b/pkgs/development/python-modules/dbt-common/default.nix @@ -27,7 +27,7 @@ pytest-xdist, }: -buildPythonPackage rec { +buildPythonPackage { pname = "dbt-common"; version = "1.28.0-unstable-2025-08-14"; pyproject = true; diff --git a/pkgs/development/python-modules/devpi-ldap/default.nix b/pkgs/development/python-modules/devpi-ldap/default.nix index 5a6173b2263e..3112bc4fd52f 100644 --- a/pkgs/development/python-modules/devpi-ldap/default.nix +++ b/pkgs/development/python-modules/devpi-ldap/default.nix @@ -14,7 +14,7 @@ webtest, }: -buildPythonPackage rec { +buildPythonPackage { pname = "devpi-ldap"; version = "2.1.1-unstable-2023-11-28"; pyproject = true; diff --git a/pkgs/development/python-modules/libsupermesh/default.nix b/pkgs/development/python-modules/libsupermesh/default.nix index bed0e1607932..aeb349fbca7a 100644 --- a/pkgs/development/python-modules/libsupermesh/default.nix +++ b/pkgs/development/python-modules/libsupermesh/default.nix @@ -12,7 +12,7 @@ rtree, }: -buildPythonPackage rec { +buildPythonPackage { inherit (pkgs.libsupermesh) pname version diff --git a/pkgs/development/python-modules/manifold3d/default.nix b/pkgs/development/python-modules/manifold3d/default.nix index e4f95df9e637..7c0c181914a1 100644 --- a/pkgs/development/python-modules/manifold3d/default.nix +++ b/pkgs/development/python-modules/manifold3d/default.nix @@ -16,7 +16,7 @@ trimesh, }: -buildPythonPackage rec { +buildPythonPackage { pname = "manifold3d"; inherit (manifold) version src; pyproject = true; diff --git a/pkgs/development/python-modules/msrplib/default.nix b/pkgs/development/python-modules/msrplib/default.nix index 0ccdbdd1b87c..de8e1eca240f 100644 --- a/pkgs/development/python-modules/msrplib/default.nix +++ b/pkgs/development/python-modules/msrplib/default.nix @@ -6,7 +6,7 @@ unstableGitUpdater, }: -buildPythonPackage rec { +buildPythonPackage { pname = "msrplib"; version = "0.20.1-unstable-2021-06-01"; pyproject = true; diff --git a/pkgs/development/python-modules/mypy-boto3/default.nix b/pkgs/development/python-modules/mypy-boto3/default.nix index dfca70d12f95..8012fe183223 100644 --- a/pkgs/development/python-modules/mypy-boto3/default.nix +++ b/pkgs/development/python-modules/mypy-boto3/default.nix @@ -44,7 +44,7 @@ let }; }; in -rec { +{ mypy-boto3-accessanalyzer = buildMypyBoto3Package "accessanalyzer" "1.40.0" "sha256-hY5aShO9E5zMwPSUUucjgG2Bod0lAm51BZyLP/1JLgY="; diff --git a/pkgs/development/python-modules/nampa/default.nix b/pkgs/development/python-modules/nampa/default.nix index e096ea945a00..b4738f5dd261 100644 --- a/pkgs/development/python-modules/nampa/default.nix +++ b/pkgs/development/python-modules/nampa/default.nix @@ -7,7 +7,7 @@ unstableGitUpdater, }: -buildPythonPackage rec { +buildPythonPackage { pname = "nampa"; version = "1.0-unstable-2024-12-18"; pyproject = true; diff --git a/pkgs/development/python-modules/py-libnuma/default.nix b/pkgs/development/python-modules/py-libnuma/default.nix index 21e2d05547e0..90310b81b4c3 100644 --- a/pkgs/development/python-modules/py-libnuma/default.nix +++ b/pkgs/development/python-modules/py-libnuma/default.nix @@ -8,7 +8,7 @@ numactl, }: -buildPythonPackage rec { +buildPythonPackage { pname = "py-libnuma"; version = "1.2"; pyproject = true; diff --git a/pkgs/development/python-modules/pyipv8/default.nix b/pkgs/development/python-modules/pyipv8/default.nix index 55e65a97679a..b9c4b2fc6b62 100644 --- a/pkgs/development/python-modules/pyipv8/default.nix +++ b/pkgs/development/python-modules/pyipv8/default.nix @@ -15,7 +15,7 @@ apispec, }: -buildPythonPackage rec { +buildPythonPackage { pname = "pyipv8"; version = "3.0.2197-unstable-2025-07-29"; format = "setuptools"; diff --git a/pkgs/development/python-modules/pyquerylist/default.nix b/pkgs/development/python-modules/pyquerylist/default.nix index 17560e05400f..af03588470e7 100644 --- a/pkgs/development/python-modules/pyquerylist/default.nix +++ b/pkgs/development/python-modules/pyquerylist/default.nix @@ -11,7 +11,7 @@ pytestCheckHook, fetchpatch, }: -buildPythonPackage rec { +buildPythonPackage { pname = "pyquerylist"; version = "0-unstable-2025-03-03"; pyproject = true; diff --git a/pkgs/development/python-modules/pysecretsocks/default.nix b/pkgs/development/python-modules/pysecretsocks/default.nix index 2e9a3283c525..ae70105c0048 100644 --- a/pkgs/development/python-modules/pysecretsocks/default.nix +++ b/pkgs/development/python-modules/pysecretsocks/default.nix @@ -6,7 +6,7 @@ pyasyncore, }: -buildPythonPackage rec { +buildPythonPackage { pname = "pysecretsocks"; version = "0.9.1-unstable-2023-11-04"; pyproject = true; diff --git a/pkgs/development/python-modules/pytest-icdiff/default.nix b/pkgs/development/python-modules/pytest-icdiff/default.nix index 6b0ba2adfd42..a4f98a9958f5 100644 --- a/pkgs/development/python-modules/pytest-icdiff/default.nix +++ b/pkgs/development/python-modules/pytest-icdiff/default.nix @@ -10,7 +10,7 @@ writableTmpDirAsHomeHook, }: -buildPythonPackage rec { +buildPythonPackage { pname = "pytest-icdiff"; version = "0.5-unstable-2024-09-04"; pyproject = true; diff --git a/pkgs/development/python-modules/python-coinmarketcap/default.nix b/pkgs/development/python-modules/python-coinmarketcap/default.nix index 9e64a9138d18..b0469d4175e3 100644 --- a/pkgs/development/python-modules/python-coinmarketcap/default.nix +++ b/pkgs/development/python-modules/python-coinmarketcap/default.nix @@ -7,7 +7,7 @@ setuptools, }: -buildPythonPackage rec { +buildPythonPackage { pname = "python-coinmarketcap"; version = "0.6"; pyproject = true; diff --git a/pkgs/development/python-modules/python-sat/default.nix b/pkgs/development/python-modules/python-sat/default.nix index a64ab34d2cd1..8b6e8716a56b 100644 --- a/pkgs/development/python-modules/python-sat/default.nix +++ b/pkgs/development/python-modules/python-sat/default.nix @@ -6,7 +6,7 @@ pypblib, pytestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage { pname = "python-sat"; version = "0.1.8.dev20"; format = "setuptools"; diff --git a/pkgs/development/python-modules/pytorchviz/default.nix b/pkgs/development/python-modules/pytorchviz/default.nix index 445e2b9b425d..f5396a6899ce 100644 --- a/pkgs/development/python-modules/pytorchviz/default.nix +++ b/pkgs/development/python-modules/pytorchviz/default.nix @@ -9,7 +9,7 @@ unittestCheckHook, }: -buildPythonPackage rec { +buildPythonPackage { pname = "pytorchviz"; version = "0.0.2-unstable-2024-12-30"; pyproject = true; diff --git a/pkgs/development/python-modules/root/default.nix b/pkgs/development/python-modules/root/default.nix index 15837bfee25f..8dbfd4295ed5 100644 --- a/pkgs/development/python-modules/root/default.nix +++ b/pkgs/development/python-modules/root/default.nix @@ -7,7 +7,7 @@ let unwrapped = root.override { python3 = python; }; in -buildPythonPackage rec { +buildPythonPackage { # ROOT builds the C++ libraries and CPython extensions in one package and # python versions must never be mixed passthru = { diff --git a/pkgs/development/python-modules/sss/default.nix b/pkgs/development/python-modules/sss/default.nix index 71241e26cf74..69055cb1d1e2 100644 --- a/pkgs/development/python-modules/sss/default.nix +++ b/pkgs/development/python-modules/sss/default.nix @@ -13,7 +13,7 @@ let python3 = python; }; in -buildPythonPackage rec { +buildPythonPackage { pname = "sss"; inherit (sssdForPython) version; diff --git a/pkgs/development/python-modules/tensorrt/default.nix b/pkgs/development/python-modules/tensorrt/default.nix index 12f07753be8a..e884b769aa99 100644 --- a/pkgs/development/python-modules/tensorrt/default.nix +++ b/pkgs/development/python-modules/tensorrt/default.nix @@ -12,7 +12,7 @@ let pyVersion = "${lib.versions.major python.version}${lib.versions.minor python.version}"; buildVersion = lib.optionalString (cudaPackages ? tensorrt) cudaPackages.tensorrt.version; in -buildPythonPackage rec { +buildPythonPackage { pname = "tensorrt"; version = buildVersion; diff --git a/pkgs/development/python-modules/xcaplib/default.nix b/pkgs/development/python-modules/xcaplib/default.nix index d046f8500bd8..33f7607b6a3b 100644 --- a/pkgs/development/python-modules/xcaplib/default.nix +++ b/pkgs/development/python-modules/xcaplib/default.nix @@ -9,7 +9,7 @@ unstableGitUpdater, }: -buildPythonPackage rec { +buildPythonPackage { pname = "xcaplib"; # latest commit is needed for python 3.13 compat. version = "2.0.1-unstable-2025-03-20"; diff --git a/pkgs/development/tools/analysis/sparse/default.nix b/pkgs/development/tools/analysis/sparse/default.nix index 6f5e331b3c29..86718b6ee95f 100644 --- a/pkgs/development/tools/analysis/sparse/default.nix +++ b/pkgs/development/tools/analysis/sparse/default.nix @@ -14,7 +14,7 @@ let GCC_BASE = "${stdenv.cc.cc}/lib/gcc/${stdenv.hostPlatform.uname.processor}-unknown-linux-gnu/${stdenv.cc.cc.version}"; in -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "sparse"; version = "0.6.4-unstable-2024-02-03"; diff --git a/pkgs/development/tools/misc/creduce/default.nix b/pkgs/development/tools/misc/creduce/default.nix index 1984e22780c6..3061968e2b71 100644 --- a/pkgs/development/tools/misc/creduce/default.nix +++ b/pkgs/development/tools/misc/creduce/default.nix @@ -12,7 +12,7 @@ util-linux, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "creduce"; version = "2.10.0-unstable-2024-06-01"; diff --git a/pkgs/development/tools/replay-io/default.nix b/pkgs/development/tools/replay-io/default.nix index ab15c278ddcc..029b0b9e003b 100644 --- a/pkgs/development/tools/replay-io/default.nix +++ b/pkgs/development/tools/replay-io/default.nix @@ -50,7 +50,7 @@ rec { }; }; - replay-io = stdenv.mkDerivation rec { + replay-io = stdenv.mkDerivation { pname = "replay-io"; version = builtins.head (builtins.match ".*/linux-gecko-(.*).tar.bz2" metadata.replay.url); srcs = fetchurl metadata.replay; @@ -96,7 +96,7 @@ rec { }; }; - replay-node = stdenv.mkDerivation rec { + replay-node = stdenv.mkDerivation { pname = "replay-node"; version = builtins.head (builtins.match ".*/linux-node-(.*)" metadata.replay-node.url); nativeBuildInputs = [ diff --git a/pkgs/games/flightgear/openscenegraph-flightgear.nix b/pkgs/games/flightgear/openscenegraph-flightgear.nix index a1440f4dd253..a78f6b887359 100644 --- a/pkgs/games/flightgear/openscenegraph-flightgear.nix +++ b/pkgs/games/flightgear/openscenegraph-flightgear.nix @@ -25,7 +25,7 @@ libXrandr, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "openscenegraph"; version = "2024-build"; diff --git a/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix b/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix index 57cfd2ef45fa..05e1c20a722a 100644 --- a/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix +++ b/pkgs/misc/cups/drivers/brother/dcp375cw/default.nix @@ -19,7 +19,7 @@ let version = "1.1.3"; model = "dcp375cw"; in -rec { +{ driver = stdenv.mkDerivation { pname = "${model}-lpr"; inherit version; diff --git a/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix b/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix index 1a1e5988f007..7cf4e1017314 100644 --- a/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix +++ b/pkgs/misc/cups/drivers/brother/dcp9020cdw/default.nix @@ -19,7 +19,7 @@ let version = "1.1.2"; model = "dcp9020cdw"; in -rec { +{ driver = stdenv.mkDerivation { pname = "${model}-lpr"; inherit version; diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 2d006c33d0de..7536614cbf82 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -421,7 +421,7 @@ in }; }; - kanagawa = mkTmuxPlugin rec { + kanagawa = mkTmuxPlugin { pluginName = "kanagawa"; version = "0-unstable-2025-02-10"; src = fetchFromGitHub { @@ -478,7 +478,7 @@ in }; }; - mode-indicator = mkTmuxPlugin rec { + mode-indicator = mkTmuxPlugin { pluginName = "mode-indicator"; version = "unstable-2021-10-01"; src = fetchFromGitHub { diff --git a/pkgs/os-specific/linux/digimend/default.nix b/pkgs/os-specific/linux/digimend/default.nix index f3a00333a751..839f524fd526 100644 --- a/pkgs/os-specific/linux/digimend/default.nix +++ b/pkgs/os-specific/linux/digimend/default.nix @@ -6,7 +6,7 @@ kernelModuleMakeFlags, }: -stdenv.mkDerivation rec { +stdenv.mkDerivation { pname = "digimend"; version = "13-unstable-2025-01-02"; diff --git a/pkgs/servers/home-assistant/custom-components/luxer_one/package.nix b/pkgs/servers/home-assistant/custom-components/luxer_one/package.nix index efda15717365..f36f2283c505 100644 --- a/pkgs/servers/home-assistant/custom-components/luxer_one/package.nix +++ b/pkgs/servers/home-assistant/custom-components/luxer_one/package.nix @@ -5,7 +5,7 @@ ruff, }: -buildHomeAssistantComponent rec { +buildHomeAssistantComponent { owner = "tjhorner"; domain = "luxer"; version = "0-unstable-2023-03-27"; diff --git a/pkgs/test/vim/default.nix b/pkgs/test/vim/default.nix index eb76745d038e..2606f7d92b63 100644 --- a/pkgs/test/vim/default.nix +++ b/pkgs/test/vim/default.nix @@ -10,7 +10,7 @@ let packages.myVimPackage.start = with vimPlugins; [ vim-nix ]; in -pkgs.recurseIntoAttrs (rec { +pkgs.recurseIntoAttrs ({ vim_empty_config = vimUtils.vimrcFile { beforePlugins = ""; customRC = ""; diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix index fe2e8ed03c51..f7d4a1b408a9 100644 --- a/pkgs/tools/typesetting/tex/texlive/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive/bin.nix @@ -540,7 +540,7 @@ rec { # https://github.com/gucci-on-fleek/context-packaging context_packaging_release = "2025-06-12-14-21-B"; in - stdenv.mkDerivation rec { + stdenv.mkDerivation { pname = "luametatex"; version = "2.11.07"; diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix index 477e51215339..c9f0b72cd552 100644 --- a/pkgs/top-level/lua-packages.nix +++ b/pkgs/top-level/lua-packages.nix @@ -118,7 +118,7 @@ rec { linux-pam, openpam, }: - buildLuaPackage rec { + buildLuaPackage { pname = "lua-pam"; version = "unstable-2015-07-03"; From c283f32d296564fd649ef3ed268c1f1f7b199c49 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 1 Sep 2025 13:00:13 +0200 Subject: [PATCH 12/14] treewide: remove unused with Auto-fixed by nixf-diagnose. --- ci/default.nix | 5 ++- nixos/modules/config/terminfo.nix | 2 +- nixos/modules/i18n/input-method/default.nix | 2 +- .../installer/netboot/netboot-base.nix | 2 -- nixos/modules/profiles/headless.nix | 2 -- nixos/modules/programs/fuse.nix | 2 +- nixos/modules/programs/gamescope.nix | 2 +- nixos/modules/programs/wayland/labwc.nix | 2 +- nixos/modules/programs/wayland/lib.nix | 2 +- nixos/modules/programs/wayland/sway.nix | 2 +- nixos/modules/programs/wshowkeys.nix | 2 +- nixos/modules/security/acme/default.nix | 2 +- nixos/modules/services/backup/borgbackup.nix | 5 ++- .../services/computing/boinc/client.nix | 2 +- .../buildbot/master.nix | 2 +- nixos/modules/services/databases/chromadb.nix | 2 +- .../services/desktop-managers/lomiri.nix | 2 +- nixos/modules/services/desktops/bamf.nix | 4 +-- nixos/modules/services/desktops/tumbler.nix | 4 +-- nixos/modules/services/logging/fluentd.nix | 2 +- nixos/modules/services/logging/heartbeat.nix | 2 +- nixos/modules/services/mail/public-inbox.nix | 2 +- .../modules/services/matrix/mautrix-meta.nix | 2 +- nixos/modules/services/misc/cgminer.nix | 4 +-- nixos/modules/services/misc/docling-serve.nix | 2 +- nixos/modules/services/misc/litellm.nix | 2 +- nixos/modules/services/misc/orthanc.nix | 2 +- .../modules/services/monitoring/graphite.nix | 7 ++-- nixos/modules/services/networking/ivpn.nix | 2 +- nixos/modules/services/networking/jool.nix | 2 +- nixos/modules/services/networking/resilio.nix | 2 +- .../modules/services/networking/ssh/sshd.nix | 2 +- .../modules/services/security/hockeypuck.nix | 2 +- nixos/modules/services/system/earlyoom.nix | 2 +- .../services/web-apps/anuko-time-tracker.nix | 2 +- nixos/modules/services/web-apps/honk.nix | 2 +- .../modules/services/x11/terminal-server.nix | 2 -- nixos/modules/system/boot/shutdown.nix | 2 -- .../virtualisation/cloudstack-config.nix | 2 -- nixos/modules/virtualisation/openvswitch.nix | 2 +- nixos/modules/virtualisation/vmware-host.nix | 2 +- nixos/release-combined.nix | 2 +- nixos/tests/anuko-time-tracker.nix | 2 +- nixos/tests/curl-impersonate.nix | 2 +- nixos/tests/docker-rootless.nix | 2 +- nixos/tests/docling-serve.nix | 2 +- nixos/tests/documize.nix | 2 +- nixos/tests/etesync-dav.nix | 2 +- nixos/tests/flaresolverr.nix | 2 +- nixos/tests/frr.nix | 2 +- nixos/tests/google-oslogin/default.nix | 2 +- nixos/tests/gotify-server.nix | 2 +- nixos/tests/greetd-no-shadow.nix | 2 +- nixos/tests/gvisor.nix | 2 +- nixos/tests/hockeypuck.nix | 2 +- nixos/tests/ipv6.nix | 2 +- nixos/tests/isso.nix | 2 +- nixos/tests/jackett.nix | 2 +- nixos/tests/lidarr.nix | 2 +- nixos/tests/litellm.nix | 2 +- nixos/tests/login.nix | 2 +- nixos/tests/lxc/default.nix | 2 +- nixos/tests/munin.nix | 2 +- nixos/tests/networking-proxy.nix | 2 +- nixos/tests/nfs/simple.nix | 2 +- nixos/tests/opensearch.nix | 2 +- nixos/tests/prowlarr.nix | 2 +- nixos/tests/proxy.nix | 2 +- nixos/tests/quake3.nix | 2 +- nixos/tests/radarr.nix | 2 +- nixos/tests/scrutiny.nix | 2 +- nixos/tests/soapui.nix | 2 +- nixos/tests/sogo.nix | 2 +- nixos/tests/sonarr.nix | 2 +- nixos/tests/spiped.nix | 2 +- nixos/tests/swayfx.nix | 2 +- nixos/tests/sympa.nix | 2 +- nixos/tests/syncthing/relay.nix | 2 +- nixos/tests/systemd-networkd-dhcpserver.nix | 2 +- nixos/tests/tandoor-recipes.nix | 2 +- nixos/tests/tigervnc.nix | 2 +- nixos/tests/timezone.nix | 2 +- nixos/tests/tinywl.nix | 2 +- nixos/tests/udisks2.nix | 2 +- nixos/tests/xmpp/ejabberd.nix | 2 +- nixos/tests/xrdp.nix | 2 +- .../audio/mopidy/musicbox-webclient.nix | 2 +- .../manual-packages/cask/package.nix | 2 +- .../color-theme-solarized/package.nix | 2 +- .../manual-packages/ebuild-mode/package.nix | 2 +- .../manual-packages/elisp-ffi/package.nix | 2 +- .../font-lock-plus/package.nix | 2 +- .../manual-packages/grid/package.nix | 2 +- .../manual-packages/icicles/package.nix | 2 +- .../manual-packages/lspce/module.nix | 2 +- .../manual-packages/rect-mark/package.nix | 2 +- .../manual-packages/tsc/package.nix | 2 +- .../manual-packages/voicemacs/package.nix | 2 +- .../default.nix | 2 +- .../anweber.vscode-httpyac/default.nix | 2 +- .../mongodb.mongodb-vscode/default.nix | 2 +- .../ms-python.mypy-type-checker/default.nix | 2 +- .../default.nix | 2 +- .../default.nix | 2 +- .../extensions/pylyzer.pylyzer/default.nix | 2 +- .../rooveterinaryinc.roo-cline/default.nix | 2 +- .../emulators/yabause/default.nix | 2 +- .../graphics/gimp/2.0/default.nix | 2 +- pkgs/applications/misc/coolreader/default.nix | 2 +- .../cubocore-packages/coreaction/default.nix | 2 +- .../corearchiver/default.nix | 2 +- .../misc/cubocore-packages/corefm/default.nix | 2 +- .../cubocore-packages/coregarage/default.nix | 2 +- .../cubocore-packages/corehunt/default.nix | 2 +- .../cubocore-packages/coreimage/default.nix | 2 +- .../cubocore-packages/coreinfo/default.nix | 2 +- .../corekeyboard/default.nix | 2 +- .../cubocore-packages/corepad/default.nix | 2 +- .../cubocore-packages/corepaint/default.nix | 2 +- .../cubocore-packages/corepdf/default.nix | 2 +- .../cubocore-packages/corepins/default.nix | 2 +- .../cubocore-packages/corerenamer/default.nix | 2 +- .../cubocore-packages/coreshot/default.nix | 2 +- .../cubocore-packages/corestats/default.nix | 2 +- .../cubocore-packages/corestuff/default.nix | 2 +- .../coreterminal/default.nix | 2 +- .../cubocore-packages/coretime/default.nix | 2 +- .../coretoppings/default.nix | 2 +- .../coreuniverse/default.nix | 2 +- .../cubocore-packages/libcprime/default.nix | 2 +- .../cubocore-packages/libcsys/default.nix | 2 +- pkgs/applications/misc/cura/plugins.nix | 4 +-- pkgs/applications/misc/heimer/default.nix | 2 +- pkgs/applications/misc/klayout/default.nix | 2 +- pkgs/applications/misc/makehuman/default.nix | 2 +- pkgs/applications/misc/redshift/default.nix | 2 +- pkgs/applications/misc/valentina/default.nix | 2 +- .../networking/cluster/spark/default.nix | 2 +- pkgs/applications/networking/dropbox/cli.nix | 2 +- pkgs/applications/networking/gns3/gui.nix | 2 +- .../newsreaders/quiterss/default.nix | 2 +- .../science/logic/vampire/default.nix | 2 +- .../science/math/cemu-ti/default.nix | 2 +- .../version-management/blackbox/default.nix | 2 +- .../video/mpv/scripts/builtins.nix | 2 +- .../video/openshot-qt/default.nix | 2 +- .../window-managers/hyprwm/hypr/default.nix | 2 +- .../window-managers/i3/lock-blur.nix | 2 +- .../test/references/default.nix | 2 +- pkgs/by-name/_0/_0x/package.nix | 2 +- pkgs/by-name/_3/_3270font/package.nix | 2 +- pkgs/by-name/_4/_4d-minesweeper/package.nix | 2 +- pkgs/by-name/_4/_4th/package.nix | 2 +- pkgs/by-name/_4/_4ti2/package.nix | 2 +- pkgs/by-name/_9/_9menu/package.nix | 2 +- pkgs/by-name/a2/a2jmidid/package.nix | 2 +- pkgs/by-name/aa/aaphoto/package.nix | 2 +- pkgs/by-name/ab/ab-av1/package.nix | 2 +- .../ac/accuraterip-checksum/package.nix | 2 +- pkgs/by-name/ac/ace-of-penguins/package.nix | 2 +- pkgs/by-name/ac/acpi/package.nix | 2 +- pkgs/by-name/ac/acr/package.nix | 2 +- pkgs/by-name/ac/acsccid/package.nix | 2 +- pkgs/by-name/ad/adafruit-ampy/package.nix | 2 +- pkgs/by-name/ad/adminerevo/package.nix | 2 +- pkgs/by-name/ad/adrgen/package.nix | 2 +- pkgs/by-name/ae/aefs/package.nix | 2 +- pkgs/by-name/ae/aespipe/package.nix | 2 +- pkgs/by-name/af/afterstep/package.nix | 2 +- pkgs/by-name/ai/airgeddon/package.nix | 2 +- pkgs/by-name/al/algol68g/package.nix | 2 +- pkgs/by-name/al/alisthelper/package.nix | 2 +- pkgs/by-name/am/amarok/package.nix | 2 +- pkgs/by-name/am/ameba/package.nix | 2 +- pkgs/by-name/am/amiberry/package.nix | 2 +- pkgs/by-name/am/aml/package.nix | 2 +- pkgs/by-name/am/amqpcat/package.nix | 2 +- pkgs/by-name/an/anthy/package.nix | 2 +- pkgs/by-name/an/antiprism/package.nix | 2 +- .../by-name/an/anuko-time-tracker/package.nix | 2 +- pkgs/by-name/an/anydesk/package.nix | 2 +- pkgs/by-name/ap/apache-orc/package.nix | 2 +- pkgs/by-name/ap/apkeep/package.nix | 2 +- pkgs/by-name/ap/apt-offline/package.nix | 2 +- pkgs/by-name/ap/apt/package.nix | 2 +- pkgs/by-name/ar/aranym/package.nix | 2 +- pkgs/by-name/ar/arcan/package.nix | 2 +- pkgs/by-name/ar/argagg/package.nix | 2 +- pkgs/by-name/ar/argbash/package.nix | 2 +- pkgs/by-name/ar/argtable/package.nix | 2 +- .../as/asciinema-automation/package.nix | 2 +- pkgs/by-name/as/asciinema/package.nix | 2 +- pkgs/by-name/as/asl/package.nix | 2 +- pkgs/by-name/as/aspino/package.nix | 2 +- pkgs/by-name/as/assh/package.nix | 2 +- .../as/astrolabe-generator/package.nix | 2 +- pkgs/by-name/at/atari800/package.nix | 2 +- pkgs/by-name/at/ataripp/package.nix | 2 +- pkgs/by-name/at/atasm/package.nix | 2 +- pkgs/by-name/au/aurea/package.nix | 2 +- pkgs/by-name/au/autobase/package.nix | 2 +- .../au/automaticcomponenttoolkit/package.nix | 2 +- pkgs/by-name/aw/awstats/package.nix | 2 +- .../ay/ayatana-indicator-display/package.nix | 2 +- .../az/azure-cli/extensions-manual.nix | 2 +- pkgs/by-name/ba/backward-cpp/package.nix | 2 +- pkgs/by-name/ba/barrage/package.nix | 2 +- .../ba/base16-shell-preview/package.nix | 2 +- pkgs/by-name/ba/bashly/package.nix | 2 +- pkgs/by-name/ba/basu/package.nix | 2 +- pkgs/by-name/be/beebeep/package.nix | 2 +- pkgs/by-name/bi/bibletime/package.nix | 2 +- pkgs/by-name/bi/bigpemu/package.nix | 2 +- pkgs/by-name/bi/biliup-rs/package.nix | 2 +- pkgs/by-name/bi/bind/package.nix | 2 +- pkgs/by-name/bi/bingo/package.nix | 2 +- pkgs/by-name/bi/biplanes-revival/package.nix | 2 +- pkgs/by-name/bi/bitcomet/package.nix | 2 +- pkgs/by-name/bl/blackfire/package.nix | 2 +- pkgs/by-name/bl/blackfire/php-probe.nix | 2 +- pkgs/by-name/bl/blockattack/package.nix | 2 +- pkgs/by-name/bl/bluejay/package.nix | 2 +- pkgs/by-name/bl/bluemail/package.nix | 2 +- pkgs/by-name/bl/bluez-headers/package.nix | 2 +- pkgs/by-name/bl/bluez-tools/package.nix | 2 +- pkgs/by-name/bo/boehmgc/package.nix | 2 +- pkgs/by-name/bq/bqn/package.nix | 2 +- pkgs/by-name/br/brill/package.nix | 2 +- pkgs/by-name/br/brmodelo/package.nix | 2 +- pkgs/by-name/bs/bsd-finger/package.nix | 2 +- pkgs/by-name/bt/btanks/package.nix | 2 +- pkgs/by-name/bu/butterfly/package.nix | 2 +- pkgs/by-name/by/byacc/package.nix | 2 +- pkgs/by-name/by/byobu/package.nix | 2 +- pkgs/by-name/ca/cage/package.nix | 2 +- pkgs/by-name/ca/cagebreak/package.nix | 2 +- pkgs/by-name/ca/calcoo/package.nix | 2 +- pkgs/by-name/ca/calculix-ccx/package.nix | 2 +- pkgs/by-name/ca/cargo-ndk/package.nix | 2 +- pkgs/by-name/ca/cargo-shear/package.nix | 2 +- pkgs/by-name/ca/casilda/package.nix | 2 +- pkgs/by-name/ca/cat9/package.nix | 2 +- pkgs/by-name/ca/catamaran/package.nix | 2 +- pkgs/by-name/cb/cbftp/package.nix | 2 +- pkgs/by-name/cc/cc65/package.nix | 2 +- pkgs/by-name/ce/celeste64/package.nix | 2 +- pkgs/by-name/ce/cent/package.nix | 2 +- pkgs/by-name/ce/cereal_1_3_0/package.nix | 2 +- pkgs/by-name/ce/cereal_1_3_2/package.nix | 2 +- pkgs/by-name/cf/cfripper/package.nix | 2 +- pkgs/by-name/ch/chatmcp/package.nix | 2 +- pkgs/by-name/ch/chawan/package.nix | 2 +- pkgs/by-name/ch/chcase/package.nix | 2 +- pkgs/by-name/ch/chemacs2/package.nix | 2 +- pkgs/by-name/ch/chemtool/package.nix | 2 +- pkgs/by-name/ch/cherry-studio/package.nix | 2 +- pkgs/by-name/ch/chezmoi/package.nix | 2 +- pkgs/by-name/ch/chromium-bsu/package.nix | 2 +- pkgs/by-name/ch/chsrc/package.nix | 2 +- pkgs/by-name/ci/ciano/package.nix | 2 +- pkgs/by-name/cl/clair/package.nix | 2 +- pkgs/by-name/cl/clashtui/package.nix | 2 +- pkgs/by-name/cl/clblas/package.nix | 2 +- pkgs/by-name/cl/clevis/package.nix | 2 +- pkgs/by-name/cl/cloud-nuke/package.nix | 2 +- pkgs/by-name/cl/cloudflare-ddns/package.nix | 2 +- pkgs/by-name/cm/cmph/package.nix | 2 +- pkgs/by-name/co/coin3d/package.nix | 2 +- pkgs/by-name/co/connman/package.nix | 2 +- pkgs/by-name/co/containerlab/package.nix | 2 +- pkgs/by-name/co/convbin/package.nix | 2 +- pkgs/by-name/co/converseen/package.nix | 2 +- pkgs/by-name/co/convfont/package.nix | 2 +- pkgs/by-name/co/convimg/package.nix | 2 +- pkgs/by-name/co/copacetic/package.nix | 2 +- pkgs/by-name/cr/crcpp/package.nix | 2 +- pkgs/by-name/cr/cronie/package.nix | 2 +- pkgs/by-name/cs/csvkit/package.nix | 2 +- pkgs/by-name/ct/ctx/package.nix | 2 +- pkgs/by-name/cu/cue2pops/package.nix | 2 +- pkgs/by-name/cy/cyberpunk-neon/package.nix | 2 +- pkgs/by-name/da/dav1d/package.nix | 2 +- pkgs/by-name/db/dbx/package.nix | 2 +- pkgs/by-name/dd/ddsmt/package.nix | 2 +- pkgs/by-name/de/debianutils/package.nix | 2 +- pkgs/by-name/de/deckmaster/package.nix | 2 +- pkgs/by-name/de/departure-mono/package.nix | 2 +- pkgs/by-name/dg/dgen-sdl/package.nix | 2 +- pkgs/by-name/di/diamond/package.nix | 4 +-- pkgs/by-name/di/dictu/package.nix | 2 +- .../di/discordchatexporter-cli/package.nix | 2 +- pkgs/by-name/di/disk-filltest/package.nix | 2 +- pkgs/by-name/di/distroshelf/package.nix | 2 +- pkgs/by-name/dj/djhtml/package.nix | 2 +- pkgs/by-name/dn/dns-over-https/package.nix | 2 +- pkgs/by-name/do/docopt_cpp/package.nix | 2 +- pkgs/by-name/do/doomretro/package.nix | 2 +- pkgs/by-name/do/doublecmd/package.nix | 2 +- pkgs/by-name/du/dummyhttp/package.nix | 2 +- pkgs/by-name/du/dump/package.nix | 2 +- pkgs/by-name/du/dura/package.nix | 2 +- pkgs/by-name/du/durden/package.nix | 2 +- pkgs/by-name/dv/dvdstyler/package.nix | 2 +- pkgs/by-name/dx/dxa/package.nix | 2 +- pkgs/by-name/dy/dyndnsc/package.nix | 2 +- pkgs/by-name/dy/dynein/package.nix | 2 +- pkgs/by-name/ea/earlybird/package.nix | 2 +- pkgs/by-name/ea/earthlyls/package.nix | 2 +- pkgs/by-name/ec/ecmtools/package.nix | 2 +- pkgs/by-name/ec/ecs-agent/package.nix | 2 +- pkgs/by-name/ed/ed/package.nix | 2 +- pkgs/by-name/ed/edit/package.nix | 2 +- pkgs/by-name/ed/edlin/package.nix | 2 +- pkgs/by-name/ei/eiciel/package.nix | 2 +- pkgs/by-name/el/elan/package.nix | 2 +- pkgs/by-name/el/elfinfo/package.nix | 2 +- pkgs/by-name/el/elvis/package.nix | 2 +- pkgs/by-name/el/elvish/package.nix | 2 +- pkgs/by-name/em/em/package.nix | 2 +- pkgs/by-name/em/emacspeak/package.nix | 2 +- pkgs/by-name/em/emojify/package.nix | 2 +- pkgs/by-name/em/emu2/package.nix | 2 +- pkgs/by-name/en/engelsystem/package.nix | 2 +- pkgs/by-name/ep/epson-escpr/package.nix | 2 +- pkgs/by-name/et/etlegacy-assets/package.nix | 2 +- pkgs/by-name/ex/excalifont/package.nix | 2 +- pkgs/by-name/fa/fastjar/package.nix | 2 +- pkgs/by-name/fc/fcast-client/package.nix | 2 +- pkgs/by-name/fc/fcitx5-fluent/package.nix | 2 +- pkgs/by-name/fe/fermyon-spin/package.nix | 2 +- pkgs/by-name/fg/fg-virgil/package.nix | 2 +- pkgs/by-name/fi/figma-agent/package.nix | 2 +- pkgs/by-name/fi/fim/package.nix | 2 +- pkgs/by-name/fl/flam3/package.nix | 2 +- pkgs/by-name/fl/flaresolverr/package.nix | 2 +- pkgs/by-name/fl/flclash/package.nix | 2 +- pkgs/by-name/fl/fleng/package.nix | 2 +- pkgs/by-name/fl/flycast/package.nix | 2 +- pkgs/by-name/fm/fm-go/package.nix | 2 +- pkgs/by-name/fo/fopnu/package.nix | 2 +- pkgs/by-name/fr/free42/package.nix | 2 +- pkgs/by-name/fr/freediameter/package.nix | 2 +- .../fs/fscrypt-experimental/package.nix | 2 +- pkgs/by-name/fs/fscryptctl/package.nix | 2 +- pkgs/by-name/fs/fsnotifier/package.nix | 2 +- pkgs/by-name/ft/ftgl/package.nix | 2 +- pkgs/by-name/fv/fvm/package.nix | 2 +- pkgs/by-name/fv/fvwm3/package.nix | 2 +- pkgs/by-name/fw/fwknop/package.nix | 2 +- pkgs/by-name/ga/galaxis/package.nix | 2 +- pkgs/by-name/ga/galculator/package.nix | 2 +- pkgs/by-name/ga/game-music-emu/package.nix | 2 +- pkgs/by-name/ga/garamond-libre/package.nix | 2 +- pkgs/by-name/gc/gcsfuse/package.nix | 2 +- pkgs/by-name/gd/gdbm/package.nix | 2 +- pkgs/by-name/ge/germinal/package.nix | 2 +- pkgs/by-name/gh/ghmap/package.nix | 2 +- pkgs/by-name/gi/gifgen/package.nix | 2 +- pkgs/by-name/gi/gimme-aws-creds/package.nix | 2 +- pkgs/by-name/gi/git-branchstack/package.nix | 2 +- .../gi/git-credential-oauth/package.nix | 2 +- pkgs/by-name/gi/git-imerge/package.nix | 2 +- pkgs/by-name/gi/github-desktop/package.nix | 2 +- pkgs/by-name/gl/glpng/package.nix | 2 +- pkgs/by-name/gl/glucose/package.nix | 2 +- pkgs/by-name/gm/gmic-qt/package.nix | 2 +- pkgs/by-name/gn/gnu-smalltalk/package.nix | 2 +- pkgs/by-name/go/go-bindata/package.nix | 2 +- pkgs/by-name/go/go-rice/package.nix | 2 +- pkgs/by-name/go/goobook/package.nix | 2 +- .../go/google-guest-oslogin/package.nix | 2 +- pkgs/by-name/go/gopeed/package.nix | 2 +- pkgs/by-name/gp/gp2c/package.nix | 2 +- pkgs/by-name/gp/gpt-box/package.nix | 2 +- pkgs/by-name/gr/grafx2/package.nix | 2 +- pkgs/by-name/gr/graphicsmagick/package.nix | 2 +- pkgs/by-name/gr/greetd/package.nix | 2 +- pkgs/by-name/gr/gretl/package.nix | 2 +- pkgs/by-name/gt/gtkgreet/package.nix | 2 +- pkgs/by-name/gt/gtklp/package.nix | 2 +- pkgs/by-name/gu/gui-for-clash/package.nix | 2 +- pkgs/by-name/gu/gui-for-singbox/package.nix | 2 +- pkgs/by-name/gu/guile-aspell/package.nix | 2 +- pkgs/by-name/gu/guile-commonmark/package.nix | 2 +- pkgs/by-name/gu/guile-goblins/package.nix | 2 +- pkgs/by-name/gu/guile-reader/package.nix | 2 +- pkgs/by-name/gu/guile-sqlite3/package.nix | 2 +- pkgs/by-name/gx/gxemul/package.nix | 2 +- pkgs/by-name/gx/gxmessage/package.nix | 2 +- pkgs/by-name/ha/hachimarupop/package.nix | 2 +- pkgs/by-name/ha/hackedbox/package.nix | 2 +- pkgs/by-name/ha/haveged/package.nix | 2 +- pkgs/by-name/hd/hdf4/package.nix | 2 +- pkgs/by-name/he/heaptrack/package.nix | 2 +- pkgs/by-name/he/hedgedoc-cli/package.nix | 2 +- pkgs/by-name/he/hedgemodmanager/package.nix | 2 +- pkgs/by-name/he/hex/package.nix | 2 +- pkgs/by-name/hi/higan/package.nix | 2 +- pkgs/by-name/ho/hostctl/package.nix | 2 +- pkgs/by-name/ht/htmldoc/package.nix | 2 +- pkgs/by-name/ht/httplib/package.nix | 2 +- pkgs/by-name/ht/httpyac/package.nix | 2 +- pkgs/by-name/hu/hubot-sans/package.nix | 2 +- pkgs/by-name/hy/hyperblobs/package.nix | 2 +- pkgs/by-name/hy/hyperswarm/package.nix | 2 +- pkgs/by-name/i3/i3minator/package.nix | 4 +-- pkgs/by-name/ic/iconic/package.nix | 2 +- pkgs/by-name/if/ifwifi/package.nix | 2 +- pkgs/by-name/ii/iir1/package.nix | 2 +- pkgs/by-name/im/imgur-screenshot/package.nix | 2 +- .../io/ios-safari-remote-debug/package.nix | 2 +- pkgs/by-name/ip/ipam/package.nix | 2 +- pkgs/by-name/is/isc-cron/package.nix | 2 +- pkgs/by-name/is/isync/package.nix | 2 +- pkgs/by-name/iw/iw/package.nix | 2 +- pkgs/by-name/j4/j4-dmenu-desktop/package.nix | 2 +- pkgs/by-name/ja/jasper/package.nix | 2 +- pkgs/by-name/jb/jboss_mysql_jdbc/package.nix | 2 +- pkgs/by-name/jb/jbrowse/package.nix | 2 +- pkgs/by-name/jh/jhentai/package.nix | 2 +- pkgs/by-name/jo/joe/package.nix | 2 +- pkgs/by-name/jo/jove/package.nix | 2 +- pkgs/by-name/jo/joypixels/package.nix | 2 +- pkgs/by-name/ju/jupp/package.nix | 2 +- pkgs/by-name/jw/jwasm/package.nix | 2 +- pkgs/by-name/jx/jxplorer/package.nix | 2 +- pkgs/by-name/kb/kbs2/package.nix | 2 +- pkgs/by-name/kc/kconfig-frontends/package.nix | 2 +- pkgs/by-name/ke/kermit-terminal/package.nix | 2 +- pkgs/by-name/ke/keyguard/package.nix | 2 +- pkgs/by-name/ke/keystone/package.nix | 2 +- pkgs/by-name/ki/kid3/package.nix | 2 +- pkgs/by-name/ki/killerbee/package.nix | 2 +- pkgs/by-name/ki/killport/package.nix | 2 +- pkgs/by-name/ki/kingstvis/package.nix | 34 +++++++++---------- pkgs/by-name/ki/kirc/package.nix | 2 +- pkgs/by-name/ki/kitex/package.nix | 2 +- pkgs/by-name/kr/krillinai/package.nix | 2 +- pkgs/by-name/kt/ktextaddons/package.nix | 2 +- pkgs/by-name/kt/ktimetracker/package.nix | 2 +- pkgs/by-name/ku/kubespy/package.nix | 2 +- pkgs/by-name/ky/kytea/package.nix | 2 +- pkgs/by-name/ky/kyverno-chainsaw/package.nix | 2 +- pkgs/by-name/la/labwc/package.nix | 2 +- pkgs/by-name/la/lavalauncher/package.nix | 2 +- pkgs/by-name/la/lazysql/package.nix | 2 +- pkgs/by-name/lb/lbreakouthd/package.nix | 2 +- pkgs/by-name/le/learn6502/package.nix | 2 +- pkgs/by-name/le/lefthook/package.nix | 2 +- pkgs/by-name/le/lenpaste/package.nix | 2 +- pkgs/by-name/le/lexbor/package.nix | 2 +- pkgs/by-name/li/lib3mf/package.nix | 2 +- pkgs/by-name/li/libaal/package.nix | 2 +- pkgs/by-name/li/libarchive-qt/package.nix | 2 +- pkgs/by-name/li/libbytesize/package.nix | 2 +- pkgs/by-name/li/libcaca/package.nix | 2 +- pkgs/by-name/li/libde265/package.nix | 2 +- pkgs/by-name/li/libdrm/package.nix | 2 +- pkgs/by-name/li/libeb/package.nix | 2 +- pkgs/by-name/li/libedit/package.nix | 2 +- pkgs/by-name/li/libgbinder/package.nix | 2 +- pkgs/by-name/li/libgcrypt/package.nix | 2 +- pkgs/by-name/li/libglibutil/package.nix | 2 +- pkgs/by-name/li/libglvnd/package.nix | 2 +- pkgs/by-name/li/libgpg-error/package.nix | 2 +- pkgs/by-name/li/libisoburn/package.nix | 2 +- pkgs/by-name/li/libkqueue/package.nix | 2 +- pkgs/by-name/li/libmd/package.nix | 2 +- pkgs/by-name/li/libmpdclient/package.nix | 2 +- pkgs/by-name/li/libplacebo/package.nix | 2 +- pkgs/by-name/li/libplacebo_5/package.nix | 2 +- pkgs/by-name/li/libremidi/package.nix | 2 +- pkgs/by-name/li/libsurvive/package.nix | 2 +- pkgs/by-name/li/libtcod/package.nix | 2 +- pkgs/by-name/li/libtomcrypt/package.nix | 2 +- pkgs/by-name/li/libverto/package.nix | 2 +- pkgs/by-name/li/libwacom/package.nix | 10 +++--- pkgs/by-name/li/libxeddsa/package.nix | 2 +- pkgs/by-name/li/libz/package.nix | 2 +- pkgs/by-name/li/lightning/package.nix | 2 +- .../li/linux-wallpaperengine/package.nix | 2 +- pkgs/by-name/li/listen1/package.nix | 2 +- pkgs/by-name/li/live555/package.nix | 2 +- pkgs/by-name/lo/loguru/package.nix | 2 +- pkgs/by-name/lp/lpairs2/package.nix | 2 +- pkgs/by-name/ls/lsb-release/package.nix | 2 +- pkgs/by-name/lu/luabridge/package.nix | 2 +- pkgs/by-name/lu/luckybackup/package.nix | 2 +- pkgs/by-name/lu/lukesmithxyz-st/package.nix | 2 +- pkgs/by-name/lx/lx-music-desktop/package.nix | 2 +- pkgs/by-name/lz/lzsa/package.nix | 2 +- pkgs/by-name/ma/maim/package.nix | 2 +- pkgs/by-name/ma/mangayomi/package.nix | 2 +- .../by-name/ma/marble-shell-theme/package.nix | 2 +- pkgs/by-name/ma/marlin-calc/package.nix | 2 +- pkgs/by-name/ma/marp-cli/package.nix | 2 +- pkgs/by-name/ma/marst/package.nix | 2 +- pkgs/by-name/ma/martian-mono/package.nix | 2 +- pkgs/by-name/ma/material-cursors/package.nix | 2 +- pkgs/by-name/ma/mathemagix/package.nix | 2 +- .../plugins/s3-storage-provider.nix | 2 +- pkgs/by-name/mc/mcaimi-st/package.nix | 2 +- pkgs/by-name/mc/mcphost/package.nix | 2 +- pkgs/by-name/mc/mcpp/package.nix | 2 +- pkgs/by-name/md/md-tangle/package.nix | 2 +- pkgs/by-name/md/md4c/package.nix | 2 +- pkgs/by-name/me/mediathekview/package.nix | 2 +- pkgs/by-name/me/mednafen-server/package.nix | 2 +- pkgs/by-name/me/mednafen/package.nix | 2 +- pkgs/by-name/me/mednaffe/package.nix | 2 +- pkgs/by-name/me/mesonlsp/package.nix | 2 +- pkgs/by-name/me/mesos-dns/package.nix | 2 +- pkgs/by-name/me/metadata/package.nix | 2 +- pkgs/by-name/me/metis-prover/package.nix | 2 +- pkgs/by-name/mf/mfcl2740dwlpr/package.nix | 2 +- pkgs/by-name/mi/millet/package.nix | 2 +- pkgs/by-name/mi/minesector/package.nix | 2 +- pkgs/by-name/mj/mjpg-streamer/package.nix | 2 +- .../package.nix | 2 +- pkgs/by-name/mo/modd/package.nix | 2 +- pkgs/by-name/mo/moe/package.nix | 2 +- pkgs/by-name/mo/mommy/package.nix | 2 +- pkgs/by-name/mo/mona-sans/package.nix | 2 +- pkgs/by-name/mo/monaspace/package.nix | 2 +- pkgs/by-name/mo/mongodb-ce/package.nix | 2 +- pkgs/by-name/mo/monkeysphere/package.nix | 2 +- pkgs/by-name/mp/mpc/package.nix | 2 +- pkgs/by-name/mp/mpvc/package.nix | 2 +- pkgs/by-name/ms/msr/package.nix | 2 +- pkgs/by-name/mu/multimarkdown/package.nix | 2 +- pkgs/by-name/mu/multipass/package.nix | 2 +- pkgs/by-name/mu/musicus/package.nix | 2 +- pkgs/by-name/mu/mutagen/package.nix | 2 +- pkgs/by-name/my/myks/package.nix | 2 +- pkgs/by-name/my/myrddin/package.nix | 2 +- pkgs/by-name/na/navicat-premium/package.nix | 2 +- pkgs/by-name/ne/nengo-gui/package.nix | 2 +- pkgs/by-name/ne/nestopia-ue/package.nix | 2 +- .../ne/networkmanager_dmenu/package.nix | 2 +- pkgs/by-name/ne/newelle/package.nix | 2 +- pkgs/by-name/ne/nexus/package.nix | 2 +- pkgs/by-name/ni/nix-template/package.nix | 2 +- pkgs/by-name/no/nomnatong/package.nix | 2 +- pkgs/by-name/no/notation/package.nix | 2 +- pkgs/by-name/no/notcurses/package.nix | 2 +- pkgs/by-name/no/notejot/package.nix | 2 +- pkgs/by-name/nv/nv-codec-headers/package.nix | 2 +- pkgs/by-name/nw/nwg-drawer/package.nix | 2 +- pkgs/by-name/nx/nxengine-evo/assets.nix | 2 +- pkgs/by-name/nx/nxengine-evo/package.nix | 2 +- pkgs/by-name/ob/obs-cmd/package.nix | 2 +- pkgs/by-name/og/oguri/package.nix | 2 +- pkgs/by-name/on/onboard/package.nix | 2 +- pkgs/by-name/on/oneanime/package.nix | 2 +- pkgs/by-name/on/onscripter-en/package.nix | 2 +- pkgs/by-name/on/onthespot/package.nix | 2 +- pkgs/by-name/op/open-pdf-sign/package.nix | 2 +- pkgs/by-name/op/open-wbo/package.nix | 2 +- pkgs/by-name/op/opendrop/package.nix | 2 +- pkgs/by-name/op/opengrok/package.nix | 2 +- pkgs/by-name/op/openh264/package.nix | 2 +- pkgs/by-name/op/openjk/package.nix | 2 +- pkgs/by-name/op/openmsx/package.nix | 2 +- pkgs/by-name/op/opensearch-cli/package.nix | 2 +- pkgs/by-name/op/opensearch/package.nix | 2 +- pkgs/by-name/op/opensurge/package.nix | 2 +- pkgs/by-name/op/ophis/package.nix | 2 +- pkgs/by-name/or/orthanc-framework/package.nix | 2 +- pkgs/by-name/or/orthanc/package.nix | 2 +- pkgs/by-name/ot/otb/package.nix | 2 +- pkgs/by-name/pa/pa_applet/package.nix | 2 +- pkgs/by-name/pa/pack/package.nix | 2 +- pkgs/by-name/pa/pam_gnupg/package.nix | 2 +- pkgs/by-name/pa/pamix/package.nix | 2 +- pkgs/by-name/pa/passwdqc/package.nix | 2 +- pkgs/by-name/pa/pastel/package.nix | 2 +- pkgs/by-name/pa/patray/package.nix | 2 +- pkgs/by-name/pa/pax/package.nix | 2 +- pkgs/by-name/pd/pdfium-binaries/package.nix | 2 +- pkgs/by-name/pg/pgcenter/package.nix | 2 +- pkgs/by-name/pg/pgf-pie/package.nix | 2 +- pkgs/by-name/pg/pgf-umlcd/package.nix | 2 +- pkgs/by-name/pg/pgf-umlsd/package.nix | 2 +- pkgs/by-name/pg/pgformatter/package.nix | 2 +- pkgs/by-name/pg/pgfplots/package.nix | 2 +- pkgs/by-name/pg/pgmoneta/package.nix | 2 +- pkgs/by-name/pg/pgpdump/package.nix | 2 +- pkgs/by-name/ph/phel/package.nix | 2 +- .../pi/picoprobe-udev-rules/package.nix | 2 +- pkgs/by-name/pi/pipeworld/package.nix | 2 +- pkgs/by-name/pi/pius/package.nix | 2 +- pkgs/by-name/pi/pizarra/package.nix | 2 +- pkgs/by-name/pn/pngquant/package.nix | 2 +- pkgs/by-name/po/ponymix/package.nix | 2 +- pkgs/by-name/pr/prettypst/package.nix | 2 +- pkgs/by-name/pr/prio/package.nix | 2 +- pkgs/by-name/pr/procmail/package.nix | 2 +- pkgs/by-name/pr/protoscope/package.nix | 2 +- pkgs/by-name/pr/proxypin/package.nix | 2 +- pkgs/by-name/pr/pru/package.nix | 2 +- pkgs/by-name/pu/public-sans/package.nix | 2 +- pkgs/by-name/pv/pvs-studio/package.nix | 2 +- pkgs/by-name/py/pysolfc/package.nix | 2 +- pkgs/by-name/py/pyspread/package.nix | 2 +- pkgs/by-name/qa/qalculate-qt/package.nix | 2 +- pkgs/by-name/qd/qdocumentview/package.nix | 2 +- pkgs/by-name/qr/qrcodegen/package.nix | 2 +- pkgs/by-name/qu/quickjs-ng/package.nix | 2 +- pkgs/by-name/ra/rabbit/package.nix | 2 +- pkgs/by-name/ra/range-v3/package.nix | 2 +- pkgs/by-name/ra/raspa-data/package.nix | 2 +- pkgs/by-name/ra/ratpoison/package.nix | 2 +- pkgs/by-name/re/rebuilderd/package.nix | 2 +- pkgs/by-name/re/recutils/package.nix | 2 +- pkgs/by-name/re/reflection-cpp/package.nix | 2 +- pkgs/by-name/re/repro-env/package.nix | 2 +- pkgs/by-name/re/reqable/package.nix | 2 +- pkgs/by-name/re/resorter/package.nix | 2 +- pkgs/by-name/re/resvg/package.nix | 2 +- pkgs/by-name/re/reviewdog/package.nix | 2 +- pkgs/by-name/re/revup/package.nix | 2 +- pkgs/by-name/ri/rinutils/package.nix | 2 +- pkgs/by-name/rk/rkvm/package.nix | 2 +- pkgs/by-name/ro/roadrunner/package.nix | 2 +- pkgs/by-name/ro/robin-map/package.nix | 2 +- pkgs/by-name/ro/robo/package.nix | 2 +- pkgs/by-name/ro/robodoc/package.nix | 2 +- pkgs/by-name/ro/rootbar/package.nix | 2 +- pkgs/by-name/ro/roxterm/package.nix | 2 +- pkgs/by-name/rp/rpcemu/package.nix | 2 +- pkgs/by-name/rs/rst2html5/package.nix | 2 +- pkgs/by-name/ru/runmd/package.nix | 2 +- pkgs/by-name/rx/rxvt/package.nix | 2 +- pkgs/by-name/s3/s3fs/package.nix | 2 +- pkgs/by-name/sa/saber/package.nix | 2 +- pkgs/by-name/sa/salut/package.nix | 2 +- pkgs/by-name/sa/sawfish/package.nix | 2 +- pkgs/by-name/sb/sbom4python/package.nix | 2 +- pkgs/by-name/sc/scd2html/package.nix | 2 +- pkgs/by-name/sc/scdoc/package.nix | 2 +- pkgs/by-name/sc/scenefx/package.nix | 2 +- pkgs/by-name/sc/schemacrawler/package.nix | 2 +- pkgs/by-name/sc/scimark/package.nix | 2 +- pkgs/by-name/sc/scons/package.nix | 2 +- .../by-name/sc/scrutiny-collector/package.nix | 2 +- pkgs/by-name/sc/scrutiny/package.nix | 2 +- pkgs/by-name/se/sem/package.nix | 2 +- pkgs/by-name/se/serigy/package.nix | 2 +- pkgs/by-name/se/setconf/package.nix | 2 +- pkgs/by-name/sh/sharedown/package.nix | 2 +- pkgs/by-name/sh/shfm/package.nix | 2 +- pkgs/by-name/si/siglo/package.nix | 2 +- pkgs/by-name/si/signal-desktop/webrtc.nix | 2 +- pkgs/by-name/si/signing-party/package.nix | 2 +- pkgs/by-name/si/simh/package.nix | 2 +- .../si/simple-dlna-browser/package.nix | 2 +- pkgs/by-name/si/simple-live-app/package.nix | 2 +- pkgs/by-name/sk/skribilo/package.nix | 2 +- pkgs/by-name/sl/slang/package.nix | 2 +- pkgs/by-name/sl/sly/package.nix | 2 +- pkgs/by-name/sm/smallwm/package.nix | 2 +- pkgs/by-name/sm/smplayer/package.nix | 2 +- pkgs/by-name/sn/sn-pro/package.nix | 2 +- pkgs/by-name/sn/snippetexpander/package.nix | 2 +- pkgs/by-name/sn/snippetexpanderd/package.nix | 2 +- .../by-name/sn/snippetexpandergui/package.nix | 2 +- pkgs/by-name/sn/snippetexpanderx/package.nix | 2 +- pkgs/by-name/so/soqt/package.nix | 2 +- pkgs/by-name/so/sound-of-sorting/package.nix | 2 +- pkgs/by-name/so/sov/package.nix | 2 +- pkgs/by-name/sp/sparkle/package.nix | 2 +- pkgs/by-name/sp/spigot/package.nix | 2 +- pkgs/by-name/sp/spnavcfg/package.nix | 2 +- pkgs/by-name/sp/spooles/package.nix | 2 +- pkgs/by-name/sq/sqlcipher/package.nix | 2 +- pkgs/by-name/sq/squawk/package.nix | 2 +- pkgs/by-name/sr/src/package.nix | 2 +- .../ss/ssh-askpass-fullscreen/package.nix | 2 +- pkgs/by-name/ss/ssh-chat/package.nix | 2 +- pkgs/by-name/ss/sshesame/package.nix | 2 +- pkgs/by-name/ss/sshfs-fuse/common.nix | 2 +- pkgs/by-name/st/stacktile/package.nix | 2 +- pkgs/by-name/st/stargate-libcds/package.nix | 2 +- pkgs/by-name/st/steghide/package.nix | 2 +- pkgs/by-name/st/stella/package.nix | 2 +- pkgs/by-name/st/stockpile/package.nix | 2 +- pkgs/by-name/st/streamrip/package.nix | 2 +- pkgs/by-name/st/strictdoc/package.nix | 2 +- pkgs/by-name/st/styx/package.nix | 2 +- pkgs/by-name/su/substudy/package.nix | 2 +- pkgs/by-name/su/subtitleedit/package.nix | 2 +- pkgs/by-name/su/sudo-font/package.nix | 2 +- pkgs/by-name/su/sumo/package.nix | 2 +- pkgs/by-name/su/sunwait/package.nix | 2 +- pkgs/by-name/su/surgescript/package.nix | 2 +- pkgs/by-name/sv/svgcleaner/package.nix | 2 +- pkgs/by-name/sw/swayest-workstyle/package.nix | 2 +- pkgs/by-name/sw/swayrbar/package.nix | 2 +- pkgs/by-name/sw/swipe-guess/package.nix | 2 +- .../by-name/sw/switcheroo-control/package.nix | 2 +- pkgs/by-name/ta/tagutil/package.nix | 2 +- pkgs/by-name/ta/taldir/package.nix | 2 +- pkgs/by-name/ta/taler-mdb/package.nix | 2 +- pkgs/by-name/ta/taler-twister/package.nix | 2 +- pkgs/by-name/te/teapot/package.nix | 2 +- pkgs/by-name/te/tecla/package.nix | 2 +- pkgs/by-name/te/terracognita/package.nix | 2 +- .../te/terraform-backend-git/package.nix | 2 +- pkgs/by-name/te/testssl/package.nix | 2 +- pkgs/by-name/te/tev/package.nix | 2 +- .../th/the-legend-of-edgar/package.nix | 2 +- pkgs/by-name/ti/tickrs/package.nix | 2 +- pkgs/by-name/ti/tiny-rdm/package.nix | 2 +- pkgs/by-name/ti/tinyalsa/package.nix | 2 +- pkgs/by-name/ti/tinyemu/package.nix | 2 +- pkgs/by-name/ti/tinywm/package.nix | 2 +- pkgs/by-name/ti/tinyxml-2/package.nix | 2 +- pkgs/by-name/to/tockloader/package.nix | 2 +- pkgs/by-name/to/tomato-c/package.nix | 2 +- pkgs/by-name/to/toml11/package.nix | 2 +- pkgs/by-name/to/tomlc99/package.nix | 2 +- pkgs/by-name/to/tomlcpp/package.nix | 2 +- pkgs/by-name/to/tonelib-jam/package.nix | 2 +- pkgs/by-name/to/tonelib-metal/package.nix | 2 +- pkgs/by-name/to/tonelib-zoom/package.nix | 2 +- pkgs/by-name/tp/tp-auto-kbbl/package.nix | 2 +- pkgs/by-name/tr/triehash/package.nix | 2 +- pkgs/by-name/tr/trrntzip/package.nix | 2 +- pkgs/by-name/tt/ttyd/package.nix | 2 -- pkgs/by-name/tu/tuigreet/package.nix | 2 +- pkgs/by-name/tu/turses/package.nix | 2 +- pkgs/by-name/tw/twolame/package.nix | 2 +- pkgs/by-name/tw/twspace-dl/package.nix | 2 +- pkgs/by-name/ty/typstwriter/package.nix | 2 +- pkgs/by-name/uc/ucg/package.nix | 2 +- pkgs/by-name/ud/udevil/package.nix | 2 +- pkgs/by-name/ug/ugm/package.nix | 2 +- pkgs/by-name/ui/uivonim/package.nix | 2 +- pkgs/by-name/un/unclutter/package.nix | 2 +- .../un/undetected-chromedriver/package.nix | 2 +- pkgs/by-name/un/units/package.nix | 2 +- pkgs/by-name/ur/urbanterror/package.nix | 2 +- pkgs/by-name/ur/urjtag/package.nix | 2 +- pkgs/by-name/us/usb-modeswitch/data.nix | 2 +- pkgs/by-name/ux/uxn/package.nix | 2 +- pkgs/by-name/v2/v2rayn/package.nix | 2 +- pkgs/by-name/va/valkey/package.nix | 2 +- pkgs/by-name/ve/venera/package.nix | 2 +- pkgs/by-name/ve/veryfasttree/package.nix | 2 +- pkgs/by-name/vf/vfox/package.nix | 2 +- pkgs/by-name/vi/viw/package.nix | 2 +- pkgs/by-name/vk/vk-cli/package.nix | 2 +- pkgs/by-name/vk/vkd3d-proton/package.nix | 2 +- pkgs/by-name/vm/vms-empire/package.nix | 2 +- pkgs/by-name/vn/vnote/package.nix | 2 +- pkgs/by-name/vp/vp/package.nix | 2 +- pkgs/by-name/vt/vtfedit/package.nix | 2 +- pkgs/by-name/vt/vtm/package.nix | 2 +- pkgs/by-name/vy/vym/package.nix | 2 +- pkgs/by-name/wa/waf/package.nix | 2 +- pkgs/by-name/wa/waveterm/package.nix | 2 +- pkgs/by-name/wa/waybox/package.nix | 2 +- pkgs/by-name/wa/waydroid-helper/package.nix | 2 +- pkgs/by-name/wb/wbg/package.nix | 2 +- pkgs/by-name/wi/wifish/package.nix | 2 +- pkgs/by-name/wi/wiki-js/package.nix | 2 +- pkgs/by-name/wi/windsend-rs/package.nix | 2 +- pkgs/by-name/wi/windsend/package.nix | 2 +- pkgs/by-name/wi/windterm/package.nix | 2 +- pkgs/by-name/wi/wings/package.nix | 2 +- pkgs/by-name/wi/wio/package.nix | 2 +- pkgs/by-name/wi/with-shell/package.nix | 2 +- pkgs/by-name/wl/wlay/package.nix | 2 +- pkgs/by-name/wl/wlgreet/package.nix | 2 +- pkgs/by-name/wl/wlogout/package.nix | 2 +- pkgs/by-name/wl/wlprop/package.nix | 2 +- pkgs/by-name/wo/wob/package.nix | 2 +- pkgs/by-name/wo/worker/package.nix | 2 +- pkgs/by-name/wo/wox/package.nix | 2 +- pkgs/by-name/wt/wtf/package.nix | 2 +- pkgs/by-name/xa/xarcan/package.nix | 2 +- pkgs/by-name/xa/xawtv/package.nix | 2 +- pkgs/by-name/xd/xdvdfs-cli/package.nix | 2 +- pkgs/by-name/xi/xine-lib/package.nix | 2 +- pkgs/by-name/xi/xine-ui/package.nix | 2 +- pkgs/by-name/xm/xmousepasteblock/package.nix | 2 +- pkgs/by-name/xo/xosview/package.nix | 2 +- pkgs/by-name/xo/xosview2/package.nix | 2 +- .../by-name/xp/xp-pen-g430-driver/package.nix | 2 +- pkgs/by-name/ya/yabasic/package.nix | 2 +- pkgs/by-name/ya/yambar/package.nix | 2 +- pkgs/by-name/ya/yamlfmt/package.nix | 2 +- pkgs/by-name/ya/yapesdl/package.nix | 2 +- pkgs/by-name/ya/yay/package.nix | 2 +- pkgs/by-name/ye/yelp-tools/package.nix | 2 +- pkgs/by-name/ye/yex-lang/package.nix | 2 +- pkgs/by-name/yo/yojimbo/package.nix | 2 +- pkgs/by-name/yt/ytree/package.nix | 2 +- pkgs/by-name/za/zammad/update.nix | 2 +- pkgs/by-name/za/zashboard/package.nix | 2 +- pkgs/by-name/zc/zchunk/package.nix | 2 +- pkgs/by-name/ze/zegrapher/package.nix | 2 +- pkgs/by-name/ze/zesarux/package.nix | 2 +- pkgs/by-name/zf/zfs-autobackup/package.nix | 2 +- pkgs/by-name/zi/zix/package.nix | 2 +- pkgs/by-name/zo/zoekt/package.nix | 2 +- pkgs/by-name/zp/zpaqfranz/package.nix | 2 +- pkgs/by-name/zs/zsh-autoenv/package.nix | 2 +- pkgs/by-name/zs/zsh-powerlevel10k/package.nix | 2 +- pkgs/by-name/zz/zziplib/package.nix | 2 +- .../extensions/EasyScreenCast/default.nix | 2 +- .../gnome/extensions/icon-hider/default.nix | 2 +- .../extensions/taskwhisperer/default.nix | 2 +- .../compilers/flutter/engine/package.nix | 2 +- .../compilers/gcc/common/pre-configure.nix | 2 +- .../coq-modules/aac-tactics/default.nix | 2 +- .../coq-modules/coq-hammer/tactics.nix | 2 +- .../coq-modules/coqhammer/default.nix | 2 +- .../development/coq-modules/ltac2/default.nix | 2 +- .../interpreters/dzaima-apl/default.nix | 2 +- .../development/interpreters/python/tests.nix | 2 +- .../development/libraries/eccodes/default.nix | 2 +- .../libraries/kde-frameworks/default.nix | 2 +- .../libraries/libopenshot-audio/default.nix | 2 +- .../libraries/libopenshot/default.nix | 2 +- .../development/libraries/libsbsms/common.nix | 2 +- .../qt-6/modules/qtwebengine/default.nix | 2 +- .../development/libraries/unqlite/default.nix | 2 +- .../ocaml-modules/lutils/default.nix | 2 +- .../ocaml-modules/magic/default.nix | 2 +- .../ocaml-print-intf/default.nix | 2 +- .../ocaml-modules/rdbg/default.nix | 2 +- .../composer-local-repo-plugin/default.nix | 2 +- .../cyclonedx-php-composer/default.nix | 2 +- .../php-packages/meminfo/default.nix | 2 +- .../development/php-packages/zstd/default.nix | 2 +- .../python-modules/affine/default.nix | 2 +- .../python-modules/aiofiles/default.nix | 2 +- .../python-modules/aiohttp-cors/default.nix | 2 +- .../python-modules/aiohttp-utils/default.nix | 2 +- .../annotated-types/default.nix | 2 +- .../python-modules/anytree/default.nix | 2 +- .../python-modules/apptools/default.nix | 2 +- .../python-modules/argh/default.nix | 2 +- .../python-modules/args/default.nix | 2 +- .../python-modules/asusrouter/default.nix | 2 +- .../python-modules/attrs-strict/default.nix | 2 +- .../python-modules/avro3k/default.nix | 2 +- .../azure-ai-documentintelligence/default.nix | 2 +- .../default.nix | 2 +- .../default.nix | 2 +- .../azure-storage-file-datalake/default.nix | 2 +- .../backports-shutil-which/default.nix | 2 +- .../python-modules/backrefs/default.nix | 2 +- .../python-modules/basswood-av/default.nix | 2 +- pkgs/development/python-modules/bcrypt/3.nix | 2 +- .../python-modules/bcrypt/default.nix | 2 +- .../python-modules/beaker/default.nix | 2 +- .../python-modules/beautifulsoup4/default.nix | 2 +- .../python-modules/beniget/default.nix | 2 +- .../python-modules/blockbuster/default.nix | 2 +- .../bot-safe-agents/default.nix | 2 +- .../python-modules/bravia-tv/default.nix | 2 +- .../cached-property/default.nix | 2 +- .../python-modules/cachelib/default.nix | 2 +- .../canonical-sphinx-extensions/default.nix | 2 +- .../python-modules/captum/default.nix | 2 +- .../python-modules/cartopy/default.nix | 2 +- .../python-modules/celery-types/default.nix | 2 +- .../python-modules/certbot/default.nix | 2 +- .../python-modules/cffconvert/default.nix | 2 +- .../python-modules/chai/default.nix | 2 +- .../python-modules/chameleon/default.nix | 2 +- .../python-modules/changelog-chug/default.nix | 2 +- .../python-modules/chardet/default.nix | 2 +- .../python-modules/click-plugins/default.nix | 2 +- .../python-modules/cligj/default.nix | 2 +- .../python-modules/clint/default.nix | 2 +- .../python-modules/cobble/default.nix | 2 +- .../python-modules/colander/default.nix | 2 +- .../python-modules/contexter/default.nix | 2 +- .../python-modules/cython/default.nix | 2 +- .../python-modules/datauri/default.nix | 2 +- .../python-modules/dbt-protos/default.nix | 2 +- .../python-modules/dbus-next/default.nix | 2 +- .../deepsearch-toolkit/default.nix | 2 +- .../python-modules/deform/default.nix | 2 +- .../python-modules/demes/default.nix | 2 +- .../python-modules/demesdraw/default.nix | 2 +- .../python-modules/denonavr/default.nix | 2 +- .../django-debug-toolbar/default.nix | 2 +- .../python-modules/django-environ/default.nix | 2 +- .../django-formtools/default.nix | 2 +- .../python-modules/django-ninja/default.nix | 2 +- .../django-statici18n/default.nix | 2 +- .../django-stubs-ext/default.nix | 2 +- .../python-modules/django-stubs/default.nix | 2 +- .../django-tree-queries/default.nix | 2 +- .../djangorestframework-stubs/default.nix | 2 +- .../python-modules/docling-core/default.nix | 2 +- .../docling-ibm-models/default.nix | 2 +- .../python-modules/docling-parse/default.nix | 2 +- .../python-modules/docling-serve/default.nix | 2 +- .../python-modules/docutils/default.nix | 2 +- .../python-modules/donfig/default.nix | 2 +- .../python-modules/dotty-dict/default.nix | 2 +- .../python-modules/durationpy/default.nix | 2 +- .../python-modules/dynaconf/default.nix | 2 +- .../python-modules/envisage/default.nix | 2 +- .../python-modules/etebase/default.nix | 2 +- .../python-modules/feedparser/default.nix | 2 +- .../python-modules/fickling/default.nix | 2 +- .../python-modules/firecrawl-py/default.nix | 2 +- .../python-modules/flux-led/default.nix | 2 +- .../python-modules/forbiddenfruit/default.nix | 2 +- .../python-modules/funk/default.nix | 2 +- .../python-modules/gawd/default.nix | 2 +- .../python-modules/gbinder-python/default.nix | 2 +- .../gcp-storage-emulator/default.nix | 2 +- .../python-modules/gentools/default.nix | 2 +- .../python-modules/geopy/default.nix | 2 +- .../python-modules/getmac/default.nix | 2 +- .../python-modules/gistyc/default.nix | 2 +- .../python-modules/git-url-parse/default.nix | 2 +- .../python-modules/gitingest/default.nix | 2 +- .../python-modules/go2rtc-client/default.nix | 2 +- .../python-modules/gocardless-pro/default.nix | 2 +- .../python-modules/gyp/default.nix | 2 +- .../python-modules/hatch-babel/default.nix | 2 +- .../python-modules/hid/default.nix | 2 +- .../python-modules/housekeeping/default.nix | 2 +- .../python-modules/hyrule/default.nix | 2 +- .../import-expression/default.nix | 2 +- .../python-modules/jishaku/default.nix | 2 +- .../python-modules/jsonschema/default.nix | 2 +- .../python-modules/kdl-py/default.nix | 2 +- .../python-modules/keyutils/default.nix | 2 +- .../python-modules/kgb/default.nix | 2 +- .../langgraph-checkpoint-postgres/default.nix | 2 +- .../python-modules/lib4package/default.nix | 2 +- .../python-modules/livereload/default.nix | 2 +- .../python-modules/localimport/default.nix | 2 +- .../python-modules/m2r/default.nix | 2 +- .../python-modules/mako/default.nix | 2 +- .../mallard-ducktype/default.nix | 2 +- .../python-modules/mammoth/default.nix | 2 +- .../markdown-inline-graphviz/default.nix | 2 +- .../python-modules/markitdown/default.nix | 2 +- .../python-modules/marko/default.nix | 2 +- .../python-modules/markupsafe/default.nix | 2 +- .../python-modules/mayavi/default.nix | 2 +- .../mean-average-precision/default.nix | 2 +- .../default.nix | 2 +- .../mkdocs-backlinks/default.nix | 2 +- .../mkdocs-build-plantuml/default.nix | 2 +- .../mkdocs-drawio-file/default.nix | 2 +- .../mkdocs-graphviz/default.nix | 2 +- .../python-modules/mkdocs-markmap/default.nix | 2 +- .../python-modules/mkdocs-puml/default.nix | 2 +- .../python-modules/mnist/default.nix | 2 +- .../python-modules/monkeytype/default.nix | 2 +- .../python-modules/msldap-bad/default.nix | 2 +- .../python-modules/msprime/default.nix | 2 +- .../python-modules/munkres/default.nix | 2 +- .../music-assistant-client/default.nix | 2 +- .../music-assistant-models/default.nix | 2 +- .../python-modules/musicbrainzngs/default.nix | 2 +- .../python-modules/nengo/default.nix | 2 +- .../python-modules/newick/default.nix | 2 +- .../python-modules/newspaper3k/default.nix | 2 +- .../python-modules/nodepy-runtime/default.nix | 2 +- .../python-modules/objprint/default.nix | 2 +- .../python-modules/paddlex/default.nix | 2 +- .../python-modules/paypalrestsdk/default.nix | 2 +- .../python-modules/pbkdf2/default.nix | 4 +-- .../python-modules/peppercorn/default.nix | 2 +- .../python-modules/pg8000/default.nix | 2 +- .../python-modules/piccata/default.nix | 2 +- .../python-modules/pilkit/default.nix | 2 +- .../pip-install-test/default.nix | 2 +- .../python-modules/pivy/default.nix | 2 +- .../python-modules/plaster/default.nix | 2 +- .../python-modules/playsound/default.nix | 2 +- .../python-modules/plexapi/default.nix | 2 +- .../python-modules/plexauth/default.nix | 2 +- .../python-modules/plexwebsocket/default.nix | 2 +- .../python-modules/plotille/default.nix | 2 +- .../python-modules/pocket/default.nix | 2 +- .../python-modules/pooch/default.nix | 2 +- .../python-modules/precisely/default.nix | 2 +- .../python-modules/primp/default.nix | 2 +- .../python-modules/progressbar/default.nix | 2 +- .../development/python-modules/protobuf/3.nix | 2 +- .../development/python-modules/protobuf/4.nix | 2 +- .../python-modules/pure-eval/default.nix | 2 +- .../python-modules/pwdlib/default.nix | 2 +- .../python-modules/pyasynchat/default.nix | 2 +- .../python-modules/pyclip/default.nix | 2 +- .../python-modules/pycparser/default.nix | 2 +- .../python-modules/pycuda/default.nix | 2 +- .../python-modules/pydash/default.nix | 2 +- .../python-modules/pydiffx/default.nix | 2 +- .../python-modules/pyeiscp/default.nix | 2 +- .../python-modules/pyepsg/default.nix | 2 +- .../python-modules/pyface/default.nix | 2 +- .../python-modules/pyfakefs/default.nix | 2 +- .../python-modules/pyforked-daapd/default.nix | 2 +- .../python-modules/pygelf/default.nix | 2 +- .../pygments-style-github/default.nix | 2 +- .../python-modules/pymarshal/default.nix | 2 +- .../python-modules/pymatting/default.nix | 2 +- .../python-modules/pynzb/default.nix | 2 +- .../python-modules/pyorc/default.nix | 2 +- .../python-modules/pypika/default.nix | 2 +- .../python-modules/pyqt-builder/default.nix | 2 +- .../python-modules/pyqtdarktheme/default.nix | 2 +- .../python-modules/pyramid-beaker/default.nix | 4 +-- .../pyramid-chameleon/default.nix | 2 +- .../python-modules/pyramid-exclog/default.nix | 2 +- .../python-modules/pyramid-jinja2/default.nix | 2 +- .../python-modules/pyramid/default.nix | 2 +- .../python-modules/pyroaring/default.nix | 2 +- .../python-modules/pyrss2gen/default.nix | 2 +- .../python-modules/pyside2-tools/default.nix | 2 +- .../python-modules/pyside2/default.nix | 2 +- .../python-modules/pyside6/default.nix | 2 +- .../python-modules/pyslim/default.nix | 2 +- .../python-modules/pyspelling/default.nix | 2 +- .../python-modules/pyspinel/default.nix | 2 +- .../python-modules/pysuezv2/default.nix | 2 +- .../python-modules/pytest-kafka/default.nix | 2 +- .../pytest-shared-session-scope/default.nix | 2 +- .../python-mpv-jsonipc/default.nix | 2 +- .../python-modules/python-youtube/default.nix | 2 +- .../python-modules/pythonocc-core/default.nix | 2 +- .../python-modules/pytools/default.nix | 2 +- .../python-modules/pytorch-bench/default.nix | 2 +- .../python-modules/pyxdg/default.nix | 2 +- .../python-modules/raven/default.nix | 2 +- .../python-modules/rbtools/default.nix | 2 +- .../python-modules/repoze-lru/default.nix | 2 +- .../repoze-sphinx-autointerface/default.nix | 2 +- .../python-modules/reqif/default.nix | 2 +- .../python-modules/rfc3987-syntax/default.nix | 2 +- .../python-modules/rich-toolkit/default.nix | 2 +- .../python-modules/sbom2dot/default.nix | 2 +- .../python-modules/sbom4files/default.nix | 2 +- .../scikit-survival/default.nix | 2 +- .../python-modules/shiboken2/default.nix | 2 +- .../python-modules/shiboken6/default.nix | 2 +- .../python-modules/sip/default.nix | 2 +- .../python-modules/sismic/default.nix | 2 +- .../python-modules/slugid/default.nix | 2 +- .../python-modules/snuggs/default.nix | 2 +- .../social-auth-app-django/default.nix | 2 +- .../social-auth-core/default.nix | 2 +- .../python-modules/sotabenchapi/default.nix | 2 +- .../python-modules/sphinx-autoapi/default.nix | 2 +- .../sphinx-remove-toctrees/default.nix | 2 +- .../sphinx-reredirects/default.nix | 2 +- .../sphinxcontrib-mscgen/default.nix | 2 +- .../python-modules/spyder-kernels/default.nix | 2 +- .../python-modules/spyder/default.nix | 2 +- .../python-modules/standard-sunau/default.nix | 2 +- .../python-modules/statsd/default.nix | 2 +- .../python-modules/submitit/default.nix | 2 +- .../python-modules/swh-auth/default.nix | 2 +- .../python-modules/swh-core/default.nix | 2 +- .../python-modules/swh-export/default.nix | 2 +- .../python-modules/swh-journal/default.nix | 2 +- .../python-modules/swh-model/default.nix | 2 +- .../python-modules/swh-objstorage/default.nix | 2 +- .../swh-perfecthash/default.nix | 2 +- .../python-modules/swh-scanner/default.nix | 2 +- .../python-modules/swh-scheduler/default.nix | 2 +- .../python-modules/swh-storage/default.nix | 2 +- .../python-modules/swh-web-client/default.nix | 2 +- .../python-modules/tappy/default.nix | 2 +- .../python-modules/tempman/default.nix | 2 +- .../python-modules/textx/default.nix | 12 +++---- .../python-modules/tinyhtml5/default.nix | 2 +- .../python-modules/torchbench/default.nix | 2 +- .../python-modules/torchprofile/default.nix | 2 +- .../python-modules/traitsui/default.nix | 2 +- .../translationstring/default.nix | 2 +- .../python-modules/trx-python/default.nix | 2 +- .../python-modules/tskit/default.nix | 2 +- .../undetected-chromedriver/default.nix | 2 +- .../python-modules/unidecode/default.nix | 2 +- .../python-modules/unifi-ap/default.nix | 2 +- .../python-modules/venusian/default.nix | 2 +- .../python-modules/waitress/default.nix | 2 +- .../python-modules/wavefile/default.nix | 2 +- .../python-modules/webdavclient3/default.nix | 2 +- .../python-modules/wsgiproxy2/default.nix | 2 +- .../python-modules/x3dh/default.nix | 2 +- .../python-modules/xeddsa/default.nix | 2 +- .../python-modules/xhtml2pdf/default.nix | 2 +- .../python-modules/zope-copy/default.nix | 2 +- .../zope-deprecation/default.nix | 2 +- .../python-modules/zope-security/default.nix | 2 +- .../python2-modules/markupsafe/default.nix | 2 +- pkgs/development/r-modules/default.nix | 2 +- .../build-managers/rebar3/rebar-deps.nix | 2 +- .../tools/ocaml/camlp4/default.nix | 2 +- .../tools/selenium/chromedriver/binary.nix | 2 +- pkgs/games/cutechess/default.nix | 2 +- pkgs/games/npush/default.nix | 2 +- pkgs/games/warsow/default.nix | 2 +- pkgs/games/warsow/engine.nix | 2 +- .../dynamic-workspaces/default.nix | 2 +- pkgs/misc/tmux-plugins/default.nix | 4 +-- .../linux/device-tree/raspberrypi.nix | 2 +- pkgs/os-specific/linux/evdi/default.nix | 2 +- pkgs/os-specific/linux/iputils/default.nix | 2 +- pkgs/servers/deconz/default.nix | 2 +- pkgs/servers/etcd/3_4/default.nix | 2 +- .../solis-sensor/package.nix | 2 +- .../monitoring/prometheus/shelly-exporter.nix | 2 +- pkgs/servers/pulseaudio/hsphfpd.nix | 2 +- pkgs/servers/varnish/digest.nix | 2 +- pkgs/servers/varnish/dynamic.nix | 2 +- pkgs/servers/varnish/modules.nix | 2 +- .../inputmethods/fcitx5/fcitx5-bamboo.nix | 2 +- .../ibus-engines/ibus-anthy/default.nix | 2 +- .../ibus-engines/ibus-cangjie/default.nix | 2 +- .../ibus-engines/ibus-hangul/default.nix | 2 +- .../ibus-engines/ibus-m17n/default.nix | 2 +- .../ibus-typing-booster/default.nix | 2 +- pkgs/tools/misc/dialogbox/default.nix | 2 +- pkgs/tools/misc/logstash/contrib.nix | 2 +- .../steampipe-plugin-azure/default.nix | 2 +- .../dd-agent/datadog-process-agent.nix | 7 ++-- .../package-management/apk-tools/default.nix | 2 +- pkgs/top-level/darwin-aliases.nix | 2 -- 1135 files changed, 1168 insertions(+), 1186 deletions(-) diff --git a/ci/default.nix b/ci/default.nix index 74cea1c01aa5..f6eaab88fcb0 100644 --- a/ci/default.nix +++ b/ci/default.nix @@ -97,7 +97,6 @@ let # https://github.com/nix-community/nixd/blob/main/libnixf/src/Basic/diagnostic.py # TODO: Remove the following and fix things. "--ignore=parse-redundant-paren" - "--ignore=sema-extra-with" "--ignore=sema-unused-def-lambda-noarg-formal" "--ignore=sema-unused-def-lambda-witharg-arg" "--ignore=sema-unused-def-lambda-witharg-formal" @@ -106,6 +105,10 @@ let "--ignore=or-identifier" ]; excludes = [ + # Auto-generated; violates sema-extra-with + # Can only sensibly be removed when --auto-fix supports multiple fixes at once: + # https://github.com/inclyc/nixf-diagnose/issues/13 + "pkgs/servers/home-assistant/component-packages.nix" # https://github.com/nix-community/nixd/issues/708 "nixos/maintainers/scripts/azure-new/examples/basic/system.nix" ]; diff --git a/nixos/modules/config/terminfo.nix b/nixos/modules/config/terminfo.nix index f38bc20db076..66a9d691c6b7 100644 --- a/nixos/modules/config/terminfo.nix +++ b/nixos/modules/config/terminfo.nix @@ -8,7 +8,7 @@ }: { - options = with lib; { + options = { environment.enableAllTerminfo = lib.mkOption { default = false; type = lib.types.bool; diff --git a/nixos/modules/i18n/input-method/default.nix b/nixos/modules/i18n/input-method/default.nix index a7f1b0b01d80..4bbc5f59b0bb 100644 --- a/nixos/modules/i18n/input-method/default.nix +++ b/nixos/modules/i18n/input-method/default.nix @@ -114,7 +114,7 @@ in }; meta = { - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; doc = ./default.md; }; diff --git a/nixos/modules/installer/netboot/netboot-base.nix b/nixos/modules/installer/netboot/netboot-base.nix index 360ef5646996..25578b06fea1 100644 --- a/nixos/modules/installer/netboot/netboot-base.nix +++ b/nixos/modules/installer/netboot/netboot-base.nix @@ -3,8 +3,6 @@ { lib, ... }: -with lib; - { imports = [ ./netboot.nix diff --git a/nixos/modules/profiles/headless.nix b/nixos/modules/profiles/headless.nix index d6d754462c14..26aba8df311d 100644 --- a/nixos/modules/profiles/headless.nix +++ b/nixos/modules/profiles/headless.nix @@ -3,8 +3,6 @@ { lib, ... }: -with lib; - { # Don't start a tty on the serial consoles. systemd.services."serial-getty@ttyS0".enable = lib.mkDefault false; diff --git a/nixos/modules/programs/fuse.nix b/nixos/modules/programs/fuse.nix index 9096ce7812b4..886ea3e54f00 100644 --- a/nixos/modules/programs/fuse.nix +++ b/nixos/modules/programs/fuse.nix @@ -9,7 +9,7 @@ let cfg = config.programs.fuse; in { - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; options.programs.fuse = { enable = lib.mkEnableOption "fuse" // { diff --git a/nixos/modules/programs/gamescope.nix b/nixos/modules/programs/gamescope.nix index 62de0006551c..8295eeee26ba 100644 --- a/nixos/modules/programs/gamescope.nix +++ b/nixos/modules/programs/gamescope.nix @@ -78,5 +78,5 @@ in environment.systemPackages = lib.mkIf (!cfg.capSysNice) [ gamescope ]; }; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/programs/wayland/labwc.nix b/nixos/modules/programs/wayland/labwc.nix index abbcfad19c6e..d7477b8f2fcd 100644 --- a/nixos/modules/programs/wayland/labwc.nix +++ b/nixos/modules/programs/wayland/labwc.nix @@ -9,7 +9,7 @@ let cfg = config.programs.labwc; in { - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; options.programs.labwc = { enable = lib.mkEnableOption "labwc"; diff --git a/nixos/modules/programs/wayland/lib.nix b/nixos/modules/programs/wayland/lib.nix index bc639dc6d0e0..bc130b7c0e58 100644 --- a/nixos/modules/programs/wayland/lib.nix +++ b/nixos/modules/programs/wayland/lib.nix @@ -4,7 +4,7 @@ genFinalPackage = pkg: args: let - expectedArgs = with lib; lib.naturalSort (lib.attrNames args); + expectedArgs = lib.naturalSort (lib.attrNames args); existingArgs = with lib; naturalSort (intersectLists expectedArgs (attrNames (functionArgs pkg.override))); diff --git a/nixos/modules/programs/wayland/sway.nix b/nixos/modules/programs/wayland/sway.nix index aa8dbf4e5200..c764ade90c8a 100644 --- a/nixos/modules/programs/wayland/sway.nix +++ b/nixos/modules/programs/wayland/sway.nix @@ -204,5 +204,5 @@ in ] ); - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/programs/wshowkeys.nix b/nixos/modules/programs/wshowkeys.nix index 573936c291a4..645818740b3f 100644 --- a/nixos/modules/programs/wshowkeys.nix +++ b/nixos/modules/programs/wshowkeys.nix @@ -27,5 +27,5 @@ in }; }; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/security/acme/default.nix b/nixos/modules/security/acme/default.nix index 2c3c64eb4251..952637d471c3 100644 --- a/nixos/modules/security/acme/default.nix +++ b/nixos/modules/security/acme/default.nix @@ -203,7 +203,7 @@ let # Create hashes for cert data directories based on configuration # Flags are separated to avoid collisions hashData = - with builtins; + '' ${lib.concatStringsSep " " data.extraLegoFlags} - ${lib.concatStringsSep " " data.extraLegoRunFlags} - diff --git a/nixos/modules/services/backup/borgbackup.nix b/nixos/modules/services/backup/borgbackup.nix index 759a4ae2b9ad..46ccf56ddf7f 100644 --- a/nixos/modules/services/backup/borgbackup.nix +++ b/nixos/modules/services/backup/borgbackup.nix @@ -207,14 +207,13 @@ let nativeBuildInputs = [ pkgs.makeWrapper ]; } ( - with lib; + '' makeWrapper "${original}" "$out/bin/${name}" \ ${lib.concatStringsSep " \\\n " ( lib.mapAttrsToList (name: value: ''--set ${name} "${value}"'') set )} - '' - ); + ''); # Returns a singleton list, due to usage of lib.optional mkBorgWrapper = diff --git a/nixos/modules/services/computing/boinc/client.nix b/nixos/modules/services/computing/boinc/client.nix index e7e13160989b..8467e4b297c1 100644 --- a/nixos/modules/services/computing/boinc/client.nix +++ b/nixos/modules/services/computing/boinc/client.nix @@ -110,6 +110,6 @@ in }; meta = { - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/nixos/modules/services/continuous-integration/buildbot/master.nix b/nixos/modules/services/continuous-integration/buildbot/master.nix index 410829ee4cb6..569709373376 100644 --- a/nixos/modules/services/continuous-integration/buildbot/master.nix +++ b/nixos/modules/services/continuous-integration/buildbot/master.nix @@ -245,7 +245,7 @@ in pythonPackages = lib.mkOption { type = lib.types.functionTo (lib.types.listOf lib.types.package); - default = pythonPackages: with pythonPackages; [ ]; + default = pythonPackages: [ ]; defaultText = lib.literalExpression "pythonPackages: with pythonPackages; [ ]"; description = "Packages to add the to the PYTHONPATH of the buildbot process."; example = lib.literalExpression "pythonPackages: with pythonPackages; [ requests ]"; diff --git a/nixos/modules/services/databases/chromadb.nix b/nixos/modules/services/databases/chromadb.nix index 03ea0221eab6..e7a4e9b13093 100644 --- a/nixos/modules/services/databases/chromadb.nix +++ b/nixos/modules/services/databases/chromadb.nix @@ -17,7 +17,7 @@ let in { - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; imports = [ (lib.mkRemovedOptionModule [ "services" "chromadb" "logFile" ] '' diff --git a/nixos/modules/services/desktop-managers/lomiri.nix b/nixos/modules/services/desktop-managers/lomiri.nix index c74d2f316a93..b82c194be92c 100644 --- a/nixos/modules/services/desktop-managers/lomiri.nix +++ b/nixos/modules/services/desktop-managers/lomiri.nix @@ -181,7 +181,7 @@ in services.gnome.evolution-data-server = { enable = true; - plugins = with pkgs; [ + plugins = [ # TODO: lomiri.address-book-service ]; }; diff --git a/nixos/modules/services/desktops/bamf.nix b/nixos/modules/services/desktops/bamf.nix index 333a312199f2..cd668a07c245 100644 --- a/nixos/modules/services/desktops/bamf.nix +++ b/nixos/modules/services/desktops/bamf.nix @@ -6,8 +6,8 @@ ... }: { - meta = with lib; { - maintainers = with lib.maintainers; [ ]; + meta = { + maintainers = [ ]; }; ###### interface diff --git a/nixos/modules/services/desktops/tumbler.nix b/nixos/modules/services/desktops/tumbler.nix index 521f8c0a58f1..c8ebf7e81e89 100644 --- a/nixos/modules/services/desktops/tumbler.nix +++ b/nixos/modules/services/desktops/tumbler.nix @@ -17,8 +17,8 @@ in (lib.mkRemovedOptionModule [ "services" "tumbler" "package" ] "") ]; - meta = with lib; { - maintainers = with lib.maintainers; [ ] ++ lib.teams.pantheon.members; + meta = { + maintainers = [ ] ++ lib.teams.pantheon.members; }; ###### interface diff --git a/nixos/modules/services/logging/fluentd.nix b/nixos/modules/services/logging/fluentd.nix index 5047a0be031e..85f70a855723 100644 --- a/nixos/modules/services/logging/fluentd.nix +++ b/nixos/modules/services/logging/fluentd.nix @@ -39,7 +39,7 @@ in ###### implementation config = lib.mkIf cfg.enable { - systemd.services.fluentd = with pkgs; { + systemd.services.fluentd = { description = "Fluentd Daemon"; wantedBy = [ "multi-user.target" ]; serviceConfig = { diff --git a/nixos/modules/services/logging/heartbeat.nix b/nixos/modules/services/logging/heartbeat.nix index e0b475e8a284..2280c4349144 100644 --- a/nixos/modules/services/logging/heartbeat.nix +++ b/nixos/modules/services/logging/heartbeat.nix @@ -64,7 +64,7 @@ in "d '${cfg.stateDir}' - nobody nogroup - -" ]; - systemd.services.heartbeat = with pkgs; { + systemd.services.heartbeat = { description = "heartbeat log shipper"; wantedBy = [ "multi-user.target" ]; preStart = '' diff --git a/nixos/modules/services/mail/public-inbox.nix b/nixos/modules/services/mail/public-inbox.nix index 9cd760b6260f..5df7dc05d23c 100644 --- a/nixos/modules/services/mail/public-inbox.nix +++ b/nixos/modules/services/mail/public-inbox.nix @@ -676,7 +676,7 @@ in ]; }) ]; - environment.systemPackages = with pkgs; [ cfg.package ]; + environment.systemPackages = [ cfg.package ]; }; meta.maintainers = with lib.maintainers; [ julm diff --git a/nixos/modules/services/matrix/mautrix-meta.nix b/nixos/modules/services/matrix/mautrix-meta.nix index c2cdcc9c0886..a0576c79edb3 100644 --- a/nixos/modules/services/matrix/mautrix-meta.nix +++ b/nixos/modules/services/matrix/mautrix-meta.nix @@ -619,5 +619,5 @@ in } ]; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/services/misc/cgminer.nix b/nixos/modules/services/misc/cgminer.nix index f87a05d00fc1..8bd15895c348 100644 --- a/nixos/modules/services/misc/cgminer.nix +++ b/nixos/modules/services/misc/cgminer.nix @@ -7,12 +7,12 @@ let cfg = config.services.cgminer; - convType = with builtins; v: if lib.isBool v then lib.boolToString v else toString v; + convType = v: if lib.isBool v then lib.boolToString v else toString v; mergedHwConfig = lib.mapAttrsToList ( n: v: ''"${n}": "${(lib.concatStringsSep "," (map convType v))}"'' ) (lib.foldAttrs (n: a: [ n ] ++ a) [ ] cfg.hardware); mergedConfig = - with builtins; + lib.mapAttrsToList ( n: v: ''"${n}": ${if lib.isBool v then convType v else ''"${convType v}"''}'' ) cfg.config; diff --git a/nixos/modules/services/misc/docling-serve.nix b/nixos/modules/services/misc/docling-serve.nix index 2d4fd4a6a1c0..d98446c30b33 100644 --- a/nixos/modules/services/misc/docling-serve.nix +++ b/nixos/modules/services/misc/docling-serve.nix @@ -127,5 +127,5 @@ in networking.firewall = lib.mkIf cfg.openFirewall { allowedTCPPorts = [ cfg.port ]; }; }; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/services/misc/litellm.nix b/nixos/modules/services/misc/litellm.nix index 4b43768da61d..63df4eb40fb0 100644 --- a/nixos/modules/services/misc/litellm.nix +++ b/nixos/modules/services/misc/litellm.nix @@ -178,5 +178,5 @@ in networking.firewall = lib.mkIf cfg.openFirewall { allowedTCPPorts = [ cfg.port ]; }; }; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/services/misc/orthanc.nix b/nixos/modules/services/misc/orthanc.nix index 69543c41ead8..9cf21c1e18d5 100644 --- a/nixos/modules/services/misc/orthanc.nix +++ b/nixos/modules/services/misc/orthanc.nix @@ -130,5 +130,5 @@ in time.timeZone = lib.mkDefault "UTC"; }; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix index 16d68279df3f..8d73457764ff 100644 --- a/nixos/modules/services/monitoring/graphite.nix +++ b/nixos/modules/services/monitoring/graphite.nix @@ -51,10 +51,9 @@ let ]; }; - carbonOpts = - name: with config.ids; '' - --nodaemon --syslog --prefix=${name} --pidfile /run/${name}/${name}.pid ${name} - ''; + carbonOpts = name: '' + --nodaemon --syslog --prefix=${name} --pidfile /run/${name}/${name}.pid ${name} + ''; carbonEnv = { PYTHONPATH = diff --git a/nixos/modules/services/networking/ivpn.nix b/nixos/modules/services/networking/ivpn.nix index 0fa46a7e7283..f6ad062fd7cb 100644 --- a/nixos/modules/services/networking/ivpn.nix +++ b/nixos/modules/services/networking/ivpn.nix @@ -57,5 +57,5 @@ in }; }; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/services/networking/jool.nix b/nixos/modules/services/networking/jool.nix index ea73eb123384..2f74081adc31 100644 --- a/nixos/modules/services/networking/jool.nix +++ b/nixos/modules/services/networking/jool.nix @@ -289,7 +289,7 @@ in system.checks = lib.optional (cfg.nat64 != { } || cfg.siit != { }) ( pkgs.runCommand "jool-validated" { - nativeBuildInputs = with pkgs.buildPackages; [ jool-cli ]; + nativeBuildInputs = [ jool-cli ]; preferLocalBuild = true; } ( diff --git a/nixos/modules/services/networking/resilio.nix b/nixos/modules/services/networking/resilio.nix index 2b72d7cbffc0..f61577b8ce05 100644 --- a/nixos/modules/services/networking/resilio.nix +++ b/nixos/modules/services/networking/resilio.nix @@ -297,7 +297,7 @@ in users.groups.rslsync.gid = config.ids.gids.rslsync; - systemd.services.resilio = with pkgs; { + systemd.services.resilio = { description = "Resilio Sync Service"; wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix index 4b3ab053be7d..10faf3e9d6f7 100644 --- a/nixos/modules/services/networking/ssh/sshd.nix +++ b/nixos/modules/services/networking/ssh/sshd.nix @@ -21,7 +21,7 @@ let let # reports boolean as yes / no mkValueString = - with lib; + v: if lib.isInt v then toString v diff --git a/nixos/modules/services/security/hockeypuck.nix b/nixos/modules/services/security/hockeypuck.nix index 5bfe2a5c1328..785dc15393f9 100644 --- a/nixos/modules/services/security/hockeypuck.nix +++ b/nixos/modules/services/security/hockeypuck.nix @@ -10,7 +10,7 @@ let settingsFormat = pkgs.formats.toml { }; in { - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; options.services.hockeypuck = { enable = lib.mkEnableOption "Hockeypuck OpenPGP Key Server"; diff --git a/nixos/modules/services/system/earlyoom.nix b/nixos/modules/services/system/earlyoom.nix index b8fc71db0476..674e075b9ad4 100644 --- a/nixos/modules/services/system/earlyoom.nix +++ b/nixos/modules/services/system/earlyoom.nix @@ -23,7 +23,7 @@ let in { meta = { - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; options.services.earlyoom = { diff --git a/nixos/modules/services/web-apps/anuko-time-tracker.nix b/nixos/modules/services/web-apps/anuko-time-tracker.nix index 4d00d418a1dc..4a07c54865cb 100644 --- a/nixos/modules/services/web-apps/anuko-time-tracker.nix +++ b/nixos/modules/services/web-apps/anuko-time-tracker.nix @@ -399,5 +399,5 @@ in }; }; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; } diff --git a/nixos/modules/services/web-apps/honk.nix b/nixos/modules/services/web-apps/honk.nix index 7fc1f38240ec..54abe58e708e 100644 --- a/nixos/modules/services/web-apps/honk.nix +++ b/nixos/modules/services/web-apps/honk.nix @@ -152,7 +152,7 @@ in }; meta = { - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; doc = ./honk.md; }; } diff --git a/nixos/modules/services/x11/terminal-server.nix b/nixos/modules/services/x11/terminal-server.nix index c178e7403ec7..46b6d5a94044 100644 --- a/nixos/modules/services/x11/terminal-server.nix +++ b/nixos/modules/services/x11/terminal-server.nix @@ -7,8 +7,6 @@ { lib, pkgs, ... }: -with lib; - { config = { diff --git a/nixos/modules/system/boot/shutdown.nix b/nixos/modules/system/boot/shutdown.nix index 9121b695f5cd..3d5ee0d06e54 100644 --- a/nixos/modules/system/boot/shutdown.nix +++ b/nixos/modules/system/boot/shutdown.nix @@ -5,8 +5,6 @@ ... }: -with lib; - { # This unit saves the value of the system clock to the hardware diff --git a/nixos/modules/virtualisation/cloudstack-config.nix b/nixos/modules/virtualisation/cloudstack-config.nix index bb08b68a8d39..2e44b38b0c2d 100644 --- a/nixos/modules/virtualisation/cloudstack-config.nix +++ b/nixos/modules/virtualisation/cloudstack-config.nix @@ -1,7 +1,5 @@ { lib, pkgs, ... }: -with lib; - { imports = [ ../profiles/qemu-guest.nix diff --git a/nixos/modules/virtualisation/openvswitch.nix b/nixos/modules/virtualisation/openvswitch.nix index 498044ce43c8..5a231fb5888c 100644 --- a/nixos/modules/virtualisation/openvswitch.nix +++ b/nixos/modules/virtualisation/openvswitch.nix @@ -48,7 +48,7 @@ in name = "vswitch.db"; dontUnpack = true; buildPhase = "true"; - buildInputs = with pkgs; [ + buildInputs = [ cfg.package ]; installPhase = "mkdir -p $out"; diff --git a/nixos/modules/virtualisation/vmware-host.nix b/nixos/modules/virtualisation/vmware-host.nix index eaabc2fea551..0a560f7ea3c2 100644 --- a/nixos/modules/virtualisation/vmware-host.nix +++ b/nixos/modules/virtualisation/vmware-host.nix @@ -44,7 +44,7 @@ in package = mkPackageOption pkgs "vmware-workstation" { }; extraPackages = mkOption { type = with types; listOf package; - default = with pkgs; [ ]; + default = [ ]; description = "Extra packages to be used with VMware host."; example = "with pkgs; [ ntfs3g ]"; }; diff --git a/nixos/release-combined.nix b/nixos/release-combined.nix index b9b59e4ab37a..1d42bc8da924 100644 --- a/nixos/release-combined.nix +++ b/nixos/release-combined.nix @@ -64,7 +64,7 @@ rec { name = "nixos-${nixos.channel.version}"; meta = { description = "Release-critical builds for the NixOS channel"; - maintainers = with pkgs.lib.maintainers; [ ]; + maintainers = [ ]; }; constituents = pkgs.lib.concatLists [ [ "nixos.channel" ] diff --git a/nixos/tests/anuko-time-tracker.nix b/nixos/tests/anuko-time-tracker.nix index 531847890761..435cd411b7e4 100644 --- a/nixos/tests/anuko-time-tracker.nix +++ b/nixos/tests/anuko-time-tracker.nix @@ -2,7 +2,7 @@ { name = "anuko-time-tracker"; meta = { - maintainers = with pkgs.lib.maintainers; [ ]; + maintainers = [ ]; }; nodes = { machine = { diff --git a/nixos/tests/curl-impersonate.nix b/nixos/tests/curl-impersonate.nix index 866bd78ce163..cbb31572c254 100644 --- a/nixos/tests/curl-impersonate.nix +++ b/nixos/tests/curl-impersonate.nix @@ -133,7 +133,7 @@ in { name = "curl-impersonate"; - meta = with lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/docker-rootless.nix b/nixos/tests/docker-rootless.nix index c1925bababfa..fcd33476ae45 100644 --- a/nixos/tests/docker-rootless.nix +++ b/nixos/tests/docker-rootless.nix @@ -2,7 +2,7 @@ { lib, pkgs, ... }: { name = "docker-rootless"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/docling-serve.nix b/nixos/tests/docling-serve.nix index d1636c0210c5..f6880d6059d9 100644 --- a/nixos/tests/docling-serve.nix +++ b/nixos/tests/docling-serve.nix @@ -4,7 +4,7 @@ let in { name = "docling-serve"; - meta = with lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/documize.nix b/nixos/tests/documize.nix index e918fdd93e70..df225ad8dd11 100644 --- a/nixos/tests/documize.nix +++ b/nixos/tests/documize.nix @@ -1,7 +1,7 @@ { pkgs, lib, ... }: { name = "documize"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/etesync-dav.nix b/nixos/tests/etesync-dav.nix index 2d3f7fc60310..f64b256b4d76 100644 --- a/nixos/tests/etesync-dav.nix +++ b/nixos/tests/etesync-dav.nix @@ -2,7 +2,7 @@ { name = "etesync-dav"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/flaresolverr.nix b/nixos/tests/flaresolverr.nix index 184f57b78ff8..db25ab117cad 100644 --- a/nixos/tests/flaresolverr.nix +++ b/nixos/tests/flaresolverr.nix @@ -1,7 +1,7 @@ { lib, ... }: { name = "flaresolverr"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { pkgs, ... }: diff --git a/nixos/tests/frr.nix b/nixos/tests/frr.nix index cc5e16f8e2c5..615cd3caf89f 100644 --- a/nixos/tests/frr.nix +++ b/nixos/tests/frr.nix @@ -32,7 +32,7 @@ in { name = "frr"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/google-oslogin/default.nix b/nixos/tests/google-oslogin/default.nix index 2e4488393e9b..6bdf0930df15 100644 --- a/nixos/tests/google-oslogin/default.nix +++ b/nixos/tests/google-oslogin/default.nix @@ -19,7 +19,7 @@ let in { name = "google-oslogin"; - meta = with lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/gotify-server.nix b/nixos/tests/gotify-server.nix index 560022be89e8..8996646be80d 100644 --- a/nixos/tests/gotify-server.nix +++ b/nixos/tests/gotify-server.nix @@ -1,7 +1,7 @@ { pkgs, lib, ... }: { name = "gotify-server"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/greetd-no-shadow.nix b/nixos/tests/greetd-no-shadow.nix index 947271716b0b..e2f738188feb 100644 --- a/nixos/tests/greetd-no-shadow.nix +++ b/nixos/tests/greetd-no-shadow.nix @@ -5,7 +5,7 @@ }: { name = "greetd-no-shadow"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/gvisor.nix b/nixos/tests/gvisor.nix index 73b013754e81..9bb8af2d3761 100644 --- a/nixos/tests/gvisor.nix +++ b/nixos/tests/gvisor.nix @@ -3,7 +3,7 @@ { pkgs, ... }: { name = "gvisor"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/hockeypuck.nix b/nixos/tests/hockeypuck.nix index f1609087ac66..ba6549f6cdf4 100644 --- a/nixos/tests/hockeypuck.nix +++ b/nixos/tests/hockeypuck.nix @@ -25,7 +25,7 @@ let in { name = "hockeypuck"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { ... }: diff --git a/nixos/tests/ipv6.nix b/nixos/tests/ipv6.nix index ca25c0b4497f..84c585be0ad4 100644 --- a/nixos/tests/ipv6.nix +++ b/nixos/tests/ipv6.nix @@ -4,7 +4,7 @@ { pkgs, lib, ... }: { name = "ipv6"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/isso.nix b/nixos/tests/isso.nix index a5ed88044b26..f15a35628a71 100644 --- a/nixos/tests/isso.nix +++ b/nixos/tests/isso.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { name = "isso"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/jackett.nix b/nixos/tests/jackett.nix index 77f05a6bad76..d4da7c68706b 100644 --- a/nixos/tests/jackett.nix +++ b/nixos/tests/jackett.nix @@ -5,7 +5,7 @@ let in { name = "jackett"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { pkgs, ... }: diff --git a/nixos/tests/lidarr.nix b/nixos/tests/lidarr.nix index ee6dd83f38aa..426030d07857 100644 --- a/nixos/tests/lidarr.nix +++ b/nixos/tests/lidarr.nix @@ -2,7 +2,7 @@ { name = "lidarr"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { pkgs, ... }: diff --git a/nixos/tests/litellm.nix b/nixos/tests/litellm.nix index 12fb24aba4cd..f41ccebcb638 100644 --- a/nixos/tests/litellm.nix +++ b/nixos/tests/litellm.nix @@ -21,7 +21,7 @@ in machine.wait_for_open_port(${mainPort}) ''; - meta = with lib.maintainers; { + meta = { maintainers = [ ]; }; } diff --git a/nixos/tests/login.nix b/nixos/tests/login.nix index 5703528f69de..bd0d3b7bc005 100644 --- a/nixos/tests/login.nix +++ b/nixos/tests/login.nix @@ -8,7 +8,7 @@ { _module.args.latestKernel = lib.mkDefault false; name = "login"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/lxc/default.nix b/nixos/tests/lxc/default.nix index 304510c610dc..a4bbd4406e82 100644 --- a/nixos/tests/lxc/default.nix +++ b/nixos/tests/lxc/default.nix @@ -57,7 +57,7 @@ import ../make-test-python.nix ( }; # Needed for lxc - environment.systemPackages = with pkgs; [ + environment.systemPackages = [ pkgs.wget pkgs.dnsmasq ]; diff --git a/nixos/tests/munin.nix b/nixos/tests/munin.nix index fe4a7627f615..24712c4c34f9 100644 --- a/nixos/tests/munin.nix +++ b/nixos/tests/munin.nix @@ -4,7 +4,7 @@ { pkgs, ... }: { name = "munin"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/networking-proxy.nix b/nixos/tests/networking-proxy.nix index c20dd297328f..2f8a64b5affa 100644 --- a/nixos/tests/networking-proxy.nix +++ b/nixos/tests/networking-proxy.nix @@ -14,7 +14,7 @@ in { pkgs, ... }: { name = "networking-proxy"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/nfs/simple.nix b/nixos/tests/nfs/simple.nix index a36270dda535..3f2b8d3bbb1c 100644 --- a/nixos/tests/nfs/simple.nix +++ b/nixos/tests/nfs/simple.nix @@ -25,7 +25,7 @@ import ../make-test-python.nix ( { name = "nfs"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/opensearch.nix b/nixos/tests/opensearch.nix index 5ecb62c6cd80..6e081ee37aa4 100644 --- a/nixos/tests/opensearch.nix +++ b/nixos/tests/opensearch.nix @@ -5,7 +5,7 @@ let { pkgs, lib, ... }: { name = "opensearch"; - meta.maintainers = with pkgs.lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = lib.mkMerge [ { diff --git a/nixos/tests/prowlarr.nix b/nixos/tests/prowlarr.nix index b7cd320480c1..555706873dd4 100644 --- a/nixos/tests/prowlarr.nix +++ b/nixos/tests/prowlarr.nix @@ -2,7 +2,7 @@ { name = "prowlarr"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { pkgs, ... }: diff --git a/nixos/tests/proxy.nix b/nixos/tests/proxy.nix index 2526ce954c5b..f051d429a508 100644 --- a/nixos/tests/proxy.nix +++ b/nixos/tests/proxy.nix @@ -14,7 +14,7 @@ let in { name = "proxy"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/quake3.nix b/nixos/tests/quake3.nix index 8171b09dbd65..f16d2240851f 100644 --- a/nixos/tests/quake3.nix +++ b/nixos/tests/quake3.nix @@ -31,7 +31,7 @@ let in { name = "quake3"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; node.pkgsReadOnly = false; diff --git a/nixos/tests/radarr.nix b/nixos/tests/radarr.nix index dfdf23582354..49737485826e 100644 --- a/nixos/tests/radarr.nix +++ b/nixos/tests/radarr.nix @@ -2,7 +2,7 @@ { name = "radarr"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { pkgs, ... }: diff --git a/nixos/tests/scrutiny.nix b/nixos/tests/scrutiny.nix index 5af787c6d50c..6e96b938ff9c 100644 --- a/nixos/tests/scrutiny.nix +++ b/nixos/tests/scrutiny.nix @@ -2,7 +2,7 @@ { name = "scrutiny"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes = { machine = diff --git a/nixos/tests/soapui.nix b/nixos/tests/soapui.nix index 9906678e560f..a5ae9a91a10b 100644 --- a/nixos/tests/soapui.nix +++ b/nixos/tests/soapui.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { name = "soapui"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/sogo.nix b/nixos/tests/sogo.nix index 38e13a506b69..a531d3c617fd 100644 --- a/nixos/tests/sogo.nix +++ b/nixos/tests/sogo.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { name = "sogo"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/sonarr.nix b/nixos/tests/sonarr.nix index 7205a5f640ef..2c6237f51c54 100644 --- a/nixos/tests/sonarr.nix +++ b/nixos/tests/sonarr.nix @@ -2,7 +2,7 @@ { name = "sonarr"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { pkgs, ... }: diff --git a/nixos/tests/spiped.nix b/nixos/tests/spiped.nix index 994ec2be02e4..82d347e3b079 100644 --- a/nixos/tests/spiped.nix +++ b/nixos/tests/spiped.nix @@ -4,7 +4,7 @@ let in { name = "spiped"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/swayfx.nix b/nixos/tests/swayfx.nix index 1f9b19f335f9..7477e92b7a70 100644 --- a/nixos/tests/swayfx.nix +++ b/nixos/tests/swayfx.nix @@ -2,7 +2,7 @@ { name = "swayfx"; meta = { - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; # testScriptWithTypes:49: error: Cannot call function of unknown type diff --git a/nixos/tests/sympa.nix b/nixos/tests/sympa.nix index de7e469f74d1..2d95497a3891 100644 --- a/nixos/tests/sympa.nix +++ b/nixos/tests/sympa.nix @@ -1,7 +1,7 @@ { pkgs, lib, ... }: { name = "sympa"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { ... }: diff --git a/nixos/tests/syncthing/relay.nix b/nixos/tests/syncthing/relay.nix index 29793363414e..e43f2e58f5ef 100644 --- a/nixos/tests/syncthing/relay.nix +++ b/nixos/tests/syncthing/relay.nix @@ -1,7 +1,7 @@ { lib, pkgs, ... }: { name = "syncthing-relay"; - meta.maintainers = with pkgs.lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { environment.systemPackages = [ pkgs.jq ]; diff --git a/nixos/tests/systemd-networkd-dhcpserver.nix b/nixos/tests/systemd-networkd-dhcpserver.nix index ae3ec181654b..e368f9f213e5 100644 --- a/nixos/tests/systemd-networkd-dhcpserver.nix +++ b/nixos/tests/systemd-networkd-dhcpserver.nix @@ -10,7 +10,7 @@ { pkgs, ... }: { name = "systemd-networkd-dhcpserver"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; nodes = { diff --git a/nixos/tests/tandoor-recipes.nix b/nixos/tests/tandoor-recipes.nix index 025f1b6e2774..0c7ec61dd282 100644 --- a/nixos/tests/tandoor-recipes.nix +++ b/nixos/tests/tandoor-recipes.nix @@ -1,7 +1,7 @@ { lib, ... }: { name = "tandoor-recipes"; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes.machine = { pkgs, ... }: diff --git a/nixos/tests/tigervnc.nix b/nixos/tests/tigervnc.nix index 05e4366045f2..4774198f5b14 100644 --- a/nixos/tests/tigervnc.nix +++ b/nixos/tests/tigervnc.nix @@ -7,7 +7,7 @@ with import ../lib/testing-python.nix { inherit system pkgs; }; makeTest { name = "tigervnc"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/timezone.nix b/nixos/tests/timezone.nix index 3a16c9de4887..b5d2f6779338 100644 --- a/nixos/tests/timezone.nix +++ b/nixos/tests/timezone.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { name = "timezone"; - meta.maintainers = with pkgs.lib.maintainers; [ ]; + meta.maintainers = [ ]; nodes = { node_eutz = diff --git a/nixos/tests/tinywl.nix b/nixos/tests/tinywl.nix index 91813739e710..d4a5f3708cff 100644 --- a/nixos/tests/tinywl.nix +++ b/nixos/tests/tinywl.nix @@ -3,7 +3,7 @@ { name = "tinywl"; meta = { - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; nodes.machine = diff --git a/nixos/tests/udisks2.nix b/nixos/tests/udisks2.nix index 591ad0741e28..91ecc8cc3c03 100644 --- a/nixos/tests/udisks2.nix +++ b/nixos/tests/udisks2.nix @@ -12,7 +12,7 @@ in { name = "udisks2"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/nixos/tests/xmpp/ejabberd.nix b/nixos/tests/xmpp/ejabberd.nix index 10b52bdf28a2..d6b2b3428834 100644 --- a/nixos/tests/xmpp/ejabberd.nix +++ b/nixos/tests/xmpp/ejabberd.nix @@ -10,7 +10,7 @@ in { pkgs, ... }: { name = "ejabberd"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; nodes = { diff --git a/nixos/tests/xrdp.nix b/nixos/tests/xrdp.nix index fdf598a87467..13f66bf03665 100644 --- a/nixos/tests/xrdp.nix +++ b/nixos/tests/xrdp.nix @@ -1,7 +1,7 @@ { pkgs, ... }: { name = "xrdp"; - meta = with pkgs.lib.maintainers; { + meta = { maintainers = [ ]; }; diff --git a/pkgs/applications/audio/mopidy/musicbox-webclient.nix b/pkgs/applications/audio/mopidy/musicbox-webclient.nix index 62ab22911d3b..fa39eace57d0 100644 --- a/pkgs/applications/audio/mopidy/musicbox-webclient.nix +++ b/pkgs/applications/audio/mopidy/musicbox-webclient.nix @@ -32,6 +32,6 @@ pythonPackages.buildPythonApplication rec { homepage = "https://github.com/pimusicbox/mopidy-musicbox-webclient"; changelog = "https://github.com/pimusicbox/mopidy-musicbox-webclient/blob/v${version}/CHANGELOG.rst"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix index 17b3cabb837d..68ed830b3eed 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/cask/package.nix @@ -100,7 +100,7 @@ melpaBuild ( ''; license = lib.licenses.gpl3Plus; mainProgram = "cask"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } ) diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix index 0d3903fb81f9..2bbfb02d7f96 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/color-theme-solarized/package.nix @@ -25,6 +25,6 @@ melpaBuild { homepage = "http://ethanschoonover.com/solarized"; description = "Precision colors for machines and people; Emacs implementation"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix index 7eb5a731289f..8fd622b2cb08 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/package.nix @@ -17,6 +17,6 @@ melpaBuild rec { homepage = "https://gitweb.gentoo.org/proj/ebuild-mode.git/"; description = "Major modes for Gentoo package files"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix index b0c6d1bcc0bf..f4a9b8ec4abb 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/elisp-ffi/package.nix @@ -38,6 +38,6 @@ melpaBuild { values on to Emacs. ''; license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix index c41798802589..0189c61d79e8 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/font-lock-plus/package.nix @@ -20,6 +20,6 @@ melpaBuild { homepage = "https://github.com/emacsmirror/font-lock-plus"; description = "Enhancements to standard library font-lock.el"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix index 64e2c3ab0728..5dd1c43bff5b 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/grid/package.nix @@ -19,6 +19,6 @@ melpaBuild { homepage = "https://github.com/ichernyshovvv/grid.el"; description = "Library to put text data into boxes and manipulate them"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix index 68e97c8e98ce..54387744d8c2 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/icicles/package.nix @@ -19,6 +19,6 @@ melpaBuild { homepage = "https://emacswiki.org/emacs/Icicles"; description = "Emacs library that enhances minibuffer completion"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix index 4d9f64c110ff..5a1ba8b2829a 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/lspce/module.nix @@ -34,6 +34,6 @@ rustPlatform.buildRustPackage { homepage = "https://github.com/zbelial/lspce"; description = "LSP Client for Emacs implemented as a module using Rust"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix index 4bdf1c124223..638f5cd49b66 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/rect-mark/package.nix @@ -22,6 +22,6 @@ melpaBuild { homepage = "http://emacswiki.org/emacs/RectangleMark"; description = "Mark a rectangle of text with highlighting"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix index 925ef8d9abbf..e8bed9c51e4f 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/tsc/package.nix @@ -47,6 +47,6 @@ melpaBuild { meta = { description = "Core APIs of the Emacs binding for tree-sitter"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix index 4c1f794c1ed3..141b21767c64 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/voicemacs/package.nix @@ -52,6 +52,6 @@ melpaBuild { homepage = "https://github.com/jcaw/voicemacs/"; description = "Set of utilities for controlling Emacs by voice"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/amazonwebservices.amazon-q-vscode/default.nix b/pkgs/applications/editors/vscode/extensions/amazonwebservices.amazon-q-vscode/default.nix index 483cf4c68f62..1a58e6d4a45e 100644 --- a/pkgs/applications/editors/vscode/extensions/amazonwebservices.amazon-q-vscode/default.nix +++ b/pkgs/applications/editors/vscode/extensions/amazonwebservices.amazon-q-vscode/default.nix @@ -17,6 +17,6 @@ vscode-utils.buildVscodeMarketplaceExtension (finalAttrs: { downloadPage = "https://marketplace.visualstudio.com/items?itemName=AmazonWebServices.amazon-q-vscode"; homepage = "https://github.com/aws/aws-toolkit-vscode"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix b/pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix index 8403ac814a43..25e6b4b8ba1c 100644 --- a/pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix +++ b/pkgs/applications/editors/vscode/extensions/anweber.vscode-httpyac/default.nix @@ -23,6 +23,6 @@ vscode-utils.buildVscodeMarketplaceExtension { downloadPage = "https://marketplace.visualstudio.com/items?itemName=anweber.vscode-httpyac"; homepage = "https://github.com/AnWeber/vscode-httpyac/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix b/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix index c5aeac308659..4911eba01785 100644 --- a/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix +++ b/pkgs/applications/editors/vscode/extensions/mongodb.mongodb-vscode/default.nix @@ -14,6 +14,6 @@ vscode-utils.buildVscodeMarketplaceExtension { downloadPage = "https://marketplace.visualstudio.com/items?itemName=mongodb.mongodb-vscode"; homepage = "https://github.com/mongodb-js/vscode"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix b/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix index 2b64ededde1e..60700645d32e 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-python.mypy-type-checker/default.nix @@ -17,6 +17,6 @@ vscode-utils.buildVscodeMarketplaceExtension { downloadPage = "https://marketplace.visualstudio.com/items?itemName=ms-python.mypy-type-checker"; homepage = "https://github.com/microsoft/vscode-mypy"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix index feac9ec1b2a1..df652a619f1d 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-vscode-remote.vscode-remote-extensionpack/default.nix @@ -15,6 +15,6 @@ vscode-utils.buildVscodeMarketplaceExtension { description = "Visual Studio Code extension pack that lets you open any folder in a container, on a remote machine, or in WSL and take advantage of VS Code's full feature set"; homepage = "https://github.com/Microsoft/vscode-remote-release"; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix b/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix index d6cdd508ce51..65adb69074ff 100644 --- a/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix +++ b/pkgs/applications/editors/vscode/extensions/ms-windows-ai-studio.windows-ai-studio/default.nix @@ -15,6 +15,6 @@ vscode-utils.buildVscodeMarketplaceExtension { description = "Visual Studio Code extension to help developers and AI engineers build AI apps"; homepage = "https://github.com/Microsoft/windows-ai-studio"; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix b/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix index 707f7f4d8db8..b10a30f29dd1 100644 --- a/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix +++ b/pkgs/applications/editors/vscode/extensions/pylyzer.pylyzer/default.nix @@ -13,6 +13,6 @@ vscode-utils.buildVscodeMarketplaceExtension { downloadPage = "https://marketplace.visualstudio.com/items?itemName=pylyzer.pylyzer"; homepage = "https://github.com/mtshiba/pylyzer/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix b/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix index acffeb81490c..39ac3a690907 100644 --- a/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix +++ b/pkgs/applications/editors/vscode/extensions/rooveterinaryinc.roo-cline/default.nix @@ -19,6 +19,6 @@ vscode-utils.buildVscodeMarketplaceExtension { downloadPage = "https://marketplace.visualstudio.com/items?itemName=RooVeterinaryInc.roo-cline"; homepage = "https://github.com/RooVetGit/Roo-Code"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/emulators/yabause/default.nix b/pkgs/applications/emulators/yabause/default.nix index ec42e6779e4f..7273d9e40e39 100644 --- a/pkgs/applications/emulators/yabause/default.nix +++ b/pkgs/applications/emulators/yabause/default.nix @@ -54,7 +54,7 @@ mkDerivation rec { mainProgram = "yabause"; homepage = "https://yabause.org/"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/applications/graphics/gimp/2.0/default.nix b/pkgs/applications/graphics/gimp/2.0/default.nix index 985ae05e71b1..90a9061d52f9 100644 --- a/pkgs/applications/graphics/gimp/2.0/default.nix +++ b/pkgs/applications/graphics/gimp/2.0/default.nix @@ -218,7 +218,7 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "GNU Image Manipulation Program"; homepage = "https://www.gimp.org/"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.gpl3Plus; platforms = platforms.unix; mainProgram = "gimp"; diff --git a/pkgs/applications/misc/coolreader/default.nix b/pkgs/applications/misc/coolreader/default.nix index 405a035f3d37..992046629577 100644 --- a/pkgs/applications/misc/coolreader/default.nix +++ b/pkgs/applications/misc/coolreader/default.nix @@ -38,7 +38,7 @@ mkDerivation rec { description = "Cross platform open source e-book reader"; mainProgram = "cr3"; license = licenses.gpl2Plus; # see https://github.com/buggins/coolreader/issues/80 - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; } diff --git a/pkgs/applications/misc/cubocore-packages/coreaction/default.nix b/pkgs/applications/misc/cubocore-packages/coreaction/default.nix index 320aaf5c5fae..f9143c5d505d 100644 --- a/pkgs/applications/misc/cubocore-packages/coreaction/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreaction/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreaction"; homepage = "https://gitlab.com/cubocore/coreapps/coreaction"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix b/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix index 922c1ebb328d..4de3a74839bc 100644 --- a/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corearchiver/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corearchiver"; homepage = "https://gitlab.com/cubocore/coreapps/corearchiver"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corefm/default.nix b/pkgs/applications/misc/cubocore-packages/corefm/default.nix index 599f56ffbfb6..f297314c5657 100644 --- a/pkgs/applications/misc/cubocore-packages/corefm/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corefm/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corefm"; homepage = "https://gitlab.com/cubocore/coreapps/corefm"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coregarage/default.nix b/pkgs/applications/misc/cubocore-packages/coregarage/default.nix index c02c46884ba1..6772e6a23d4e 100644 --- a/pkgs/applications/misc/cubocore-packages/coregarage/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coregarage/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coregarage"; homepage = "https://gitlab.com/cubocore/coreapps/coregarage"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corehunt/default.nix b/pkgs/applications/misc/cubocore-packages/corehunt/default.nix index 00b2b0761328..978570ceac4c 100644 --- a/pkgs/applications/misc/cubocore-packages/corehunt/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corehunt/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corehunt"; homepage = "https://gitlab.com/cubocore/coreapps/corehunt"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreimage/default.nix b/pkgs/applications/misc/cubocore-packages/coreimage/default.nix index f6be00ece3e5..9ebc6457e043 100644 --- a/pkgs/applications/misc/cubocore-packages/coreimage/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreimage/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreimage"; homepage = "https://gitlab.com/cubocore/coreapps/coreimage"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix b/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix index afce7298f039..78328bdc8c63 100644 --- a/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreinfo/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreinfo"; homepage = "https://gitlab.com/cubocore/coreapps/coreinfo"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix b/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix index 37d9bde54aae..928e304e7fa0 100644 --- a/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corekeyboard/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corekeyboard"; homepage = "https://gitlab.com/cubocore/coreapps/corekeyboard"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepad/default.nix b/pkgs/applications/misc/cubocore-packages/corepad/default.nix index db8ae6dd4b75..6c77b39025ba 100644 --- a/pkgs/applications/misc/cubocore-packages/corepad/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepad/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepad"; homepage = "https://gitlab.com/cubocore/coreapps/corepad"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepaint/default.nix b/pkgs/applications/misc/cubocore-packages/corepaint/default.nix index 435a1b47e3ff..86d65d6b3a21 100644 --- a/pkgs/applications/misc/cubocore-packages/corepaint/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepaint/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepaint"; homepage = "https://gitlab.com/cubocore/coreapps/corepaint"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepdf/default.nix b/pkgs/applications/misc/cubocore-packages/corepdf/default.nix index 795e57d52366..c06e01a01729 100644 --- a/pkgs/applications/misc/cubocore-packages/corepdf/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepdf/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepdf"; homepage = "https://gitlab.com/cubocore/coreapps/corepdf"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corepins/default.nix b/pkgs/applications/misc/cubocore-packages/corepins/default.nix index 9d3df7951f04..1783c0c5d864 100644 --- a/pkgs/applications/misc/cubocore-packages/corepins/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corepins/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corepins"; homepage = "https://gitlab.com/cubocore/coreapps/corepins"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix b/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix index 7a3174f37687..4d2b91cee669 100644 --- a/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corerenamer/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corerenamer"; homepage = "https://gitlab.com/cubocore/coreapps/corerenamer"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreshot/default.nix b/pkgs/applications/misc/cubocore-packages/coreshot/default.nix index af001ecce2a8..4531a57317ec 100644 --- a/pkgs/applications/misc/cubocore-packages/coreshot/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreshot/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreshot"; homepage = "https://gitlab.com/cubocore/coreapps/coreshot"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corestats/default.nix b/pkgs/applications/misc/cubocore-packages/corestats/default.nix index 4926de4a663c..ecdb8642d910 100644 --- a/pkgs/applications/misc/cubocore-packages/corestats/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corestats/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corestats"; homepage = "https://gitlab.com/cubocore/coreapps/corestats"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/corestuff/default.nix b/pkgs/applications/misc/cubocore-packages/corestuff/default.nix index 1d0faa705a01..895e0b7463d1 100644 --- a/pkgs/applications/misc/cubocore-packages/corestuff/default.nix +++ b/pkgs/applications/misc/cubocore-packages/corestuff/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "corestuff"; homepage = "https://gitlab.com/cubocore/coreapps/corestuff"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; # Address boundary error broken = true; diff --git a/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix b/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix index 18cba76b8fbb..b134d79c0dd4 100644 --- a/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreterminal/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreterminal"; homepage = "https://gitlab.com/cubocore/coreapps/coreterminal"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coretime/default.nix b/pkgs/applications/misc/cubocore-packages/coretime/default.nix index 6f54355722ab..1f08dc30458f 100644 --- a/pkgs/applications/misc/cubocore-packages/coretime/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coretime/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coretime"; homepage = "https://gitlab.com/cubocore/coreapps/coretime"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix b/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix index 82328cb4f247..8cd1042db144 100644 --- a/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coretoppings/default.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "shareIT"; homepage = "https://gitlab.com/cubocore/coreapps/coretoppings"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix b/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix index 059b3f79478e..99a14e25f9f3 100644 --- a/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix +++ b/pkgs/applications/misc/cubocore-packages/coreuniverse/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "coreuniverse"; homepage = "https://gitlab.com/cubocore/coreapps/coreuniverse"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/libcprime/default.nix b/pkgs/applications/misc/cubocore-packages/libcprime/default.nix index f2f28822e5cb..28f426b274b1 100644 --- a/pkgs/applications/misc/cubocore-packages/libcprime/default.nix +++ b/pkgs/applications/misc/cubocore-packages/libcprime/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Library for bookmarking, saving recent activites, managing settings of C-Suite"; homepage = "https://gitlab.com/cubocore/libcprime"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cubocore-packages/libcsys/default.nix b/pkgs/applications/misc/cubocore-packages/libcsys/default.nix index 7d69d36a6279..0a028ddb8351 100644 --- a/pkgs/applications/misc/cubocore-packages/libcsys/default.nix +++ b/pkgs/applications/misc/cubocore-packages/libcsys/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Library for managing drive and getting system resource information in real time"; homepage = "https://gitlab.com/cubocore/libcsys"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/applications/misc/cura/plugins.nix b/pkgs/applications/misc/cura/plugins.nix index eec6b5cc864d..fe10b5e8c623 100644 --- a/pkgs/applications/misc/cura/plugins.nix +++ b/pkgs/applications/misc/cura/plugins.nix @@ -35,7 +35,7 @@ let description = "Enables printing directly to OctoPrint and monitoring the process"; homepage = "https://github.com/fieldOfView/Cura-OctoPrintPlugin"; license = licenses.agpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }; @@ -74,7 +74,7 @@ let description = "Cura plugin for HID mice such as 3Dconnexion spacemouse"; homepage = "https://github.com/smartavionics/RawMouse"; license = licenses.agpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }; diff --git a/pkgs/applications/misc/heimer/default.nix b/pkgs/applications/misc/heimer/default.nix index d9e123aa3679..b9fd78bfaf1c 100644 --- a/pkgs/applications/misc/heimer/default.nix +++ b/pkgs/applications/misc/heimer/default.nix @@ -33,7 +33,7 @@ mkDerivation rec { homepage = "https://github.com/juzzlin/Heimer"; changelog = "https://github.com/juzzlin/Heimer/blob/${version}/CHANGELOG"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/applications/misc/klayout/default.nix b/pkgs/applications/misc/klayout/default.nix index 645e5f619a2b..77928cdc2580 100644 --- a/pkgs/applications/misc/klayout/default.nix +++ b/pkgs/applications/misc/klayout/default.nix @@ -91,6 +91,6 @@ mkDerivation rec { homepage = "https://www.klayout.de/"; changelog = "https://www.klayout.de/development.html#${version}"; platforms = lib.platforms.linux ++ lib.platforms.darwin; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/misc/makehuman/default.nix b/pkgs/applications/misc/makehuman/default.nix index c52ae1b813a3..51f27c3d7c10 100644 --- a/pkgs/applications/misc/makehuman/default.nix +++ b/pkgs/applications/misc/makehuman/default.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { qtbase ]; - propagatedBuildInputs = with python3.pkgs; [ + propagatedBuildInputs = [ pydeps ]; diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix index 332b124b7c02..8bce3e55b9da 100644 --- a/pkgs/applications/misc/redshift/default.nix +++ b/pkgs/applications/misc/redshift/default.nix @@ -178,7 +178,7 @@ rec { longDescription = "Gammastep" + lib.removePrefix "Redshift" redshift.meta.longDescription; homepage = "https://gitlab.com/chinstrap/gammastep"; mainProgram = "gammastep"; - maintainers = (with lib.maintainers; [ ]) ++ redshift.meta.maintainers; + maintainers = ([ ]) ++ redshift.meta.maintainers; }; }; } diff --git a/pkgs/applications/misc/valentina/default.nix b/pkgs/applications/misc/valentina/default.nix index d168d732eb59..e66cef47eaa4 100644 --- a/pkgs/applications/misc/valentina/default.nix +++ b/pkgs/applications/misc/valentina/default.nix @@ -60,6 +60,6 @@ stdenv.mkDerivation rec { changelog = "https://gitlab.com/smart-pattern/valentina/-/blob/v${version}/ChangeLog.txt"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/networking/cluster/spark/default.nix b/pkgs/applications/networking/cluster/spark/default.nix index f472d23cccd7..bf4c61a47591 100644 --- a/pkgs/applications/networking/cluster/spark/default.nix +++ b/pkgs/applications/networking/cluster/spark/default.nix @@ -31,7 +31,7 @@ let inherit (finalAttrs.hadoop) jdk; src = fetchzip { url = - with finalAttrs; + "mirror://apache/spark/${pname}-${version}/${pname}-${version}-bin-without-hadoop.tgz"; inherit (finalAttrs) hash; }; diff --git a/pkgs/applications/networking/dropbox/cli.nix b/pkgs/applications/networking/dropbox/cli.nix index aeb89f52a6da..a166110a5e34 100644 --- a/pkgs/applications/networking/dropbox/cli.nix +++ b/pkgs/applications/networking/dropbox/cli.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation { description = "Command line client for the dropbox daemon"; license = lib.licenses.gpl3Plus; mainProgram = "dropbox"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; # NOTE: Dropbox itself only works on linux, so this is ok. platforms = lib.platforms.linux; }; diff --git a/pkgs/applications/networking/gns3/gui.nix b/pkgs/applications/networking/gns3/gui.nix index 0debbd9c4752..51ac55fb5323 100644 --- a/pkgs/applications/networking/gns3/gui.nix +++ b/pkgs/applications/networking/gns3/gui.nix @@ -26,7 +26,7 @@ python3Packages.buildPythonApplication rec { rev = "refs/tags/v${version}"; }; - nativeBuildInputs = with python3Packages; [ wrapQtAppsHook ]; + nativeBuildInputs = [ wrapQtAppsHook ]; build-system = with python3Packages; [ setuptools ]; diff --git a/pkgs/applications/networking/newsreaders/quiterss/default.nix b/pkgs/applications/networking/newsreaders/quiterss/default.nix index a834a1b489b1..8bedf042692a 100644 --- a/pkgs/applications/networking/newsreaders/quiterss/default.nix +++ b/pkgs/applications/networking/newsreaders/quiterss/default.nix @@ -44,6 +44,6 @@ stdenv.mkDerivation rec { changelog = "https://github.com/QuiteRSS/quiterss/blob/${version}/CHANGELOG"; license = lib.licenses.gpl3; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/science/logic/vampire/default.nix b/pkgs/applications/science/logic/vampire/default.nix index 8f73a2cb210d..adfb8ea0ffbc 100644 --- a/pkgs/applications/science/logic/vampire/default.nix +++ b/pkgs/applications/science/logic/vampire/default.nix @@ -56,6 +56,6 @@ stdenv.mkDerivation rec { mainProgram = "vampire"; platforms = lib.platforms.unix; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/applications/science/math/cemu-ti/default.nix b/pkgs/applications/science/math/cemu-ti/default.nix index 594ec4f600aa..01e1602406fd 100644 --- a/pkgs/applications/science/math/cemu-ti/default.nix +++ b/pkgs/applications/science/math/cemu-ti/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "CEmu"; homepage = "https://ce-programming.github.io/CEmu"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/applications/version-management/blackbox/default.nix b/pkgs/applications/version-management/blackbox/default.nix index 292192650d80..29ce188036c6 100644 --- a/pkgs/applications/version-management/blackbox/default.nix +++ b/pkgs/applications/version-management/blackbox/default.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Safely store secrets in a VCS repo"; homepage = "https://github.com/StackExchange/blackbox"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.mit; platforms = platforms.all; }; diff --git a/pkgs/applications/video/mpv/scripts/builtins.nix b/pkgs/applications/video/mpv/scripts/builtins.nix index 5e0af3403fb2..9263423035aa 100644 --- a/pkgs/applications/video/mpv/scripts/builtins.nix +++ b/pkgs/applications/video/mpv/scripts/builtins.nix @@ -18,7 +18,7 @@ let dontUnpack = true; scriptPath = "${src}/${srcPath}"; - meta = with lib; { + meta = { inherit (mpv-unwrapped.meta) license; homepage = "https://github.com/mpv-player/mpv/blob/v${version}/${srcPath}"; }; diff --git a/pkgs/applications/video/openshot-qt/default.nix b/pkgs/applications/video/openshot-qt/default.nix index a7244ddb901c..d65bde5d4c85 100644 --- a/pkgs/applications/video/openshot-qt/default.nix +++ b/pkgs/applications/video/openshot-qt/default.nix @@ -94,7 +94,7 @@ mkDerivationWith python3.pkgs.buildPythonApplication { ''; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "openshot-qt"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/applications/window-managers/hyprwm/hypr/default.nix b/pkgs/applications/window-managers/hyprwm/hypr/default.nix index e47dd2fde516..3a83551b6e51 100644 --- a/pkgs/applications/window-managers/hyprwm/hypr/default.nix +++ b/pkgs/applications/window-managers/hyprwm/hypr/default.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation (finalAttrs: { inherit (finalAttrs.src.meta) homepage; description = "Tiling X11 window manager written in modern C++"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; mainProgram = "Hypr"; }; diff --git a/pkgs/applications/window-managers/i3/lock-blur.nix b/pkgs/applications/window-managers/i3/lock-blur.nix index 56e21ba19407..53d5e178f185 100644 --- a/pkgs/applications/window-managers/i3/lock-blur.nix +++ b/pkgs/applications/window-managers/i3/lock-blur.nix @@ -34,7 +34,7 @@ i3lock-color.overrideAttrs (oldAttrs: rec { description = "Improved screenlocker based upon XCB and PAM with background blurring filter"; homepage = "https://github.com/karulont/i3lock-blur/"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/i3lock-blur.x86_64-darwin }; diff --git a/pkgs/build-support/trivial-builders/test/references/default.nix b/pkgs/build-support/trivial-builders/test/references/default.nix index df0366bf46ba..34137120d62a 100644 --- a/pkgs/build-support/trivial-builders/test/references/default.nix +++ b/pkgs/build-support/trivial-builders/test/references/default.nix @@ -92,7 +92,7 @@ let ; }; - meta = with lib; { + meta = { mainProgram = "references-test"; }; }); diff --git a/pkgs/by-name/_0/_0x/package.nix b/pkgs/by-name/_0/_0x/package.nix index a3df67a8de2b..0fd3db26bc5e 100644 --- a/pkgs/by-name/_0/_0x/package.nix +++ b/pkgs/by-name/_0/_0x/package.nix @@ -28,6 +28,6 @@ rustPlatform.buildRustPackage { description = "Colorful, configurable xxd"; mainProgram = "0x"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/_3/_3270font/package.nix b/pkgs/by-name/_3/_3270font/package.nix index bfa7ee538508..c11e106136f4 100644 --- a/pkgs/by-name/_3/_3270font/package.nix +++ b/pkgs/by-name/_3/_3270font/package.nix @@ -37,7 +37,7 @@ stdenvNoCC.mkDerivation rec { lib.licenses.bsd3 lib.licenses.ofl ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/_4/_4d-minesweeper/package.nix b/pkgs/by-name/_4/_4d-minesweeper/package.nix index e931445920c9..bb297d064b63 100644 --- a/pkgs/by-name/_4/_4d-minesweeper/package.nix +++ b/pkgs/by-name/_4/_4d-minesweeper/package.nix @@ -84,7 +84,7 @@ stdenv.mkDerivation { description = "4D Minesweeper game written in Godot"; license = lib.licenses.mpl20; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "4d-minesweeper"; }; } diff --git a/pkgs/by-name/_4/_4th/package.nix b/pkgs/by-name/_4/_4th/package.nix index d1a53633b670..b73c18fd613d 100644 --- a/pkgs/by-name/_4/_4th/package.nix +++ b/pkgs/by-name/_4/_4th/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Portable Forth compiler"; license = lib.licenses.lgpl3Plus; mainProgram = "4th"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/_4/_4ti2/package.nix b/pkgs/by-name/_4/_4ti2/package.nix index bb9fc9252f2d..50e952280963 100644 --- a/pkgs/by-name/_4/_4ti2/package.nix +++ b/pkgs/by-name/_4/_4ti2/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { homepage = "https://4ti2.github.io/"; description = "Software package for algebraic, geometric and combinatorial problems on linear spaces"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/_9/_9menu/package.nix b/pkgs/by-name/_9/_9menu/package.nix index 2329c41eaac7..916bfe05d6a8 100644 --- a/pkgs/by-name/_9/_9menu/package.nix +++ b/pkgs/by-name/_9/_9menu/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { description = "Simple X11 menu program for running commands"; mainProgram = "9menu"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = libX11.meta.platforms; }; } diff --git a/pkgs/by-name/a2/a2jmidid/package.nix b/pkgs/by-name/a2/a2jmidid/package.nix index 7fa64f740e50..33fd63528c9e 100644 --- a/pkgs/by-name/a2/a2jmidid/package.nix +++ b/pkgs/by-name/a2/a2jmidid/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { description = "Daemon for exposing legacy ALSA sequencer applications in JACK MIDI system"; homepage = "https://a2jmidid.ladish.org/"; license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/aa/aaphoto/package.nix b/pkgs/by-name/aa/aaphoto/package.nix index c79507711dae..45f3393abeff 100644 --- a/pkgs/by-name/aa/aaphoto/package.nix +++ b/pkgs/by-name/aa/aaphoto/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation { one-by-one. ''; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "aaphoto"; }; diff --git a/pkgs/by-name/ab/ab-av1/package.nix b/pkgs/by-name/ab/ab-av1/package.nix index 05f7714a3d5f..13eb8830fa8f 100644 --- a/pkgs/by-name/ab/ab-av1/package.nix +++ b/pkgs/by-name/ab/ab-av1/package.nix @@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/alexheretic/ab-av1"; changelog = "https://github.com/alexheretic/ab-av1/blob/${src.rev}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "ab-av1"; }; } diff --git a/pkgs/by-name/ac/accuraterip-checksum/package.nix b/pkgs/by-name/ac/accuraterip-checksum/package.nix index a72fa2f6ec48..6febd3179693 100644 --- a/pkgs/by-name/ac/accuraterip-checksum/package.nix +++ b/pkgs/by-name/ac/accuraterip-checksum/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { description = "Program for computing the AccurateRip checksum of singletrack WAV files"; homepage = "https://github.com/leo-bogert/accuraterip-checksum"; license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "accuraterip-checksum"; }; diff --git a/pkgs/by-name/ac/ace-of-penguins/package.nix b/pkgs/by-name/ac/ace-of-penguins/package.nix index 0fa2cf78c9f8..86dc3fa99891 100644 --- a/pkgs/by-name/ac/ace-of-penguins/package.nix +++ b/pkgs/by-name/ac/ace-of-penguins/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { Martin Thornquist). ''; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ac/acpi/package.nix b/pkgs/by-name/ac/acpi/package.nix index d6fbf82ec640..8b0117d7c008 100644 --- a/pkgs/by-name/ac/acpi/package.nix +++ b/pkgs/by-name/ac/acpi/package.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://sourceforge.net/projects/acpiclient/"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ac/acr/package.nix b/pkgs/by-name/ac/acr/package.nix index 88be3863f734..4bdb10639474 100644 --- a/pkgs/by-name/ac/acr/package.nix +++ b/pkgs/by-name/ac/acr/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: { m4. This means that ACR is faster, smaller and easy to use. ''; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ac/acsccid/package.nix b/pkgs/by-name/ac/acsccid/package.nix index 5e6864b1e21e..bbf1d10e00ab 100644 --- a/pkgs/by-name/ac/acsccid/package.nix +++ b/pkgs/by-name/ac/acsccid/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "http://acsccid.sourceforge.net"; license = lib.licenses.lgpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ad/adafruit-ampy/package.nix b/pkgs/by-name/ad/adafruit-ampy/package.nix index 74e7d8239d18..b1268c972717 100644 --- a/pkgs/by-name/ad/adafruit-ampy/package.nix +++ b/pkgs/by-name/ad/adafruit-ampy/package.nix @@ -31,7 +31,7 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/pycampers/ampy"; license = lib.licenses.mit; description = "Utility to interact with a MicroPython board over a serial connection"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "ampy"; }; } diff --git a/pkgs/by-name/ad/adminerevo/package.nix b/pkgs/by-name/ad/adminerevo/package.nix index 0ed80d3a4c3c..5a0fb733ea77 100644 --- a/pkgs/by-name/ad/adminerevo/package.nix +++ b/pkgs/by-name/ad/adminerevo/package.nix @@ -69,7 +69,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { asl20 gpl2Only ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ad/adrgen/package.nix b/pkgs/by-name/ad/adrgen/package.nix index 81b2b1581fcb..cd7ba5e5ec4d 100644 --- a/pkgs/by-name/ad/adrgen/package.nix +++ b/pkgs/by-name/ad/adrgen/package.nix @@ -29,7 +29,7 @@ buildGoModule rec { homepage = "https://github.com/asiermarques/adrgen"; description = "Command-line tool for generating and managing Architecture Decision Records"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "adrgen"; }; } diff --git a/pkgs/by-name/ae/aefs/package.nix b/pkgs/by-name/ae/aefs/package.nix index 52e11397f9c9..d6f7e54175d3 100644 --- a/pkgs/by-name/ae/aefs/package.nix +++ b/pkgs/by-name/ae/aefs/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation { meta = { homepage = "https://github.com/edolstra/aefs"; description = "Cryptographic filesystem implemented in userspace using FUSE"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.gpl2Plus; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/ae/aespipe/package.nix b/pkgs/by-name/ae/aespipe/package.nix index 14b4668a97bf..d0b52c57cdcb 100644 --- a/pkgs/by-name/ae/aespipe/package.nix +++ b/pkgs/by-name/ae/aespipe/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { description = "AES encrypting or decrypting pipe"; homepage = "https://loop-aes.sourceforge.net/aespipe.README"; license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/af/afterstep/package.nix b/pkgs/by-name/af/afterstep/package.nix index 7661e5264872..8cf78b248fa2 100644 --- a/pkgs/by-name/af/afterstep/package.nix +++ b/pkgs/by-name/af/afterstep/package.nix @@ -100,7 +100,7 @@ stdenv.mkDerivation (finalAttrs: { improving aestetics, and efficient use of system resources. ''; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "afterstep"; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/ai/airgeddon/package.nix b/pkgs/by-name/ai/airgeddon/package.nix index c1c34fcc6710..0059f1a35707 100644 --- a/pkgs/by-name/ai/airgeddon/package.nix +++ b/pkgs/by-name/ai/airgeddon/package.nix @@ -167,7 +167,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/v1s1t0r1sh3r3/airgeddon"; changelog = "https://github.com/v1s1t0r1sh3r3/airgeddon/blob/v${version}/CHANGELOG.md"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/al/algol68g/package.nix b/pkgs/by-name/al/algol68g/package.nix index 31549c54bf5e..c47c233cc77d 100644 --- a/pkgs/by-name/al/algol68g/package.nix +++ b/pkgs/by-name/al/algol68g/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "a68g"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/al/alisthelper/package.nix b/pkgs/by-name/al/alisthelper/package.nix index ee30224960e7..beb88f6738b6 100644 --- a/pkgs/by-name/al/alisthelper/package.nix +++ b/pkgs/by-name/al/alisthelper/package.nix @@ -71,7 +71,7 @@ flutter327.buildFlutterApplication { homepage = "https://github.com/Xmarmalade/alisthelper"; mainProgram = "alisthelper"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/am/amarok/package.nix b/pkgs/by-name/am/amarok/package.nix index cc6b535b0119..4c38ee22d342 100644 --- a/pkgs/by-name/am/amarok/package.nix +++ b/pkgs/by-name/am/amarok/package.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://amarok.kde.org"; description = "Powerful music player with an intuitive interface"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "amarok"; }; }) diff --git a/pkgs/by-name/am/ameba/package.nix b/pkgs/by-name/am/ameba/package.nix index 091dffa10bfc..c1ce7a669fad 100644 --- a/pkgs/by-name/am/ameba/package.nix +++ b/pkgs/by-name/am/ameba/package.nix @@ -25,6 +25,6 @@ crystal.buildCrystalPackage rec { homepage = "https://crystal-ameba.github.io"; changelog = "https://github.com/crystal-ameba/ameba/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/am/amiberry/package.nix b/pkgs/by-name/am/amiberry/package.nix index d712da77879d..5bae30e36630 100644 --- a/pkgs/by-name/am/amiberry/package.nix +++ b/pkgs/by-name/am/amiberry/package.nix @@ -103,7 +103,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Optimized Amiga emulator for Linux/macOS"; license = licenses.gpl3; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "amiberry"; }; }) diff --git a/pkgs/by-name/am/aml/package.nix b/pkgs/by-name/am/aml/package.nix index 1c7e23294721..2d8d9d553168 100644 --- a/pkgs/by-name/am/aml/package.nix +++ b/pkgs/by-name/am/aml/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { inherit (src.meta) homepage; license = licenses.isc; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; broken = stdenv.hostPlatform.isDarwin; }; } diff --git a/pkgs/by-name/am/amqpcat/package.nix b/pkgs/by-name/am/amqpcat/package.nix index db9595d2ba39..59aa993a491e 100644 --- a/pkgs/by-name/am/amqpcat/package.nix +++ b/pkgs/by-name/am/amqpcat/package.nix @@ -35,6 +35,6 @@ crystal.buildCrystalPackage rec { mainProgram = "amqpcat"; homepage = "https://github.com/cloudamqp/amqpcat"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/an/anthy/package.nix b/pkgs/by-name/an/anthy/package.nix index 9c7cf466705c..1d908acc8637 100644 --- a/pkgs/by-name/an/anthy/package.nix +++ b/pkgs/by-name/an/anthy/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { description = "Hiragana text to Kana Kanji mixed text Japanese input method"; homepage = "https://anthy.osdn.jp/"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; diff --git a/pkgs/by-name/an/antiprism/package.nix b/pkgs/by-name/an/antiprism/package.nix index fda9f1420808..bccf6309f79d 100644 --- a/pkgs/by-name/an/antiprism/package.nix +++ b/pkgs/by-name/an/antiprism/package.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.antiprism.com"; description = "Collection of programs for generating, manipulating, transforming and viewing polyhedra"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/an/anuko-time-tracker/package.nix b/pkgs/by-name/an/anuko-time-tracker/package.nix index 43170c55116f..21bddd461ea9 100644 --- a/pkgs/by-name/an/anuko-time-tracker/package.nix +++ b/pkgs/by-name/an/anuko-time-tracker/package.nix @@ -38,6 +38,6 @@ stdenvNoCC.mkDerivation { license = lib.licenses.sspl; homepage = "https://github.com/anuko/timetracker/"; platforms = php.meta.platforms; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/an/anydesk/package.nix b/pkgs/by-name/an/anydesk/package.nix index 805407ed17a0..4311d0366b21 100644 --- a/pkgs/by-name/an/anydesk/package.nix +++ b/pkgs/by-name/an/anydesk/package.nix @@ -148,6 +148,6 @@ stdenv.mkDerivation (finalAttrs: { sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ap/apache-orc/package.nix b/pkgs/by-name/ap/apache-orc/package.nix index b2c82e2872b5..c22580231973 100644 --- a/pkgs/by-name/ap/apache-orc/package.nix +++ b/pkgs/by-name/ap/apache-orc/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Smallest, fastest columnar storage for Hadoop workloads"; homepage = "https://github.com/apache/orc/"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ap/apkeep/package.nix b/pkgs/by-name/ap/apkeep/package.nix index 346f6d308a4e..a815bbf54fbf 100644 --- a/pkgs/by-name/ap/apkeep/package.nix +++ b/pkgs/by-name/ap/apkeep/package.nix @@ -34,7 +34,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/EFForg/apkeep"; changelog = "https://github.com/EFForg/apkeep/blob/${version}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "apkeep"; }; } diff --git a/pkgs/by-name/ap/apt-offline/package.nix b/pkgs/by-name/ap/apt-offline/package.nix index a230ddaffe32..8b396363357d 100644 --- a/pkgs/by-name/ap/apt-offline/package.nix +++ b/pkgs/by-name/ap/apt-offline/package.nix @@ -57,7 +57,7 @@ python3Packages.buildPythonApplication { description = "Offline APT package manager"; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "apt-offline"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } # TODO: verify GUI and pkexec diff --git a/pkgs/by-name/ap/apt/package.nix b/pkgs/by-name/ap/apt/package.nix index c8d570eaa882..d768636a6b89 100644 --- a/pkgs/by-name/ap/apt/package.nix +++ b/pkgs/by-name/ap/apt/package.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://salsa.debian.org/apt-team/apt/-/raw/${finalAttrs.version}/debian/changelog"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "apt"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ar/aranym/package.nix b/pkgs/by-name/ar/aranym/package.nix index 458cbb3ce673..435edc7d3274 100644 --- a/pkgs/by-name/ar/aranym/package.nix +++ b/pkgs/by-name/ar/aranym/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "aranym"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ar/arcan/package.nix b/pkgs/by-name/ar/arcan/package.nix index 6c0b6a8ef9b0..8be48491c5bb 100644 --- a/pkgs/by-name/ar/arcan/package.nix +++ b/pkgs/by-name/ar/arcan/package.nix @@ -205,7 +205,7 @@ stdenv.mkDerivation (finalAttrs: { gpl2Plus lgpl2Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ar/argagg/package.nix b/pkgs/by-name/ar/argagg/package.nix index b38cd986f77f..b38cbd6b3e45 100644 --- a/pkgs/by-name/ar/argagg/package.nix +++ b/pkgs/by-name/ar/argagg/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { pointers into the original command line argument C-strings. ''; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; badPlatforms = [ "aarch64-darwin" ]; }; diff --git a/pkgs/by-name/ar/argbash/package.nix b/pkgs/by-name/ar/argbash/package.nix index e52a630da532..1d8bcc797194 100644 --- a/pkgs/by-name/ar/argbash/package.nix +++ b/pkgs/by-name/ar/argbash/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://argbash.dev/"; description = "Bash argument parsing code generator"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ar/argtable/package.nix b/pkgs/by-name/ar/argtable/package.nix index 8a6a7b6c5314..68b6d12d3891 100644 --- a/pkgs/by-name/ar/argtable/package.nix +++ b/pkgs/by-name/ar/argtable/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { are essential but tedious to implement for a robust CLI program. ''; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/as/asciinema-automation/package.nix b/pkgs/by-name/as/asciinema-automation/package.nix index 4d36ae2ee51e..c746ce4e0f32 100644 --- a/pkgs/by-name/as/asciinema-automation/package.nix +++ b/pkgs/by-name/as/asciinema-automation/package.nix @@ -44,6 +44,6 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/PierreMarchand20/asciinema_automation"; license = lib.licenses.mit; mainProgram = "asciinema-automation"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/as/asciinema/package.nix b/pkgs/by-name/as/asciinema/package.nix index f84c93eb3faa..501afd19e897 100644 --- a/pkgs/by-name/as/asciinema/package.nix +++ b/pkgs/by-name/as/asciinema/package.nix @@ -29,7 +29,7 @@ python3Packages.buildPythonApplication rec { description = "Terminal session recorder and the best companion of asciinema.org"; homepage = "https://asciinema.org/"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; mainProgram = "asciinema"; }; diff --git a/pkgs/by-name/as/asl/package.nix b/pkgs/by-name/as/asl/package.nix index 0fa9c3fd75f7..76a49b805c94 100644 --- a/pkgs/by-name/as/asl/package.nix +++ b/pkgs/by-name/as/asl/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { are used in workstations and PCs. ''; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/as/aspino/package.nix b/pkgs/by-name/as/aspino/package.nix index 6a0ccf0a2c95..bf76293354d2 100644 --- a/pkgs/by-name/as/aspino/package.nix +++ b/pkgs/by-name/as/aspino/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation { meta = { description = "SAT/PseudoBoolean/MaxSat/ASP solver using glucose"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; license = lib.licenses.asl20; homepage = "https://alviano.net/software/maxino/"; diff --git a/pkgs/by-name/as/assh/package.nix b/pkgs/by-name/as/assh/package.nix index 8d7c9cc6db2e..f2c1effa3a67 100644 --- a/pkgs/by-name/as/assh/package.nix +++ b/pkgs/by-name/as/assh/package.nix @@ -46,7 +46,7 @@ buildGoModule rec { homepage = "https://github.com/moul/assh"; changelog = "https://github.com/moul/assh/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; linux ++ darwin; }; } diff --git a/pkgs/by-name/as/astrolabe-generator/package.nix b/pkgs/by-name/as/astrolabe-generator/package.nix index c82eaf7806a3..0fd9e2d8830e 100644 --- a/pkgs/by-name/as/astrolabe-generator/package.nix +++ b/pkgs/by-name/as/astrolabe-generator/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Java-based tool for generating EPS files for constructing astrolabes and related tools"; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; license = lib.licenses.gpl3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "AstrolabeGenerator"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/at/atari800/package.nix b/pkgs/by-name/at/atari800/package.nix index edf688511776..367feef63db6 100644 --- a/pkgs/by-name/at/atari800/package.nix +++ b/pkgs/by-name/at/atari800/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation (finalAttrs: { library. ''; license = with lib.licenses; [ gpl2Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/at/ataripp/package.nix b/pkgs/by-name/at/ataripp/package.nix index 27b42fa2e01e..427aac0c0c21 100644 --- a/pkgs/by-name/at/ataripp/package.nix +++ b/pkgs/by-name/at/ataripp/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { and the Atari 5200 game console. The emulator is auto-configurable and will compile on a variety of systems (Linux, Solaris, Irix). ''; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = with lib.licenses; [ gpl2Plus ]; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/at/atasm/package.nix b/pkgs/by-name/at/atasm/package.nix index d7483ec4cd2a..06545ebbd68c 100644 --- a/pkgs/by-name/at/atasm/package.nix +++ b/pkgs/by-name/at/atasm/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { description = "Commandline 6502 assembler compatible with Mac/65"; license = lib.licenses.gpl2Plus; changelog = "https://github.com/CycoPH/atasm/releases/tag/V${version}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/au/aurea/package.nix b/pkgs/by-name/au/aurea/package.nix index 8d3aba9f1902..35dff4fca67c 100644 --- a/pkgs/by-name/au/aurea/package.nix +++ b/pkgs/by-name/au/aurea/package.nix @@ -64,6 +64,6 @@ python3Packages.buildPythonApplication rec { mainProgram = "aurea"; platforms = lib.platforms.linux; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/au/autobase/package.nix b/pkgs/by-name/au/autobase/package.nix index 8ebad595c3e3..50b6d28773a1 100644 --- a/pkgs/by-name/au/autobase/package.nix +++ b/pkgs/by-name/au/autobase/package.nix @@ -33,7 +33,7 @@ buildNpmPackage (finalAttrs: { description = "Concise multiwriter for data structures with Hypercore"; homepage = "https://github.com/holepunchto/autobase"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; teams = with lib.teams; [ ngi ]; }; }) diff --git a/pkgs/by-name/au/automaticcomponenttoolkit/package.nix b/pkgs/by-name/au/automaticcomponenttoolkit/package.nix index ab3dd790aa06..acb21faaba5b 100644 --- a/pkgs/by-name/au/automaticcomponenttoolkit/package.nix +++ b/pkgs/by-name/au/automaticcomponenttoolkit/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { mainProgram = "act"; homepage = "https://github.com/Autodesk/AutomaticComponentToolkit"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; } diff --git a/pkgs/by-name/aw/awstats/package.nix b/pkgs/by-name/aw/awstats/package.nix index 2bc8b3cfea45..7121925070d7 100644 --- a/pkgs/by-name/aw/awstats/package.nix +++ b/pkgs/by-name/aw/awstats/package.nix @@ -27,7 +27,7 @@ perlPackages.buildPerlPackage rec { propagatedBuildOutputs = [ ]; # otherwise out propagates bin -> cycle - buildInputs = with perlPackages; [ ]; # plugins will need some + buildInputs = [ ]; # plugins will need some preConfigure = '' touch Makefile.PL diff --git a/pkgs/by-name/ay/ayatana-indicator-display/package.nix b/pkgs/by-name/ay/ayatana-indicator-display/package.nix index d4d24be8b052..9e8f69ad607b 100644 --- a/pkgs/by-name/ay/ayatana-indicator-display/package.nix +++ b/pkgs/by-name/ay/ayatana-indicator-display/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { cmake-extras lomiri-schemas # lomiri schema ]) - ++ (with mate; [ + ++ ([ mate.marco # marco schema mate.mate-settings-daemon # mate mouse schema ]); diff --git a/pkgs/by-name/az/azure-cli/extensions-manual.nix b/pkgs/by-name/az/azure-cli/extensions-manual.nix index abb5abef805b..af60b55b8caa 100644 --- a/pkgs/by-name/az/azure-cli/extensions-manual.nix +++ b/pkgs/by-name/az/azure-cli/extensions-manual.nix @@ -145,7 +145,7 @@ hash = "sha256-DOuH7BG4WrhP7SQH3GInFh7DHT0qN3JhSG76EXmNn24="; description = "Support for repairing Azure Virtual Machines"; propagatedBuildInputs = with python3Packages; [ opencensus ]; - meta.maintainers = with lib.maintainers; [ ]; + meta.maintainers = [ ]; }; } // lib.optionalAttrs config.allowAliases { diff --git a/pkgs/by-name/ba/backward-cpp/package.nix b/pkgs/by-name/ba/backward-cpp/package.nix index c7acd08002f5..44ce9e1d01d0 100644 --- a/pkgs/by-name/ba/backward-cpp/package.nix +++ b/pkgs/by-name/ba/backward-cpp/package.nix @@ -25,6 +25,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/bombela/backward-cpp"; license = lib.licenses.mit; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ba/barrage/package.nix b/pkgs/by-name/ba/barrage/package.nix index 5236b588d8f3..c07a8ddba810 100644 --- a/pkgs/by-name/ba/barrage/package.nix +++ b/pkgs/by-name/ba/barrage/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Destructive action game"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "barrage"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (SDL.meta) platforms; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ba/base16-shell-preview/package.nix b/pkgs/by-name/ba/base16-shell-preview/package.nix index a7a6dfcb11d1..0aeb2e267b04 100644 --- a/pkgs/by-name/ba/base16-shell-preview/package.nix +++ b/pkgs/by-name/ba/base16-shell-preview/package.nix @@ -31,6 +31,6 @@ python3Packages.buildPythonApplication { description = "Browse and preview Base16 Shell themes in your terminal"; mainProgram = "base16-shell-preview"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ba/bashly/package.nix b/pkgs/by-name/ba/bashly/package.nix index cf3041554ce3..5431b9c67c72 100644 --- a/pkgs/by-name/ba/bashly/package.nix +++ b/pkgs/by-name/ba/bashly/package.nix @@ -17,7 +17,7 @@ bundlerApp { homepage = "https://github.com/DannyBen/bashly"; license = lib.licenses.mit; mainProgram = "bashly"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ba/basu/package.nix b/pkgs/by-name/ba/basu/package.nix index 24e27ff19c20..d78f0a98730c 100644 --- a/pkgs/by-name/ba/basu/package.nix +++ b/pkgs/by-name/ba/basu/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Sd-bus library, extracted from systemd"; mainProgram = "basuctl"; license = lib.licenses.lgpl21Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/be/beebeep/package.nix b/pkgs/by-name/be/beebeep/package.nix index 46685ced4f12..95c08c03ae5f 100644 --- a/pkgs/by-name/be/beebeep/package.nix +++ b/pkgs/by-name/be/beebeep/package.nix @@ -37,6 +37,6 @@ stdenv.mkDerivation rec { mainProgram = "beebeep"; platforms = lib.platforms.linux; license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/bi/bibletime/package.nix b/pkgs/by-name/bi/bibletime/package.nix index c429d45273ce..bc9fb7836e05 100644 --- a/pkgs/by-name/bi/bibletime/package.nix +++ b/pkgs/by-name/bi/bibletime/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Powerful cross platform Bible study tool"; license = lib.licenses.gpl2Plus; mainProgram = "bibletime"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bi/bigpemu/package.nix b/pkgs/by-name/bi/bigpemu/package.nix index 6832de3b5d58..320783d687ae 100644 --- a/pkgs/by-name/bi/bigpemu/package.nix +++ b/pkgs/by-name/bi/bigpemu/package.nix @@ -43,7 +43,7 @@ buildFHSEnv { tombert hughobrien ]; - platforms = with lib.platforms; [ "x86_64-linux" ]; + platforms = [ "x86_64-linux" ]; }; runScript = "${bigpemu-unwrapped}/bin/bigpemu"; passthru = { diff --git a/pkgs/by-name/bi/biliup-rs/package.nix b/pkgs/by-name/bi/biliup-rs/package.nix index 4e99a97e6aee..4ccdd69ab9d6 100644 --- a/pkgs/by-name/bi/biliup-rs/package.nix +++ b/pkgs/by-name/bi/biliup-rs/package.nix @@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec { description = "CLI tool for uploading videos to Bilibili"; homepage = "https://biliup.github.io/biliup-rs"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "biliup"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/bi/bind/package.nix b/pkgs/by-name/bi/bind/package.nix index 513df4ba2dcc..4d506f669dd6 100644 --- a/pkgs/by-name/bi/bind/package.nix +++ b/pkgs/by-name/bi/bind/package.nix @@ -166,7 +166,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://downloads.isc.org/isc/bind9/cur/${lib.versions.majorMinor finalAttrs.version}/doc/arm/html/notes.html#notes-for-bind-${ lib.replaceStrings [ "." ] [ "-" ] finalAttrs.version }"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; outputsToInstall = [ diff --git a/pkgs/by-name/bi/bingo/package.nix b/pkgs/by-name/bi/bingo/package.nix index 3fae35e7114c..91fb2c200f5f 100644 --- a/pkgs/by-name/bi/bingo/package.nix +++ b/pkgs/by-name/bi/bingo/package.nix @@ -33,6 +33,6 @@ buildGoModule (finalAttrs: { mainProgram = "bingo"; homepage = "https://github.com/bwplotka/bingo"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/bi/biplanes-revival/package.nix b/pkgs/by-name/bi/biplanes-revival/package.nix index 4a04c5e35df2..7dc51434053a 100644 --- a/pkgs/by-name/bi/biplanes-revival/package.nix +++ b/pkgs/by-name/bi/biplanes-revival/package.nix @@ -69,6 +69,6 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/regular-dev/biplanes-revival/releases/tag/v${finalAttrs.version}"; license = lib.licenses.gpl3Only; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/bi/bitcomet/package.nix b/pkgs/by-name/bi/bitcomet/package.nix index bd68ae671bef..40395e291687 100644 --- a/pkgs/by-name/bi/bitcomet/package.nix +++ b/pkgs/by-name/bi/bitcomet/package.nix @@ -24,7 +24,7 @@ let "aarch64-linux" "x86_64-linux" ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; bitcomet = stdenvNoCC.mkDerivation { diff --git a/pkgs/by-name/bl/blackfire/package.nix b/pkgs/by-name/bl/blackfire/package.nix index 0114bf9959f2..3fa51eec49e3 100644 --- a/pkgs/by-name/bl/blackfire/package.nix +++ b/pkgs/by-name/bl/blackfire/package.nix @@ -107,7 +107,7 @@ stdenv.mkDerivation rec { homepage = "https://blackfire.io/"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/bl/blackfire/php-probe.nix b/pkgs/by-name/bl/blackfire/php-probe.nix index 6d52fb855735..531d21ac4992 100644 --- a/pkgs/by-name/bl/blackfire/php-probe.nix +++ b/pkgs/by-name/bl/blackfire/php-probe.nix @@ -156,7 +156,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Blackfire Profiler PHP module"; homepage = "https://blackfire.io/"; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/bl/blockattack/package.nix b/pkgs/by-name/bl/blockattack/package.nix index 961844da41bd..5f866a0e7470 100644 --- a/pkgs/by-name/bl/blockattack/package.nix +++ b/pkgs/by-name/bl/blockattack/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/blockattack/blockattack-game/blob/${finalAttrs.src.rev}/CHANGELOG.md"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "blockattack"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (SDL2.meta) platforms; }; }) diff --git a/pkgs/by-name/bl/bluejay/package.nix b/pkgs/by-name/bl/bluejay/package.nix index 939d348ae361..c00bf78935e9 100644 --- a/pkgs/by-name/bl/bluejay/package.nix +++ b/pkgs/by-name/bl/bluejay/package.nix @@ -48,6 +48,6 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/EbonJaeger/bluejay/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mpl20; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/bl/bluemail/package.nix b/pkgs/by-name/bl/bluemail/package.nix index 80535baaf553..29ff5c5a5997 100644 --- a/pkgs/by-name/bl/bluemail/package.nix +++ b/pkgs/by-name/bl/bluemail/package.nix @@ -122,7 +122,7 @@ stdenv.mkDerivation rec { platforms = [ "x86_64-linux" ]; # Vendored copy of Electron. sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "bluemail"; }; } diff --git a/pkgs/by-name/bl/bluez-headers/package.nix b/pkgs/by-name/bl/bluez-headers/package.nix index e9ee013982e5..2ac0d24640fb 100644 --- a/pkgs/by-name/bl/bluez-headers/package.nix +++ b/pkgs/by-name/bl/bluez-headers/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { lgpl21Plus mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bl/bluez-tools/package.nix b/pkgs/by-name/bl/bluez-tools/package.nix index 916ad45949b6..66ddbe928818 100644 --- a/pkgs/by-name/bl/bluez-tools/package.nix +++ b/pkgs/by-name/bl/bluez-tools/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Set of tools to manage bluetooth devices for linux"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "bt-agent"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bo/boehmgc/package.nix b/pkgs/by-name/bo/boehmgc/package.nix index 25531f535700..090b08f8bf8b 100644 --- a/pkgs/by-name/bo/boehmgc/package.nix +++ b/pkgs/by-name/bo/boehmgc/package.nix @@ -116,7 +116,7 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://github.com/bdwgc/bdwgc/blob/v${finalAttrs.version}/ChangeLog"; license = lib.licenses.boehmGC; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/bq/bqn/package.nix b/pkgs/by-name/bq/bqn/package.nix index 7b7fed4a3211..28dac55e2b6c 100644 --- a/pkgs/by-name/bq/bqn/package.nix +++ b/pkgs/by-name/bq/bqn/package.nix @@ -56,7 +56,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/mlochbaum/BQN/"; description = "Original BQN implementation in Javascript"; license = lib.licenses.isc; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (nodejs.meta) platforms; }; }) diff --git a/pkgs/by-name/br/brill/package.nix b/pkgs/by-name/br/brill/package.nix index 0fd0c940a839..a077e5a1c169 100644 --- a/pkgs/by-name/br/brill/package.nix +++ b/pkgs/by-name/br/brill/package.nix @@ -14,7 +14,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { stripRoot = false; }; - installPhase = with finalAttrs; '' + installPhase = '' runHook preInstall install -Dm644 *.ttf -t $out/share/fonts/truetype diff --git a/pkgs/by-name/br/brmodelo/package.nix b/pkgs/by-name/br/brmodelo/package.nix index 05091a73916c..823c6fc8067c 100644 --- a/pkgs/by-name/br/brmodelo/package.nix +++ b/pkgs/by-name/br/brmodelo/package.nix @@ -127,6 +127,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/chcandido/brModelo"; license = licenses.gpl3; mainProgram = "brmodelo"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/bs/bsd-finger/package.nix b/pkgs/by-name/bs/bsd-finger/package.nix index 7de8e315673f..8f0a22079ca3 100644 --- a/pkgs/by-name/bs/bsd-finger/package.nix +++ b/pkgs/by-name/bs/bsd-finger/package.nix @@ -203,7 +203,7 @@ stdenv.mkDerivation (finalAttrs: { "daemon" = "fingerd"; } .${buildProduct}; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/bt/btanks/package.nix b/pkgs/by-name/bt/btanks/package.nix index 795733f2a24b..6a57edbf9744 100644 --- a/pkgs/by-name/bt/btanks/package.nix +++ b/pkgs/by-name/bt/btanks/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Fast 2d tank arcade game with multiplayer and split-screen modes"; license = lib.licenses.gpl2Plus; mainProgram = "btanks"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (SDL.meta) platforms; }; }) diff --git a/pkgs/by-name/bu/butterfly/package.nix b/pkgs/by-name/bu/butterfly/package.nix index 9a995e94e39b..e8b779136f3e 100644 --- a/pkgs/by-name/bu/butterfly/package.nix +++ b/pkgs/by-name/bu/butterfly/package.nix @@ -64,7 +64,7 @@ flutter335.buildFlutterApplication { cc-by-sa-40 asl20 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/by/byacc/package.nix b/pkgs/by-name/by/byacc/package.nix index 9eb54ff223bf..efb7dc07077d 100644 --- a/pkgs/by-name/by/byacc/package.nix +++ b/pkgs/by-name/by/byacc/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://invisible-island.net/byacc/CHANGES.html"; license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/by/byobu/package.nix b/pkgs/by-name/by/byobu/package.nix index 42dbc0613f90..df1b769f2b7d 100644 --- a/pkgs/by-name/by/byobu/package.nix +++ b/pkgs/by-name/by/byobu/package.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "byobu"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ca/cage/package.nix b/pkgs/by-name/ca/cage/package.nix index 842dd037d028..a113607dbd5e 100644 --- a/pkgs/by-name/ca/cage/package.nix +++ b/pkgs/by-name/ca/cage/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.hjdskes.nl/projects/cage/"; license = lib.licenses.mit; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "cage"; }; }) diff --git a/pkgs/by-name/ca/cagebreak/package.nix b/pkgs/by-name/ca/cagebreak/package.nix index b0611707e04f..49601ee280cf 100644 --- a/pkgs/by-name/ca/cagebreak/package.nix +++ b/pkgs/by-name/ca/cagebreak/package.nix @@ -87,7 +87,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/project-repo/cagebreak"; description = "Wayland tiling compositor inspired by ratpoison"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; changelog = "https://github.com/project-repo/cagebreak/blob/${finalAttrs.version}/Changelog.md"; mainProgram = "cagebreak"; diff --git a/pkgs/by-name/ca/calcoo/package.nix b/pkgs/by-name/ca/calcoo/package.nix index b65c7cb11827..3c575b821ae6 100644 --- a/pkgs/by-name/ca/calcoo/package.nix +++ b/pkgs/by-name/ca/calcoo/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://calcoo.sourceforge.net/"; license = lib.licenses.gpl2Plus; mainProgram = "calcoo"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (jdk.meta) platforms; }; }) diff --git a/pkgs/by-name/ca/calculix-ccx/package.nix b/pkgs/by-name/ca/calculix-ccx/package.nix index 4d59d0d99524..b9ddbcee6242 100644 --- a/pkgs/by-name/ca/calculix-ccx/package.nix +++ b/pkgs/by-name/ca/calculix-ccx/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { description = "Three-dimensional structural finite element program"; mainProgram = "ccx"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ca/cargo-ndk/package.nix b/pkgs/by-name/ca/cargo-ndk/package.nix index e211eee2c96d..ebc57d155a6f 100644 --- a/pkgs/by-name/ca/cargo-ndk/package.nix +++ b/pkgs/by-name/ca/cargo-ndk/package.nix @@ -25,6 +25,6 @@ rustPlatform.buildRustPackage rec { asl20 # or mit ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/cargo-shear/package.nix b/pkgs/by-name/ca/cargo-shear/package.nix index 142beb204997..e87f68db14ac 100644 --- a/pkgs/by-name/ca/cargo-shear/package.nix +++ b/pkgs/by-name/ca/cargo-shear/package.nix @@ -33,6 +33,6 @@ rustPlatform.buildRustPackage { homepage = "https://github.com/Boshen/cargo-shear"; changelog = "https://github.com/Boshen/cargo-shear/blob/v${version}/CHANGELOG.md"; license = [ lib.licenses.mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ca/casilda/package.nix b/pkgs/by-name/ca/casilda/package.nix index 2fdb2017b70b..a33a2b0233fa 100644 --- a/pkgs/by-name/ca/casilda/package.nix +++ b/pkgs/by-name/ca/casilda/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: { meta = { homepage = "https://gitlab.gnome.org/jpu/casilda"; description = "Simple Wayland compositor widget for Gtk 4 which can be used to embed other processes windows in Gtk 4 application"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.lgpl21Plus; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/ca/cat9/package.nix b/pkgs/by-name/ca/cat9/package.nix index 293de88569c2..87ab4e51f3f7 100644 --- a/pkgs/by-name/ca/cat9/package.nix +++ b/pkgs/by-name/ca/cat9/package.nix @@ -32,7 +32,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/letoram/cat9"; description = "User shell for LASH"; license = with lib.licenses; [ unlicense ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ca/catamaran/package.nix b/pkgs/by-name/ca/catamaran/package.nix index a7157cc71d38..66fcb9a16f4e 100644 --- a/pkgs/by-name/ca/catamaran/package.nix +++ b/pkgs/by-name/ca/catamaran/package.nix @@ -37,6 +37,6 @@ stdenvNoCC.mkDerivation { ''; license = licenses.ofl; platforms = platforms.all; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/cb/cbftp/package.nix b/pkgs/by-name/cb/cbftp/package.nix index b4f429211cf0..c7d38a575fe3 100644 --- a/pkgs/by-name/cb/cbftp/package.nix +++ b/pkgs/by-name/cb/cbftp/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { semi-graphical user interface through ncurses. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/cc/cc65/package.nix b/pkgs/by-name/cc/cc65/package.nix index 26dfb5a45b92..a5444ee5adc7 100644 --- a/pkgs/by-name/cc/cc65/package.nix +++ b/pkgs/by-name/cc/cc65/package.nix @@ -56,7 +56,7 @@ gccStdenv.mkDerivation rec { shouldn't be too much work. ''; license = licenses.zlib; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ce/celeste64/package.nix b/pkgs/by-name/ce/celeste64/package.nix index 0fd0850ecdaf..2fb6ec64b711 100644 --- a/pkgs/by-name/ce/celeste64/package.nix +++ b/pkgs/by-name/ce/celeste64/package.nix @@ -83,7 +83,7 @@ buildDotnetModule rec { "aarch64-linux" "armv7l-linux" ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "Celeste64"; homepage = "https://github.com/ExOK/Celeste64"; description = "Celeste 64: Fragments of the Mountain"; diff --git a/pkgs/by-name/ce/cent/package.nix b/pkgs/by-name/ce/cent/package.nix index 9706182283b0..2e9de4e55b7a 100644 --- a/pkgs/by-name/ce/cent/package.nix +++ b/pkgs/by-name/ce/cent/package.nix @@ -27,7 +27,7 @@ buildGoModule rec { homepage = "https://github.com/xm1k3/cent"; changelog = "https://github.com/xm1k3/cent/releases/tag/v${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "cent"; }; } diff --git a/pkgs/by-name/ce/cereal_1_3_0/package.nix b/pkgs/by-name/ce/cereal_1_3_0/package.nix index d1fb82a6267d..2f433d7f268e 100644 --- a/pkgs/by-name/ce/cereal_1_3_0/package.nix +++ b/pkgs/by-name/ce/cereal_1_3_0/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Header-only C++11 serialization library"; changelog = "https://github.com/USCiLab/cereal/releases/tag/v${finalAttrs.version}"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ce/cereal_1_3_2/package.nix b/pkgs/by-name/ce/cereal_1_3_2/package.nix index eaf481144c2c..2621ae387a2c 100644 --- a/pkgs/by-name/ce/cereal_1_3_2/package.nix +++ b/pkgs/by-name/ce/cereal_1_3_2/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Header-only C++11 serialization library"; changelog = "https://github.com/USCiLab/cereal/releases/tag/v${finalAttrs.version}"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/cf/cfripper/package.nix b/pkgs/by-name/cf/cfripper/package.nix index 6f99054e4fc8..86eb84d06828 100644 --- a/pkgs/by-name/cf/cfripper/package.nix +++ b/pkgs/by-name/cf/cfripper/package.nix @@ -25,7 +25,7 @@ python3.pkgs.buildPythonApplication rec { setuptools-scm ]; - nativeBuildInputs = with python3.pkgs; [ + nativeBuildInputs = [ ]; dependencies = with python3.pkgs; [ diff --git a/pkgs/by-name/ch/chatmcp/package.nix b/pkgs/by-name/ch/chatmcp/package.nix index 272fe966d002..31c4db7ccf7e 100644 --- a/pkgs/by-name/ch/chatmcp/package.nix +++ b/pkgs/by-name/ch/chatmcp/package.nix @@ -65,6 +65,6 @@ flutter332.buildFlutterApplication rec { mainProgram = "chatmcp"; license = lib.licenses.asl20; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ch/chawan/package.nix b/pkgs/by-name/ch/chawan/package.nix index 33d3bc4ae4a8..a1ea2d0cbc56 100644 --- a/pkgs/by-name/ch/chawan/package.nix +++ b/pkgs/by-name/ch/chawan/package.nix @@ -88,7 +88,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://git.sr.ht/~bptato/chawan/refs/v${finalAttrs.version}"; license = lib.licenses.unlicense; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "cha"; }; }) diff --git a/pkgs/by-name/ch/chcase/package.nix b/pkgs/by-name/ch/chcase/package.nix index b555d4f5907f..59d782edfc26 100644 --- a/pkgs/by-name/ch/chcase/package.nix +++ b/pkgs/by-name/ch/chcase/package.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation (finalAttrs: { description = "Small library to convert case of a given string"; license = lib.licenses.lgpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ch/chemacs2/package.nix b/pkgs/by-name/ch/chemacs2/package.nix index 1446fbb08ec7..9bce24384d04 100644 --- a/pkgs/by-name/ch/chemacs2/package.nix +++ b/pkgs/by-name/ch/chemacs2/package.nix @@ -45,7 +45,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { Think of it as a bootloader for Emacs. ''; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ch/chemtool/package.nix b/pkgs/by-name/ch/chemtool/package.nix index 809fefab6321..a3d57e1213ff 100644 --- a/pkgs/by-name/ch/chemtool/package.nix +++ b/pkgs/by-name/ch/chemtool/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { hexagonal backdrop grids for easier alignment. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ch/cherry-studio/package.nix b/pkgs/by-name/ch/cherry-studio/package.nix index cfb6e9e278ad..2c02468c7299 100644 --- a/pkgs/by-name/ch/cherry-studio/package.nix +++ b/pkgs/by-name/ch/cherry-studio/package.nix @@ -114,7 +114,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/CherryHQ/cherry-studio/releases/tag/v${finalAttrs.version}"; mainProgram = "cherry-studio"; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = with lib.licenses; [ agpl3Only ]; }; }) diff --git a/pkgs/by-name/ch/chezmoi/package.nix b/pkgs/by-name/ch/chezmoi/package.nix index d179311b21cd..4716ccdf019c 100644 --- a/pkgs/by-name/ch/chezmoi/package.nix +++ b/pkgs/by-name/ch/chezmoi/package.nix @@ -44,7 +44,7 @@ buildGo125Module (finalAttrs: { homepage = "https://www.chezmoi.io/"; changelog = "https://github.com/twpayne/chezmoi/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "chezmoi"; }; }) diff --git a/pkgs/by-name/ch/chromium-bsu/package.nix b/pkgs/by-name/ch/chromium-bsu/package.nix index 56dd8ba10bfe..84e57c61ab1d 100644 --- a/pkgs/by-name/ch/chromium-bsu/package.nix +++ b/pkgs/by-name/ch/chromium-bsu/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { description = "Fast paced, arcade-style, top-scrolling space shooter"; mainProgram = "chromium-bsu"; license = licenses.artistic1; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ch/chsrc/package.nix b/pkgs/by-name/ch/chsrc/package.nix index 78fa9b327a8b..4a6cf1ce92ae 100644 --- a/pkgs/by-name/ch/chsrc/package.nix +++ b/pkgs/by-name/ch/chsrc/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { gpl3Plus mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; mainProgram = "chsrc"; }; diff --git a/pkgs/by-name/ci/ciano/package.nix b/pkgs/by-name/ci/ciano/package.nix index 650526eec16f..db6b1b7b84d6 100644 --- a/pkgs/by-name/ci/ciano/package.nix +++ b/pkgs/by-name/ci/ciano/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/robertsanseries/ciano"; description = "Multimedia file converter focused on simplicity"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/cl/clair/package.nix b/pkgs/by-name/cl/clair/package.nix index 1ea22716e0ca..d8e40cd14af4 100644 --- a/pkgs/by-name/cl/clair/package.nix +++ b/pkgs/by-name/cl/clair/package.nix @@ -50,6 +50,6 @@ buildGoModule rec { homepage = "https://github.com/quay/clair"; changelog = "https://github.com/quay/clair/blob/v${version}/CHANGELOG.md"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/cl/clashtui/package.nix b/pkgs/by-name/cl/clashtui/package.nix index 4e513703be9d..086aec1809be 100644 --- a/pkgs/by-name/cl/clashtui/package.nix +++ b/pkgs/by-name/cl/clashtui/package.nix @@ -45,6 +45,6 @@ rustPlatform.buildRustPackage rec { mainProgram = "clashtui"; license = lib.licenses.mit; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/cl/clblas/package.nix b/pkgs/by-name/cl/clblas/package.nix index a168188c8d2d..e284e350b80f 100644 --- a/pkgs/by-name/cl/clblas/package.nix +++ b/pkgs/by-name/cl/clblas/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { This package contains a library of BLAS functions on top of OpenCL. ''; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; diff --git a/pkgs/by-name/cl/clevis/package.nix b/pkgs/by-name/cl/clevis/package.nix index 61c85751299d..a71ac5485cf5 100644 --- a/pkgs/by-name/cl/clevis/package.nix +++ b/pkgs/by-name/cl/clevis/package.nix @@ -125,6 +125,6 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://github.com/latchset/clevis/releases/tag/v${finalAttrs.version}"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/cl/cloud-nuke/package.nix b/pkgs/by-name/cl/cloud-nuke/package.nix index 600fc8a98bb3..ea1ad5cb8345 100644 --- a/pkgs/by-name/cl/cloud-nuke/package.nix +++ b/pkgs/by-name/cl/cloud-nuke/package.nix @@ -40,6 +40,6 @@ buildGoModule rec { mainProgram = "cloud-nuke"; changelog = "https://github.com/gruntwork-io/cloud-nuke/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/cl/cloudflare-ddns/package.nix b/pkgs/by-name/cl/cloudflare-ddns/package.nix index 477a10e4f221..618ee55a3164 100644 --- a/pkgs/by-name/cl/cloudflare-ddns/package.nix +++ b/pkgs/by-name/cl/cloudflare-ddns/package.nix @@ -29,7 +29,7 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/favonia/cloudflare-ddns"; mainProgram = "ddns"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix ++ platforms.darwin; }; }) diff --git a/pkgs/by-name/cm/cmph/package.nix b/pkgs/by-name/cm/cmph/package.nix index 42cda24f7625..6b542253c669 100644 --- a/pkgs/by-name/cm/cmph/package.nix +++ b/pkgs/by-name/cm/cmph/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation (finalAttrs: { mpl11 ]; mainProgram = "cmph"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; }; }) diff --git a/pkgs/by-name/co/coin3d/package.nix b/pkgs/by-name/co/coin3d/package.nix index 6550b8e3095c..3e3d42799c5c 100644 --- a/pkgs/by-name/co/coin3d/package.nix +++ b/pkgs/by-name/co/coin3d/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { description = "High-level, retained-mode toolkit for effective 3D graphics development"; mainProgram = "coin-config"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux ++ platforms.darwin; }; }) diff --git a/pkgs/by-name/co/connman/package.nix b/pkgs/by-name/co/connman/package.nix index 7990bf6dbef3..a9aadfe851b1 100644 --- a/pkgs/by-name/co/connman/package.nix +++ b/pkgs/by-name/co/connman/package.nix @@ -192,7 +192,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://git.kernel.org/pub/scm/network/connman/connman.git/about/"; license = lib.licenses.gpl2Only; mainProgram = "connmanctl"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/co/containerlab/package.nix b/pkgs/by-name/co/containerlab/package.nix index cf3a9f78c8f2..63b181c26168 100644 --- a/pkgs/by-name/co/containerlab/package.nix +++ b/pkgs/by-name/co/containerlab/package.nix @@ -59,7 +59,7 @@ buildGoModule (finalAttrs: { changelog = "https://github.com/srl-labs/containerlab/releases/tag/v${finalAttrs.version}"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "containerlab"; }; }) diff --git a/pkgs/by-name/co/convbin/package.nix b/pkgs/by-name/co/convbin/package.nix index 3812fbf4d810..57ee6f63c737 100644 --- a/pkgs/by-name/co/convbin/package.nix +++ b/pkgs/by-name/co/convbin/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/mateoconlechuga/convbin"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; mainProgram = "convbin"; }; diff --git a/pkgs/by-name/co/converseen/package.nix b/pkgs/by-name/co/converseen/package.nix index c010e06996b5..0f7e90a87f78 100644 --- a/pkgs/by-name/co/converseen/package.nix +++ b/pkgs/by-name/co/converseen/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://converseen.fasterland.net/"; changelog = "https://github.com/Faster3ck/Converseen/blob/${finalAttrs.src.rev}/CHANGELOG"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "converseen"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/co/convfont/package.nix b/pkgs/by-name/co/convfont/package.nix index dd1423897667..d651090bc735 100644 --- a/pkgs/by-name/co/convfont/package.nix +++ b/pkgs/by-name/co/convfont/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { description = "Converts font for use with FontLibC"; homepage = "https://github.com/drdnar/convfont"; license = lib.licenses.unfree; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; mainProgram = "convfont"; }; diff --git a/pkgs/by-name/co/convimg/package.nix b/pkgs/by-name/co/convimg/package.nix index daa889c19110..fdff4f803403 100644 --- a/pkgs/by-name/co/convimg/package.nix +++ b/pkgs/by-name/co/convimg/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/mateoconlechuga/convimg"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "convimg"; }; diff --git a/pkgs/by-name/co/copacetic/package.nix b/pkgs/by-name/co/copacetic/package.nix index 486c3af66c43..062f5f209e97 100644 --- a/pkgs/by-name/co/copacetic/package.nix +++ b/pkgs/by-name/co/copacetic/package.nix @@ -78,6 +78,6 @@ buildGoModule rec { changelog = "https://github.com/project-copacetic/copacetic/releases/tag/${src.tag}"; license = lib.licenses.asl20; mainProgram = "copa"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/cr/crcpp/package.nix b/pkgs/by-name/cr/crcpp/package.nix index 5e920f56e81c..fdc0b20661ab 100644 --- a/pkgs/by-name/cr/crcpp/package.nix +++ b/pkgs/by-name/cr/crcpp/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { changelog = "https://github.com/d-bahr/CRCpp/releases/tag/release-${version}"; description = "Easy to use and fast C++ CRC library"; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.bsd3; }; } diff --git a/pkgs/by-name/cr/cronie/package.nix b/pkgs/by-name/cr/cronie/package.nix index 068c4f0ca63f..1b58dee72120 100644 --- a/pkgs/by-name/cr/cronie/package.nix +++ b/pkgs/by-name/cr/cronie/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { lgpl21Plus ]; mainProgram = "crond"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/cs/csvkit/package.nix b/pkgs/by-name/cs/csvkit/package.nix index 1c69c0be9d9e..52cf8a05e350 100644 --- a/pkgs/by-name/cs/csvkit/package.nix +++ b/pkgs/by-name/cs/csvkit/package.nix @@ -38,6 +38,6 @@ python3Packages.buildPythonApplication rec { description = "Suite of command-line tools for converting to and working with CSV"; changelog = "https://github.com/wireservice/csvkit/blob/${version}/CHANGELOG.rst"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ct/ctx/package.nix b/pkgs/by-name/ct/ctx/package.nix index d93ef15d33c8..9c3d9f487197 100644 --- a/pkgs/by-name/ct/ctx/package.nix +++ b/pkgs/by-name/ct/ctx/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { a vector graphics protocol. ''; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/cu/cue2pops/package.nix b/pkgs/by-name/cu/cue2pops/package.nix index d54c400cdee9..795f89678aa3 100644 --- a/pkgs/by-name/cu/cue2pops/package.nix +++ b/pkgs/by-name/cu/cue2pops/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation { # Upstream license is unclear. # license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; mainProgram = "cue2pops"; }; diff --git a/pkgs/by-name/cy/cyberpunk-neon/package.nix b/pkgs/by-name/cy/cyberpunk-neon/package.nix index 9c209040827b..bef9ca3d5dac 100644 --- a/pkgs/by-name/cy/cyberpunk-neon/package.nix +++ b/pkgs/by-name/cy/cyberpunk-neon/package.nix @@ -55,7 +55,7 @@ stdenvNoCC.mkDerivation { homepage = "https://github.com/Roboron3042/Cyberpunk-Neon"; description = "Neon themes for many programs"; license = lib.licenses.cc-by-sa-40; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/da/dav1d/package.nix b/pkgs/by-name/da/dav1d/package.nix index 9fb04cd742f0..23d72c245d00 100644 --- a/pkgs/by-name/da/dav1d/package.nix +++ b/pkgs/by-name/da/dav1d/package.nix @@ -88,6 +88,6 @@ stdenv.mkDerivation rec { # More technical: https://code.videolan.org/videolan/dav1d/blob/${version}/NEWS license = lib.licenses.bsd2; platforms = lib.platforms.unix ++ lib.platforms.windows; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/db/dbx/package.nix b/pkgs/by-name/db/dbx/package.nix index b60adf4ba21f..29d90cd8eafa 100644 --- a/pkgs/by-name/db/dbx/package.nix +++ b/pkgs/by-name/db/dbx/package.nix @@ -157,6 +157,6 @@ python.pkgs.buildPythonApplication rec { homepage = "https://github.com/databrickslabs/dbx"; changelog = "https://github.com/databrickslabs/dbx/blob/v${version}/CHANGELOG.md"; license = lib.licenses.databricks-dbx; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/dd/ddsmt/package.nix b/pkgs/by-name/dd/ddsmt/package.nix index 74616fd67e15..22e4cf83a734 100644 --- a/pkgs/by-name/dd/ddsmt/package.nix +++ b/pkgs/by-name/dd/ddsmt/package.nix @@ -31,6 +31,6 @@ python3Packages.buildPythonApplication { description = "Delta debugger for SMT benchmarks in SMT-LIB v2"; homepage = "https://ddsmt.readthedocs.io/"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/de/debianutils/package.nix b/pkgs/by-name/de/debianutils/package.nix index 81c33f25712a..599ae6b0a1eb 100644 --- a/pkgs/by-name/de/debianutils/package.nix +++ b/pkgs/by-name/de/debianutils/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { smail ]; mainProgram = "ischroot"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/de/deckmaster/package.nix b/pkgs/by-name/de/deckmaster/package.nix index 7972037fad9c..9ecad408a328 100644 --- a/pkgs/by-name/de/deckmaster/package.nix +++ b/pkgs/by-name/de/deckmaster/package.nix @@ -42,7 +42,7 @@ buildGoModule rec { homepage = "https://github.com/muesli/deckmaster"; changelog = "https://github.com/muesli/deckmaster/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/de/departure-mono/package.nix b/pkgs/by-name/de/departure-mono/package.nix index 5516d0f5d098..79233805a8db 100644 --- a/pkgs/by-name/de/departure-mono/package.nix +++ b/pkgs/by-name/de/departure-mono/package.nix @@ -32,6 +32,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://departuremono.com/"; license = lib.licenses.ofl; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/dg/dgen-sdl/package.nix b/pkgs/by-name/dg/dgen-sdl/package.nix index 00dfc5471012..bb23f0687aa5 100644 --- a/pkgs/by-name/dg/dgen-sdl/package.nix +++ b/pkgs/by-name/dg/dgen-sdl/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { - VGM dumping ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/di/diamond/package.nix b/pkgs/by-name/di/diamond/package.nix index b6dcebe7ede1..2f457fc6932e 100644 --- a/pkgs/by-name/di/diamond/package.nix +++ b/pkgs/by-name/di/diamond/package.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; buildInputs = [ zlib ]; - meta = with lib; { + meta = { description = "Accelerated BLAST compatible local sequence aligner"; mainProgram = "diamond"; longDescription = '' @@ -35,6 +35,6 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/bbuchfink/diamond"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/di/dictu/package.nix b/pkgs/by-name/di/dictu/package.nix index 7d818a8c0b93..7d2743cb193e 100644 --- a/pkgs/by-name/di/dictu/package.nix +++ b/pkgs/by-name/di/dictu/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation rec { mainProgram = "dictu"; homepage = "https://dictu-lang.com"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/dictu.x86_64-darwin }; diff --git a/pkgs/by-name/di/discordchatexporter-cli/package.nix b/pkgs/by-name/di/discordchatexporter-cli/package.nix index ca7b2f78aa66..8d3dce59c8ac 100644 --- a/pkgs/by-name/di/discordchatexporter-cli/package.nix +++ b/pkgs/by-name/di/discordchatexporter-cli/package.nix @@ -40,7 +40,7 @@ buildDotnetModule rec { homepage = "https://github.com/Tyrrrz/DiscordChatExporter"; license = lib.licenses.gpl3Plus; changelog = "https://github.com/Tyrrrz/DiscordChatExporter/blob/${version}/Changelog.md"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "discordchatexporter-cli"; }; diff --git a/pkgs/by-name/di/disk-filltest/package.nix b/pkgs/by-name/di/disk-filltest/package.nix index 0ad1c9d7e79f..f106ed446f06 100644 --- a/pkgs/by-name/di/disk-filltest/package.nix +++ b/pkgs/by-name/di/disk-filltest/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "disk-filltest"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/di/distroshelf/package.nix b/pkgs/by-name/di/distroshelf/package.nix index 5437f5c1b284..c9e75e756a4d 100644 --- a/pkgs/by-name/di/distroshelf/package.nix +++ b/pkgs/by-name/di/distroshelf/package.nix @@ -55,6 +55,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "distroshelf"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/dj/djhtml/package.nix b/pkgs/by-name/dj/djhtml/package.nix index 7df9d94fbb2b..b0832b04623a 100644 --- a/pkgs/by-name/dj/djhtml/package.nix +++ b/pkgs/by-name/dj/djhtml/package.nix @@ -24,7 +24,7 @@ python3Packages.buildPythonApplication rec { description = "Django/Jinja template indenter"; changelog = "https://github.com/rtts/djhtml/releases/tag/${src.tag}"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "djhtml"; }; } diff --git a/pkgs/by-name/dn/dns-over-https/package.nix b/pkgs/by-name/dn/dns-over-https/package.nix index c4c26c1d47ee..d9a55bc7e2c4 100644 --- a/pkgs/by-name/dn/dns-over-https/package.nix +++ b/pkgs/by-name/dn/dns-over-https/package.nix @@ -34,7 +34,7 @@ buildGoModule rec { changelog = "https://github.com/m13253/dns-over-https/releases/tag/v${version}"; description = "High performance DNS over HTTPS client & server"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/do/docopt_cpp/package.nix b/pkgs/by-name/do/docopt_cpp/package.nix index 2b45d2e9c15d..37c50283f698 100644 --- a/pkgs/by-name/do/docopt_cpp/package.nix +++ b/pkgs/by-name/do/docopt_cpp/package.nix @@ -53,6 +53,6 @@ stdenv.mkDerivation rec { boost ]; platforms = platforms.all; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/do/doomretro/package.nix b/pkgs/by-name/do/doomretro/package.nix index c9083cd30ce0..c2b4a281da2a 100644 --- a/pkgs/by-name/do/doomretro/package.nix +++ b/pkgs/by-name/do/doomretro/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "doomretro"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/do/doublecmd/package.nix b/pkgs/by-name/do/doublecmd/package.nix index 188c467f17a3..3545c5b7b982 100644 --- a/pkgs/by-name/do/doublecmd/package.nix +++ b/pkgs/by-name/do/doublecmd/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Two-panel graphical file manager written in Pascal"; license = lib.licenses.gpl2Plus; mainProgram = "doublecmd"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/du/dummyhttp/package.nix b/pkgs/by-name/du/dummyhttp/package.nix index 155b1cb18d96..cc982fe6e768 100644 --- a/pkgs/by-name/du/dummyhttp/package.nix +++ b/pkgs/by-name/du/dummyhttp/package.nix @@ -21,7 +21,7 @@ rustPlatform.buildRustPackage rec { description = "Super simple HTTP server that replies a fixed body with a fixed response code"; homepage = "https://github.com/svenstaro/dummyhttp"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "dummyhttp"; }; } diff --git a/pkgs/by-name/du/dump/package.nix b/pkgs/by-name/du/dump/package.nix index ff3ae10761a1..abeb29ad371f 100644 --- a/pkgs/by-name/du/dump/package.nix +++ b/pkgs/by-name/du/dump/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { homepage = "https://dump.sourceforge.io/"; description = "Linux Ext2 filesystem dump/restore utilities"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/du/dura/package.nix b/pkgs/by-name/du/dura/package.nix index c6e27d0c0a97..47da64ee5eb3 100644 --- a/pkgs/by-name/du/dura/package.nix +++ b/pkgs/by-name/du/dura/package.nix @@ -47,6 +47,6 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/tkellogg/dura"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/du/durden/package.nix b/pkgs/by-name/du/durden/package.nix index ec2551d8edf3..ddade15821a1 100644 --- a/pkgs/by-name/du/durden/package.nix +++ b/pkgs/by-name/du/durden/package.nix @@ -38,7 +38,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { of the desktop environment spectrum. ''; license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/dv/dvdstyler/package.nix b/pkgs/by-name/dv/dvdstyler/package.nix index 050cc09b78b4..d845151b3e62 100644 --- a/pkgs/by-name/dv/dvdstyler/package.nix +++ b/pkgs/by-name/dv/dvdstyler/package.nix @@ -127,7 +127,7 @@ stdenv.mkDerivation rec { - customize navigation using DVD scripting ''; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; linux; mainProgram = "dvdstyler"; }; diff --git a/pkgs/by-name/dx/dxa/package.nix b/pkgs/by-name/dx/dxa/package.nix index 5ff1ca4d45b0..9732e219ccd1 100644 --- a/pkgs/by-name/dx/dxa/package.nix +++ b/pkgs/by-name/dx/dxa/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Andre Fachat's open-source 6502 disassembler"; mainProgram = "dxa"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; unix; }; }) diff --git a/pkgs/by-name/dy/dyndnsc/package.nix b/pkgs/by-name/dy/dyndnsc/package.nix index 50735f10845d..e4c619ce678a 100644 --- a/pkgs/by-name/dy/dyndnsc/package.nix +++ b/pkgs/by-name/dy/dyndnsc/package.nix @@ -63,7 +63,7 @@ python3Packages.buildPythonApplication rec { homepage = "https://github.com/infothrill/python-dyndnsc"; changelog = "https://github.com/infothrill/python-dyndnsc/releases/tag/${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "dyndnsc"; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/dy/dynein/package.nix b/pkgs/by-name/dy/dynein/package.nix index 844d299abe49..8cc5eaf187d7 100644 --- a/pkgs/by-name/dy/dynein/package.nix +++ b/pkgs/by-name/dy/dynein/package.nix @@ -46,6 +46,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/awslabs/dynein"; license = licenses.asl20; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ea/earlybird/package.nix b/pkgs/by-name/ea/earlybird/package.nix index 4ffa598fbdd5..2b886c62f6d9 100644 --- a/pkgs/by-name/ea/earlybird/package.nix +++ b/pkgs/by-name/ea/earlybird/package.nix @@ -28,6 +28,6 @@ buildGoModule rec { homepage = "https://github.com/americanexpress/earlybird"; changelog = "https://github.com/americanexpress/earlybird/releases/tag/v${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ea/earthlyls/package.nix b/pkgs/by-name/ea/earthlyls/package.nix index b2646abeddf0..5071b5e7688b 100644 --- a/pkgs/by-name/ea/earthlyls/package.nix +++ b/pkgs/by-name/ea/earthlyls/package.nix @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec { changelog = "https://github.com/glehmann/earthlyls/releases/tag/${version}"; license = lib.licenses.mit; mainProgram = "earthlyls"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux ++ lib.platforms.darwin; }; } diff --git a/pkgs/by-name/ec/ecmtools/package.nix b/pkgs/by-name/ec/ecmtools/package.nix index 6bc83e944b2c..0e83b3113e5c 100644 --- a/pkgs/by-name/ec/ecmtools/package.nix +++ b/pkgs/by-name/ec/ecmtools/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/alucryd/ecm-tools"; license = lib.licenses.gpl3Plus; mainProgram = "bin2ecm"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ec/ecs-agent/package.nix b/pkgs/by-name/ec/ecs-agent/package.nix index 4a743965e37e..fcb115afdc95 100644 --- a/pkgs/by-name/ec/ecs-agent/package.nix +++ b/pkgs/by-name/ec/ecs-agent/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { changelog = "https://github.com/aws/amazon-ecs-agent/raw/v${version}/CHANGELOG.md"; license = lib.licenses.asl20; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "agent"; }; } diff --git a/pkgs/by-name/ed/ed/package.nix b/pkgs/by-name/ed/ed/package.nix index 334b5ddc35a1..a789749cb5dc 100644 --- a/pkgs/by-name/ed/ed/package.nix +++ b/pkgs/by-name/ed/ed/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "ed"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ed/edit/package.nix b/pkgs/by-name/ed/edit/package.nix index 11feb412ecc2..0ec7d6cb04dd 100644 --- a/pkgs/by-name/ed/edit/package.nix +++ b/pkgs/by-name/ed/edit/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation { description = "Relaxing mix of Vi and ACME"; homepage = "https://c9x.me/edit"; license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "edit"; }; diff --git a/pkgs/by-name/ed/edlin/package.nix b/pkgs/by-name/ed/edlin/package.nix index 114a68a7187e..3bdcce837733 100644 --- a/pkgs/by-name/ed/edlin/package.nix +++ b/pkgs/by-name/ed/edlin/package.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://sourceforge.net/projects/freedos-edlin/"; description = "FreeDOS line editor"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; mainProgram = "edlin"; }; diff --git a/pkgs/by-name/ei/eiciel/package.nix b/pkgs/by-name/ei/eiciel/package.nix index 2665614369a4..480eec91c288 100644 --- a/pkgs/by-name/ei/eiciel/package.nix +++ b/pkgs/by-name/ei/eiciel/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { description = "Graphical editor for ACLs and extended attributes"; homepage = "https://rofi.roger-ferrer.org/eiciel/"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "eiciel"; }; diff --git a/pkgs/by-name/el/elan/package.nix b/pkgs/by-name/el/elan/package.nix index 20c733aa3917..e1681ceccf92 100644 --- a/pkgs/by-name/el/elan/package.nix +++ b/pkgs/by-name/el/elan/package.nix @@ -89,7 +89,7 @@ rustPlatform.buildRustPackage rec { asl20 # or mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "elan"; }; } diff --git a/pkgs/by-name/el/elfinfo/package.nix b/pkgs/by-name/el/elfinfo/package.nix index eae88f1df817..25b6e658b4db 100644 --- a/pkgs/by-name/el/elfinfo/package.nix +++ b/pkgs/by-name/el/elfinfo/package.nix @@ -23,6 +23,6 @@ buildGoModule rec { homepage = "https://elfinfo.roboticoverlords.org/"; changelog = "https://github.com/xyproto/elfinfo/releases/tag/${version}"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/el/elvis/package.nix b/pkgs/by-name/el/elvis/package.nix index 6804167f09a3..c32ac8095d72 100644 --- a/pkgs/by-name/el/elvis/package.nix +++ b/pkgs/by-name/el/elvis/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Vi clone for Unix and other operating systems"; license = lib.licenses.free; mainProgram = "elvis"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/el/elvish/package.nix b/pkgs/by-name/el/elvish/package.nix index b321018b3c31..b11d5e429c57 100644 --- a/pkgs/by-name/el/elvish/package.nix +++ b/pkgs/by-name/el/elvish/package.nix @@ -50,6 +50,6 @@ buildGoModule { status, it is already suitable for most daily interactive use. ''; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/em/em/package.nix b/pkgs/by-name/em/em/package.nix index 1737f76679e4..a7ddd59bd375 100644 --- a/pkgs/by-name/em/em/package.nix +++ b/pkgs/by-name/em/em/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { (such as the ITT's at QMC). ''; license = licenses.publicDomain; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; mainProgram = "em"; }; diff --git a/pkgs/by-name/em/emacspeak/package.nix b/pkgs/by-name/em/emacspeak/package.nix index 6be5907fe188..a0bc83a38c07 100644 --- a/pkgs/by-name/em/emacspeak/package.nix +++ b/pkgs/by-name/em/emacspeak/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/tvraman/emacspeak/blob/${finalAttrs.src.rev}/etc/NEWS"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "emacspeak"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; # Emacspeak requires a minimal Emacs version; let's use the broken flag broken = lib.versionOlder (lib.getVersion emacs) "29.1"; diff --git a/pkgs/by-name/em/emojify/package.nix b/pkgs/by-name/em/emojify/package.nix index e337185e7856..b36dc61ba09d 100644 --- a/pkgs/by-name/em/emojify/package.nix +++ b/pkgs/by-name/em/emojify/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { description = "Emoji on the command line"; homepage = "https://github.com/mrowa44/emojify"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; mainProgram = "emojify"; }; diff --git a/pkgs/by-name/em/emu2/package.nix b/pkgs/by-name/em/emu2/package.nix index d246760dd9c6..aaa65ce47ea9 100644 --- a/pkgs/by-name/em/emu2/package.nix +++ b/pkgs/by-name/em/emu2/package.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { homepage = "https://github.com/dmsc/emu2/"; description = "Simple text-mode x86 + DOS emulator"; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.gpl2Plus; mainProgram = "emu2"; }; diff --git a/pkgs/by-name/en/engelsystem/package.nix b/pkgs/by-name/en/engelsystem/package.nix index 320638ed0d6e..27a089230b82 100644 --- a/pkgs/by-name/en/engelsystem/package.nix +++ b/pkgs/by-name/en/engelsystem/package.nix @@ -67,7 +67,7 @@ php.buildComposerProject2 (finalAttrs: { homepage = "https://engelsystem.de"; license = lib.licenses.gpl2Only; mainProgram = "migrate"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ep/epson-escpr/package.nix b/pkgs/by-name/ep/epson-escpr/package.nix index f7e09e922f3a..34d20becb314 100644 --- a/pkgs/by-name/ep/epson-escpr/package.nix +++ b/pkgs/by-name/ep/epson-escpr/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation { nssmdns4 = true; };''; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/et/etlegacy-assets/package.nix b/pkgs/by-name/et/etlegacy-assets/package.nix index 82a397798d94..f4443287a060 100644 --- a/pkgs/by-name/et/etlegacy-assets/package.nix +++ b/pkgs/by-name/et/etlegacy-assets/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation { for the popular online FPS game Wolfenstein: Enemy Territory - whose gameplay is still considered unmatched by many, despite its great age. ''; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ex/excalifont/package.nix b/pkgs/by-name/ex/excalifont/package.nix index 83c2eef0647a..2a9be4edf83b 100644 --- a/pkgs/by-name/ex/excalifont/package.nix +++ b/pkgs/by-name/ex/excalifont/package.nix @@ -43,7 +43,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://plus.excalidraw.com/excalifont"; description = "Font based on the original handwritten Virgil font carefully curated to improve legibility while preserving its hand-drawn nature"; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.ofl; }; }) diff --git a/pkgs/by-name/fa/fastjar/package.nix b/pkgs/by-name/fa/fastjar/package.nix index f7489cabea26..86d578469a1f 100644 --- a/pkgs/by-name/fa/fastjar/package.nix +++ b/pkgs/by-name/fa/fastjar/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl2Plus; mainProgram = "fastjar"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/fc/fcast-client/package.nix b/pkgs/by-name/fc/fcast-client/package.nix index d4750afa4cb4..c6c6084b655f 100644 --- a/pkgs/by-name/fc/fcast-client/package.nix +++ b/pkgs/by-name/fc/fcast-client/package.nix @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec { receiver devices or integrate the FCast protocol into their own apps. ''; mainProgram = "fcast"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/fc/fcitx5-fluent/package.nix b/pkgs/by-name/fc/fcitx5-fluent/package.nix index e5972050f1c6..5296b230f232 100644 --- a/pkgs/by-name/fc/fcitx5-fluent/package.nix +++ b/pkgs/by-name/fc/fcitx5-fluent/package.nix @@ -33,6 +33,6 @@ stdenvNoCC.mkDerivation { homepage = "https://github.com/Reverier-Xu/Fluent-fcitx5"; license = licenses.mpl20; platforms = platforms.all; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/fe/fermyon-spin/package.nix b/pkgs/by-name/fe/fermyon-spin/package.nix index 8773f26f6d5e..8ea754ff8ee3 100644 --- a/pkgs/by-name/fe/fermyon-spin/package.nix +++ b/pkgs/by-name/fe/fermyon-spin/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = with licenses; [ asl20 ]; mainProgram = "spin"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux ++ platforms.darwin; }; } diff --git a/pkgs/by-name/fg/fg-virgil/package.nix b/pkgs/by-name/fg/fg-virgil/package.nix index 698c81c547b3..3131400d838c 100644 --- a/pkgs/by-name/fg/fg-virgil/package.nix +++ b/pkgs/by-name/fg/fg-virgil/package.nix @@ -43,7 +43,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/excalidraw/virgil"; description = "Font that powers Excalidraw"; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.ofl; }; }) diff --git a/pkgs/by-name/fi/figma-agent/package.nix b/pkgs/by-name/fi/figma-agent/package.nix index f4c6bd2a27a5..b20d9f077246 100644 --- a/pkgs/by-name/fi/figma-agent/package.nix +++ b/pkgs/by-name/fi/figma-agent/package.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage { description = "Figma Agent for Linux with a focus on performance"; homepage = "https://github.com/neetly/figma-agent-linux"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "figma-agent"; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/fi/fim/package.nix b/pkgs/by-name/fi/fim/package.nix index d80e8e7f2198..30fc009929bd 100644 --- a/pkgs/by-name/fi/fim/package.nix +++ b/pkgs/by-name/fi/fim/package.nix @@ -97,6 +97,6 @@ stdenv.mkDerivation rec { homepage = "https://www.nongnu.org/fbi-improved/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/fl/flam3/package.nix b/pkgs/by-name/fl/flam3/package.nix index d664a6cfaf22..7de83084aa12 100644 --- a/pkgs/by-name/fl/flam3/package.nix +++ b/pkgs/by-name/fl/flam3/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation { is specified by a long string of numbers - a genetic code of sorts. ''; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fl/flaresolverr/package.nix b/pkgs/by-name/fl/flaresolverr/package.nix index 3e7c92e96a45..22d258c6b78b 100644 --- a/pkgs/by-name/fl/flaresolverr/package.nix +++ b/pkgs/by-name/fl/flaresolverr/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/FlareSolverr/FlareSolverr/blob/${finalAttrs.src.rev}/CHANGELOG.md"; license = licenses.mit; mainProgram = "flaresolverr"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; inherit (undetected-chromedriver.meta) platforms; }; }) diff --git a/pkgs/by-name/fl/flclash/package.nix b/pkgs/by-name/fl/flclash/package.nix index 0cdcfa56a9ec..807b3dba5f57 100644 --- a/pkgs/by-name/fl/flclash/package.nix +++ b/pkgs/by-name/fl/flclash/package.nix @@ -32,7 +32,7 @@ let description = "Multi-platform proxy client based on ClashMeta, simple and easy to use, open-source and ad-free"; homepage = "https://github.com/chen08209/FlClash"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; libclash = buildGoModule { diff --git a/pkgs/by-name/fl/fleng/package.nix b/pkgs/by-name/fl/fleng/package.nix index 0257e6636ae4..d48866bb6629 100644 --- a/pkgs/by-name/fl/fleng/package.nix +++ b/pkgs/by-name/fl/fleng/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "http://www.call-with-current-continuation.org/fleng/fleng.html"; description = "Low level concurrent logic programming language descended from Prolog"; license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/fl/flycast/package.nix b/pkgs/by-name/fl/flycast/package.nix index 2e45cf9ce6e5..19511deb6a1a 100644 --- a/pkgs/by-name/fl/flycast/package.nix +++ b/pkgs/by-name/fl/flycast/package.nix @@ -60,6 +60,6 @@ stdenv.mkDerivation rec { mainProgram = "flycast"; license = lib.licenses.gpl2Only; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/fm/fm-go/package.nix b/pkgs/by-name/fm/fm-go/package.nix index 0983402fafb1..473759c4aa07 100644 --- a/pkgs/by-name/fm/fm-go/package.nix +++ b/pkgs/by-name/fm/fm-go/package.nix @@ -24,7 +24,7 @@ let changelog = "https://github.com/mistakenelf/fm/releases/tag/${finalAttrs.src.rev}"; license = with lib.licenses; [ mit ]; mainProgram = "fm"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }; in diff --git a/pkgs/by-name/fo/fopnu/package.nix b/pkgs/by-name/fo/fopnu/package.nix index fd8df2447f22..a56aee0e5100 100644 --- a/pkgs/by-name/fo/fopnu/package.nix +++ b/pkgs/by-name/fo/fopnu/package.nix @@ -48,7 +48,7 @@ stdenvNoCC.mkDerivation rec { license = licenses.unfree; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; mainProgram = "fopnu"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/fr/free42/package.nix b/pkgs/by-name/fr/free42/package.nix index a35cd314e94f..acf6e0a7355e 100644 --- a/pkgs/by-name/fr/free42/package.nix +++ b/pkgs/by-name/fr/free42/package.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://thomasokken.com/free42/history.html"; description = "Software clone of HP-42S Calculator"; license = with lib.licenses; [ gpl2Only ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "free42dec"; platforms = with lib.platforms; unix; }; diff --git a/pkgs/by-name/fr/freediameter/package.nix b/pkgs/by-name/fr/freediameter/package.nix index 594de4833189..b08fd258bfe3 100644 --- a/pkgs/by-name/fr/freediameter/package.nix +++ b/pkgs/by-name/fr/freediameter/package.nix @@ -47,6 +47,6 @@ stdenv.mkDerivation (finalAttrs: { license = lib.licenses.bsd3; platforms = lib.platforms.unix; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/fs/fscrypt-experimental/package.nix b/pkgs/by-name/fs/fscrypt-experimental/package.nix index 1c0b7594fd1c..1aa974b60e8f 100644 --- a/pkgs/by-name/fs/fscrypt-experimental/package.nix +++ b/pkgs/by-name/fs/fscrypt-experimental/package.nix @@ -57,6 +57,6 @@ buildGoModule rec { changelog = "https://github.com/google/fscrypt/releases/tag/v${version}"; license = lib.licenses.asl20; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/fs/fscryptctl/package.nix b/pkgs/by-name/fs/fscryptctl/package.nix index 88257b1da3df..7dc4aaf033bc 100644 --- a/pkgs/by-name/fs/fscryptctl/package.nix +++ b/pkgs/by-name/fs/fscryptctl/package.nix @@ -43,6 +43,6 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/google/fscryptctl/blob/master/NEWS.md"; license = lib.licenses.asl20; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/fs/fsnotifier/package.nix b/pkgs/by-name/fs/fsnotifier/package.nix index f3f575d78356..151b6ae7b2f6 100644 --- a/pkgs/by-name/fs/fsnotifier/package.nix +++ b/pkgs/by-name/fs/fsnotifier/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { description = "IntelliJ Platform companion program for watching and reporting file and directory structure modification"; license = lib.licenses.asl20; mainProgram = "fsnotifier"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ft/ftgl/package.nix b/pkgs/by-name/ft/ftgl/package.nix index 6de0411e833c..40227f823c7c 100644 --- a/pkgs/by-name/ft/ftgl/package.nix +++ b/pkgs/by-name/ft/ftgl/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { rendering modes. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/fv/fvm/package.nix b/pkgs/by-name/fv/fvm/package.nix index 01a7a83687bd..77831eeda270 100644 --- a/pkgs/by-name/fv/fvm/package.nix +++ b/pkgs/by-name/fv/fvm/package.nix @@ -44,6 +44,6 @@ buildDartApplication { description = "Simple CLI to manage Flutter SDK versions"; homepage = "https://github.com/leoafarias/fvm"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/fv/fvwm3/package.nix b/pkgs/by-name/fv/fvwm3/package.nix index 6ab018ebb4c0..887001e5be72 100644 --- a/pkgs/by-name/fv/fvwm3/package.nix +++ b/pkgs/by-name/fv/fvwm3/package.nix @@ -113,7 +113,7 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://github.com/fvwmorg/fvwm3/blob/${finalAttrs.src.rev}/CHANGELOG.md"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; }; }) diff --git a/pkgs/by-name/fw/fwknop/package.nix b/pkgs/by-name/fw/fwknop/package.nix index f88870ba9640..4ea869701803 100644 --- a/pkgs/by-name/fw/fwknop/package.nix +++ b/pkgs/by-name/fw/fwknop/package.nix @@ -73,6 +73,6 @@ stdenv.mkDerivation rec { homepage = "https://www.cipherdyne.org/fwknop/"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ga/galaxis/package.nix b/pkgs/by-name/ga/galaxis/package.nix index b8266e9baf36..c1a4fa52e2f0 100644 --- a/pkgs/by-name/ga/galaxis/package.nix +++ b/pkgs/by-name/ga/galaxis/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "http://catb.org/~esr/galaxis/"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "galaxis"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ga/galculator/package.nix b/pkgs/by-name/ga/galculator/package.nix index 56944fc0e439..e7068f831c8c 100644 --- a/pkgs/by-name/ga/galculator/package.nix +++ b/pkgs/by-name/ga/galculator/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl2Plus; mainProgram = "galculator"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (gtk3.meta) platforms; }; }) diff --git a/pkgs/by-name/ga/game-music-emu/package.nix b/pkgs/by-name/ga/game-music-emu/package.nix index b7410ac39378..3cd720d8dca5 100644 --- a/pkgs/by-name/ga/game-music-emu/package.nix +++ b/pkgs/by-name/ga/game-music-emu/package.nix @@ -36,6 +36,6 @@ stdenv.mkDerivation rec { description = "Collection of video game music file emulators"; license = lib.licenses.lgpl21Plus; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ga/garamond-libre/package.nix b/pkgs/by-name/ga/garamond-libre/package.nix index 4069de4d101a..8093b0466d26 100644 --- a/pkgs/by-name/ga/garamond-libre/package.nix +++ b/pkgs/by-name/ga/garamond-libre/package.nix @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation rec { meta = with lib; { homepage = "https://github.com/dbenjaminmiller/garamond-libre"; description = "Garamond Libre font family"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.x11; platforms = platforms.all; }; diff --git a/pkgs/by-name/gc/gcsfuse/package.nix b/pkgs/by-name/gc/gcsfuse/package.nix index c56fb4a298ba..53cfe689b84e 100644 --- a/pkgs/by-name/gc/gcsfuse/package.nix +++ b/pkgs/by-name/gc/gcsfuse/package.nix @@ -49,7 +49,7 @@ buildGoModule rec { homepage = "https://cloud.google.com/storage/docs/gcs-fuse"; changelog = "https://github.com/GoogleCloudPlatform/gcsfuse/releases/tag/v${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; # internal/cache/file/downloader/job.go:386:77: undefined: syscall.O_DIRECT broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/gd/gdbm/package.nix b/pkgs/by-name/gd/gdbm/package.nix index 0e21e7657331..67fe4953ed20 100644 --- a/pkgs/by-name/gd/gdbm/package.nix +++ b/pkgs/by-name/gd/gdbm/package.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "gdbmtool"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ge/germinal/package.nix b/pkgs/by-name/ge/germinal/package.nix index b304492e5fd2..b420c369ff13 100644 --- a/pkgs/by-name/ge/germinal/package.nix +++ b/pkgs/by-name/ge/germinal/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/Keruspe/Germinal"; license = lib.licenses.gpl3Plus; mainProgram = "germinal"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gh/ghmap/package.nix b/pkgs/by-name/gh/ghmap/package.nix index d1bcb607ec5a..42ee79085f7f 100644 --- a/pkgs/by-name/gh/ghmap/package.nix +++ b/pkgs/by-name/gh/ghmap/package.nix @@ -36,7 +36,7 @@ python3Packages.buildPythonApplication rec { description = "Python tool for mapping GitHub events to contributor activities"; homepage = "https://github.com/uhourri/ghmap"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "ghmap"; }; } diff --git a/pkgs/by-name/gi/gifgen/package.nix b/pkgs/by-name/gi/gifgen/package.nix index 094e82198194..ce312da2e304 100644 --- a/pkgs/by-name/gi/gifgen/package.nix +++ b/pkgs/by-name/gi/gifgen/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { description = "Simple high quality GIF encoding"; homepage = "https://github.com/lukechilds/gifgen"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "gifgen"; platforms = platforms.all; }; diff --git a/pkgs/by-name/gi/gimme-aws-creds/package.nix b/pkgs/by-name/gi/gimme-aws-creds/package.nix index ade8ddb80cce..7a85da0fa4a5 100644 --- a/pkgs/by-name/gi/gimme-aws-creds/package.nix +++ b/pkgs/by-name/gi/gimme-aws-creds/package.nix @@ -20,7 +20,7 @@ python3.pkgs.buildPythonApplication rec { hash = "sha256-fsFYcfbLeYV6tpOGgNrFmYjcUAmdsx5zwUbvcctwFVs="; }; - nativeBuildInputs = with python3.pkgs; [ + nativeBuildInputs = [ installShellFiles ]; diff --git a/pkgs/by-name/gi/git-branchstack/package.nix b/pkgs/by-name/gi/git-branchstack/package.nix index db3aff164061..6a05e966808c 100644 --- a/pkgs/by-name/gi/git-branchstack/package.nix +++ b/pkgs/by-name/gi/git-branchstack/package.nix @@ -28,7 +28,7 @@ let homepage = "https://github.com/krobelus/git-branchstack"; description = "Efficiently manage Git branches without leaving your local branch"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }; in diff --git a/pkgs/by-name/gi/git-credential-oauth/package.nix b/pkgs/by-name/gi/git-credential-oauth/package.nix index 28f1ae37b76d..97337b827acd 100644 --- a/pkgs/by-name/gi/git-credential-oauth/package.nix +++ b/pkgs/by-name/gi/git-credential-oauth/package.nix @@ -35,7 +35,7 @@ buildGoModule rec { homepage = "https://github.com/hickford/git-credential-oauth"; changelog = "https://github.com/hickford/git-credential-oauth/releases/tag/${src.rev}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "git-credential-oauth"; }; } diff --git a/pkgs/by-name/gi/git-imerge/package.nix b/pkgs/by-name/gi/git-imerge/package.nix index d55e9113f138..dee4ee8cc705 100644 --- a/pkgs/by-name/gi/git-imerge/package.nix +++ b/pkgs/by-name/gi/git-imerge/package.nix @@ -25,7 +25,7 @@ python3Packages.buildPythonApplication rec { homepage = "https://github.com/mhagger/git-imerge"; description = "Perform a merge between two branches incrementally"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "git-imerge"; }; } diff --git a/pkgs/by-name/gi/github-desktop/package.nix b/pkgs/by-name/gi/github-desktop/package.nix index 7729cc5c11e4..e36941a93de4 100644 --- a/pkgs/by-name/gi/github-desktop/package.nix +++ b/pkgs/by-name/gi/github-desktop/package.nix @@ -100,7 +100,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://desktop.github.com/"; license = lib.licenses.mit; mainProgram = "github-desktop"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; diff --git a/pkgs/by-name/gl/glpng/package.nix b/pkgs/by-name/gl/glpng/package.nix index 35fc6c6e4dc8..6ba58d88b843 100644 --- a/pkgs/by-name/gl/glpng/package.nix +++ b/pkgs/by-name/gl/glpng/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { homepage = "https://repo.or.cz/glpng.git/blob_plain/HEAD:/glpng.htm"; description = "PNG loader library for OpenGL"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/gl/glucose/package.nix b/pkgs/by-name/gl/glucose/package.nix index 4672bfc84809..379fb82f6ae9 100644 --- a/pkgs/by-name/gl/glucose/package.nix +++ b/pkgs/by-name/gl/glucose/package.nix @@ -47,6 +47,6 @@ stdenv.mkDerivation rec { homepage = "https://www.labri.fr/perso/lsimon/research/glucose/"; license = if enableUnfree then licenses.unfreeRedistributable else licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/gm/gmic-qt/package.nix b/pkgs/by-name/gm/gmic-qt/package.nix index 2c7d8e70d890..f57f0c010610 100644 --- a/pkgs/by-name/gm/gmic-qt/package.nix +++ b/pkgs/by-name/gm/gmic-qt/package.nix @@ -134,7 +134,7 @@ stdenv.mkDerivation (finalAttrs: { inherit (variants.${variant}) description; license = lib.licenses.gpl3Plus; mainProgram = "gmic_qt"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gn/gnu-smalltalk/package.nix b/pkgs/by-name/gn/gnu-smalltalk/package.nix index 7ca522465f7f..43b33c1b4dbc 100644 --- a/pkgs/by-name/gn/gnu-smalltalk/package.nix +++ b/pkgs/by-name/gn/gnu-smalltalk/package.nix @@ -93,6 +93,6 @@ stdenv.mkDerivation (finalAttrs: { lgpl2 ]; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/go/go-bindata/package.nix b/pkgs/by-name/go/go-bindata/package.nix index 2d2a89572d0b..ffa074b50426 100644 --- a/pkgs/by-name/go/go-bindata/package.nix +++ b/pkgs/by-name/go/go-bindata/package.nix @@ -29,7 +29,7 @@ buildGoModule rec { changelog = "https://github.com/kevinburke/go-bindata/blob/v${version}/CHANGELOG.md"; description = "Small utility which generates Go code from any file, useful for embedding binary data in a Go program"; mainProgram = "go-bindata"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.cc0; }; } diff --git a/pkgs/by-name/go/go-rice/package.nix b/pkgs/by-name/go/go-rice/package.nix index dfe83f21dc8f..aef456d67a73 100644 --- a/pkgs/by-name/go/go-rice/package.nix +++ b/pkgs/by-name/go/go-rice/package.nix @@ -26,7 +26,7 @@ buildGoModule rec { description = "Go package that makes working with resources such as html, js, css, images, templates very easy"; homepage = "https://github.com/GeertJohan/go.rice"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "rice"; }; } diff --git a/pkgs/by-name/go/goobook/package.nix b/pkgs/by-name/go/goobook/package.nix index f7c0f6cb97f0..dcccc60f7748 100644 --- a/pkgs/by-name/go/goobook/package.nix +++ b/pkgs/by-name/go/goobook/package.nix @@ -62,6 +62,6 @@ python3Packages.buildPythonApplication rec { homepage = "https://gitlab.com/goobook/goobook"; changelog = "https://gitlab.com/goobook/goobook/-/blob/${src.tag}/CHANGES.rst"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/google-guest-oslogin/package.nix b/pkgs/by-name/go/google-guest-oslogin/package.nix index f341178173e5..f555ee4be088 100644 --- a/pkgs/by-name/go/google-guest-oslogin/package.nix +++ b/pkgs/by-name/go/google-guest-oslogin/package.nix @@ -57,6 +57,6 @@ stdenv.mkDerivation rec { description = "OS Login Guest Environment for Google Compute Engine"; license = licenses.asl20; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/go/gopeed/package.nix b/pkgs/by-name/go/gopeed/package.nix index 5a892ad0a9b4..c37850098e6e 100644 --- a/pkgs/by-name/go/gopeed/package.nix +++ b/pkgs/by-name/go/gopeed/package.nix @@ -21,7 +21,7 @@ let description = "Modern download manager that supports all platforms"; homepage = "https://github.com/GopeedLab/gopeed"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/gp/gp2c/package.nix b/pkgs/by-name/gp/gp2c/package.nix index 2dbd5df4c123..4fe87cd93af4 100644 --- a/pkgs/by-name/gp/gp2c/package.nix +++ b/pkgs/by-name/gp/gp2c/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { "--with-perl=${perl}/bin/perl" ]; - meta = with lib; { + meta = { homepage = "http://pari.math.u-bordeaux.fr/"; description = "Compiler to translate GP scripts to PARI programs"; downloadPage = "http://pari.math.u-bordeaux.fr/download.html"; diff --git a/pkgs/by-name/gp/gpt-box/package.nix b/pkgs/by-name/gp/gpt-box/package.nix index cd4d8c871029..da5a0cf3dae0 100644 --- a/pkgs/by-name/gp/gpt-box/package.nix +++ b/pkgs/by-name/gp/gpt-box/package.nix @@ -82,6 +82,6 @@ flutter329.buildFlutterApplication rec { mainProgram = "GPTBox"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/gr/grafx2/package.nix b/pkgs/by-name/gr/grafx2/package.nix index 862bb76d26e2..8820a3d8a32a 100644 --- a/pkgs/by-name/gr/grafx2/package.nix +++ b/pkgs/by-name/gr/grafx2/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "grafx2-sdl"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gr/graphicsmagick/package.nix b/pkgs/by-name/gr/graphicsmagick/package.nix index e4e0743990aa..4d495f7d7fea 100644 --- a/pkgs/by-name/gr/graphicsmagick/package.nix +++ b/pkgs/by-name/gr/graphicsmagick/package.nix @@ -111,7 +111,7 @@ stdenv.mkDerivation (finalAttrs: { PNM, TIFF, and WebP. ''; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "gm"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/gr/greetd/package.nix b/pkgs/by-name/gr/greetd/package.nix index 06642f98b4a1..a7aa7a4e03b1 100644 --- a/pkgs/by-name/gr/greetd/package.nix +++ b/pkgs/by-name/gr/greetd/package.nix @@ -73,7 +73,7 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://sr.ht/~kennylevinsen/greetd/"; mainProgram = "greetd"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/gr/gretl/package.nix b/pkgs/by-name/gr/gretl/package.nix index 2dc3941efac5..59305732efe2 100644 --- a/pkgs/by-name/gr/gretl/package.nix +++ b/pkgs/by-name/gr/gretl/package.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation (finalAttrs: { gretl is a cross-platform software package for econometric analysis, written in the C programming language. ''; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/gt/gtkgreet/package.nix b/pkgs/by-name/gt/gtkgreet/package.nix index bffb651c16d8..6156e3ee8f41 100644 --- a/pkgs/by-name/gt/gtkgreet/package.nix +++ b/pkgs/by-name/gt/gtkgreet/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { description = "GTK based greeter for greetd, to be run under cage or similar"; homepage = "https://git.sr.ht/~kennylevinsen/gtkgreet"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "gtkgreet"; }; diff --git a/pkgs/by-name/gt/gtklp/package.nix b/pkgs/by-name/gt/gtklp/package.nix index f77150eb5c5c..8b4f3b209865 100644 --- a/pkgs/by-name/gt/gtklp/package.nix +++ b/pkgs/by-name/gt/gtklp/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { description = "GTK-based graphical frontend for CUPS"; license = with lib.licenses; [ gpl2Only ]; mainProgram = "gtklp"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/gu/gui-for-clash/package.nix b/pkgs/by-name/gu/gui-for-clash/package.nix index 572f9208d6a9..f63a9d08d083 100644 --- a/pkgs/by-name/gu/gui-for-clash/package.nix +++ b/pkgs/by-name/gu/gui-for-clash/package.nix @@ -29,7 +29,7 @@ let homepage = "https://github.com/GUI-for-Cores/GUI.for.Clash"; hydraPlatforms = [ ]; # https://gui-for-cores.github.io/guide/#note license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; frontend = stdenv.mkDerivation (finalAttrs: { diff --git a/pkgs/by-name/gu/gui-for-singbox/package.nix b/pkgs/by-name/gu/gui-for-singbox/package.nix index a594d4086f1b..af8eab5f403b 100644 --- a/pkgs/by-name/gu/gui-for-singbox/package.nix +++ b/pkgs/by-name/gu/gui-for-singbox/package.nix @@ -29,7 +29,7 @@ let homepage = "https://github.com/GUI-for-Cores/GUI.for.SingBox"; hydraPlatforms = [ ]; # https://gui-for-cores.github.io/guide/#note license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; frontend = stdenv.mkDerivation (finalAttrs: { diff --git a/pkgs/by-name/gu/guile-aspell/package.nix b/pkgs/by-name/gu/guile-aspell/package.nix index 64cfcb472bd6..2f97b3c0376b 100644 --- a/pkgs/by-name/gu/guile-aspell/package.nix +++ b/pkgs/by-name/gu/guile-aspell/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Guile bindings for the aspell library"; homepage = "https://github.com/spk121/guile-aspell"; license = licenses.gpl3Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = guile.meta.platforms; }; }) diff --git a/pkgs/by-name/gu/guile-commonmark/package.nix b/pkgs/by-name/gu/guile-commonmark/package.nix index 24be48cb0910..a63214323490 100644 --- a/pkgs/by-name/gu/guile-commonmark/package.nix +++ b/pkgs/by-name/gu/guile-commonmark/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { homepage = "https://github.com/OrangeShark/guile-commonmark"; description = "Implementation of CommonMark for Guile"; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-goblins/package.nix b/pkgs/by-name/gu/guile-goblins/package.nix index 28df2885bb72..ba038e3bbbe9 100644 --- a/pkgs/by-name/gu/guile-goblins/package.nix +++ b/pkgs/by-name/gu/guile-goblins/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { description = "Spritely Goblins for Guile"; homepage = "https://spritely.institute/goblins/"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-reader/package.nix b/pkgs/by-name/gu/guile-reader/package.nix index ab79f2232cc3..919a03dbf967 100644 --- a/pkgs/by-name/gu/guile-reader/package.nix +++ b/pkgs/by-name/gu/guile-reader/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { R5RS-derived document syntax. ''; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = guile.meta.platforms; }; } diff --git a/pkgs/by-name/gu/guile-sqlite3/package.nix b/pkgs/by-name/gu/guile-sqlite3/package.nix index 1e7e737f1725..0ad42497517e 100644 --- a/pkgs/by-name/gu/guile-sqlite3/package.nix +++ b/pkgs/by-name/gu/guile-sqlite3/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://notabug.org/guile-sqlite3/guile-sqlite3"; description = "Guile bindings for the SQLite3 database engine"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (guile.meta) platforms; }; }) diff --git a/pkgs/by-name/gx/gxemul/package.nix b/pkgs/by-name/gx/gxemul/package.nix index df51fe643aa2..71afb6764a4a 100644 --- a/pkgs/by-name/gx/gxemul/package.nix +++ b/pkgs/by-name/gx/gxemul/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { unmodified "guest" operating systems to run. ''; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; mainProgram = "gxemul"; }; diff --git a/pkgs/by-name/gx/gxmessage/package.nix b/pkgs/by-name/gx/gxmessage/package.nix index d859381ab9a3..5583380719af 100644 --- a/pkgs/by-name/gx/gxmessage/package.nix +++ b/pkgs/by-name/gx/gxmessage/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { description = "GTK enabled dropin replacement for xmessage"; homepage = "https://trmusson.dreamhosters.com/programs.html#gxmessage"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; linux; mainProgram = "gxmessage"; }; diff --git a/pkgs/by-name/ha/hachimarupop/package.nix b/pkgs/by-name/ha/hachimarupop/package.nix index 55a0484f3cea..437f7a5a4b27 100644 --- a/pkgs/by-name/ha/hachimarupop/package.nix +++ b/pkgs/by-name/ha/hachimarupop/package.nix @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation { homepage = "https://github.com/noriokanisawa/HachiMaruPop"; description = "Cute, Japanese font"; license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ha/hackedbox/package.nix b/pkgs/by-name/ha/hackedbox/package.nix index 6a4bcff5915c..d8ba1545d09d 100644 --- a/pkgs/by-name/ha/hackedbox/package.nix +++ b/pkgs/by-name/ha/hackedbox/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Bastard hacked offspring of Blackbox"; homepage = "https://github.com/museoa/hackedbox/"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; }; }) diff --git a/pkgs/by-name/ha/haveged/package.nix b/pkgs/by-name/ha/haveged/package.nix index ece3d8154d63..7b9fd31fa5f9 100644 --- a/pkgs/by-name/ha/haveged/package.nix +++ b/pkgs/by-name/ha/haveged/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/jirka-h/haveged"; changelog = "https://raw.githubusercontent.com/jirka-h/haveged/v${version}/ChangeLog"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; badPlatforms = lib.platforms.darwin; # fails to build since v1.9.15 }; diff --git a/pkgs/by-name/hd/hdf4/package.nix b/pkgs/by-name/hd/hdf4/package.nix index 5f369d2be486..f8d18e9ccc04 100644 --- a/pkgs/by-name/hd/hdf4/package.nix +++ b/pkgs/by-name/hd/hdf4/package.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Data model, library, and file format for storing and managing data"; homepage = "https://support.hdfgroup.org/products/hdf4/"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; license = licenses.bsdOriginal; }; diff --git a/pkgs/by-name/he/heaptrack/package.nix b/pkgs/by-name/he/heaptrack/package.nix index a663250988f0..64e99139b54f 100644 --- a/pkgs/by-name/he/heaptrack/package.nix +++ b/pkgs/by-name/he/heaptrack/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation { homepage = "https://github.com/KDE/heaptrack"; license = licenses.lgpl21Plus; mainProgram = "heaptrack_gui"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/he/hedgedoc-cli/package.nix b/pkgs/by-name/he/hedgedoc-cli/package.nix index 72fcaac474bf..f6456679113a 100644 --- a/pkgs/by-name/he/hedgedoc-cli/package.nix +++ b/pkgs/by-name/he/hedgedoc-cli/package.nix @@ -51,6 +51,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/hedgedoc/cli"; license = lib.licenses.agpl3Only; mainProgram = "hedgedoc-cli"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/he/hedgemodmanager/package.nix b/pkgs/by-name/he/hedgemodmanager/package.nix index a8d82929ad7a..b5793cd5a160 100644 --- a/pkgs/by-name/he/hedgemodmanager/package.nix +++ b/pkgs/by-name/he/hedgemodmanager/package.nix @@ -48,6 +48,6 @@ buildDotnetModule (finalAttrs: { changelog = "https://github.com/hedge-dev/HedgeModManager/releases/tag/${finalAttrs.version}"; license = lib.licenses.mit; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/he/hex/package.nix b/pkgs/by-name/he/hex/package.nix index 2caa73127e89..4be74ff09edd 100644 --- a/pkgs/by-name/he/hex/package.nix +++ b/pkgs/by-name/he/hex/package.nix @@ -30,6 +30,6 @@ rustPlatform.buildRustPackage rec { changelog = "https://github.com/sitkevij/hex/releases/tag/v${version}"; mainProgram = "hx"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/hi/higan/package.nix b/pkgs/by-name/hi/higan/package.nix index 9947742b3b1c..994250f2426a 100644 --- a/pkgs/by-name/hi/higan/package.nix +++ b/pkgs/by-name/hi/higan/package.nix @@ -181,7 +181,7 @@ stdenv.mkDerivation (finalAttrs: { Challenge V2. ''; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ho/hostctl/package.nix b/pkgs/by-name/ho/hostctl/package.nix index d1dbe67e4cd0..f49889497403 100644 --- a/pkgs/by-name/ho/hostctl/package.nix +++ b/pkgs/by-name/ho/hostctl/package.nix @@ -43,7 +43,7 @@ buildGoModule rec { ''; homepage = "https://guumaster.github.io/hostctl/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "hostctl"; }; } diff --git a/pkgs/by-name/ht/htmldoc/package.nix b/pkgs/by-name/ht/htmldoc/package.nix index a61a653af5e8..af5d5ebe7234 100644 --- a/pkgs/by-name/ht/htmldoc/package.nix +++ b/pkgs/by-name/ht/htmldoc/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { homepage = "https://michaelrsweet.github.io/htmldoc"; changelog = "https://github.com/michaelrsweet/htmldoc/releases/tag/v${version}"; license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; longDescription = '' diff --git a/pkgs/by-name/ht/httplib/package.nix b/pkgs/by-name/ht/httplib/package.nix index b00be06548df..655bcd363afe 100644 --- a/pkgs/by-name/ht/httplib/package.nix +++ b/pkgs/by-name/ht/httplib/package.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation (finalAttrs: { description = "C++ header-only HTTP/HTTPS server and client library"; changelog = "https://github.com/yhirose/cpp-httplib/releases/tag/${finalAttrs.src.rev}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ht/httpyac/package.nix b/pkgs/by-name/ht/httpyac/package.nix index ece9ca1cab3b..22cd263adb51 100644 --- a/pkgs/by-name/ht/httpyac/package.nix +++ b/pkgs/by-name/ht/httpyac/package.nix @@ -34,7 +34,7 @@ buildNpmPackage rec { homepage = "https://github.com/anweber/httpyac"; license = lib.licenses.mit; mainProgram = "httpyac"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/hu/hubot-sans/package.nix b/pkgs/by-name/hu/hubot-sans/package.nix index 5fc0ba0f47ce..2f184a09e5cb 100644 --- a/pkgs/by-name/hu/hubot-sans/package.nix +++ b/pkgs/by-name/hu/hubot-sans/package.nix @@ -37,7 +37,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { of a typeface to be incorporated into one single file, and are supported by all major browsers. ''; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/hy/hyperblobs/package.nix b/pkgs/by-name/hy/hyperblobs/package.nix index da3526954fdb..e26eceaad46a 100644 --- a/pkgs/by-name/hy/hyperblobs/package.nix +++ b/pkgs/by-name/hy/hyperblobs/package.nix @@ -42,6 +42,6 @@ buildNpmPackage (finalAttrs: { license = lib.licenses.asl20; platforms = lib.platforms.all; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/hy/hyperswarm/package.nix b/pkgs/by-name/hy/hyperswarm/package.nix index a805c136fb86..e61f0fb2c3ec 100644 --- a/pkgs/by-name/hy/hyperswarm/package.nix +++ b/pkgs/by-name/hy/hyperswarm/package.nix @@ -32,6 +32,6 @@ buildNpmPackage (finalAttrs: { license = lib.licenses.mit; platforms = lib.platforms.unix; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/i3/i3minator/package.nix b/pkgs/by-name/i3/i3minator/package.nix index 77b664cbf005..3d59d90d3d1e 100644 --- a/pkgs/by-name/i3/i3minator/package.nix +++ b/pkgs/by-name/i3/i3minator/package.nix @@ -34,7 +34,7 @@ python3Packages.buildPythonApplication rec { pythonImportsCheck = [ "i3minator" ]; - meta = with lib; { + meta = { description = "i3 project manager similar to tmuxinator"; mainProgram = "i3minator"; longDescription = '' @@ -44,7 +44,7 @@ python3Packages.buildPythonApplication rec { ''; homepage = "https://github.com/carlesso/i3minator"; license = lib.licenses.wtfpl; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/ic/iconic/package.nix b/pkgs/by-name/ic/iconic/package.nix index 07cd692a27a0..293de5d6c18e 100644 --- a/pkgs/by-name/ic/iconic/package.nix +++ b/pkgs/by-name/ic/iconic/package.nix @@ -70,6 +70,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "folder_icon"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/if/ifwifi/package.nix b/pkgs/by-name/if/ifwifi/package.nix index d1e9d38b723e..545ce67703cb 100644 --- a/pkgs/by-name/if/ifwifi/package.nix +++ b/pkgs/by-name/if/ifwifi/package.nix @@ -51,7 +51,7 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://github.com/araujobsd/ifwifi"; license = with licenses; [ bsd2 ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; # networkmanager doesn't work on darwin # even though the `wifiscanner` crate would work platforms = with platforms; linux; # ++ darwin; diff --git a/pkgs/by-name/ii/iir1/package.nix b/pkgs/by-name/ii/iir1/package.nix index 116803baf794..2eb083070b3a 100644 --- a/pkgs/by-name/ii/iir1/package.nix +++ b/pkgs/by-name/ii/iir1/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: { downloadPage = "https://github.com/berndporr/iir1"; changelog = "https://github.com/berndporr/iir1/releases/tag/${finalAttrs.src.rev}"; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/im/imgur-screenshot/package.nix b/pkgs/by-name/im/imgur-screenshot/package.nix index 05b338997d9b..ed3a452666a8 100644 --- a/pkgs/by-name/im/imgur-screenshot/package.nix +++ b/pkgs/by-name/im/imgur-screenshot/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/jomo/imgur-screenshot/"; platforms = platforms.linux; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "imgur-screenshot"; }; } diff --git a/pkgs/by-name/io/ios-safari-remote-debug/package.nix b/pkgs/by-name/io/ios-safari-remote-debug/package.nix index 47f3f6d973ad..339418666d21 100644 --- a/pkgs/by-name/io/ios-safari-remote-debug/package.nix +++ b/pkgs/by-name/io/ios-safari-remote-debug/package.nix @@ -35,6 +35,6 @@ buildGoModule rec { homepage = "https://git.gay/besties/ios-safari-remote-debug"; license = lib.licenses.agpl3Plus; mainProgram = "ios-safari-remote-debug"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ip/ipam/package.nix b/pkgs/by-name/ip/ipam/package.nix index 942a938ff9a9..aca7c99b477a 100644 --- a/pkgs/by-name/ip/ipam/package.nix +++ b/pkgs/by-name/ip/ipam/package.nix @@ -41,7 +41,7 @@ buildGoModule rec { homepage = "https://ipam.lauka.net/"; changelog = "https://codeberg.org/lauralani/ipam/releases/tag/v${version}"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "ipam"; }; } diff --git a/pkgs/by-name/is/isc-cron/package.nix b/pkgs/by-name/is/isc-cron/package.nix index d634db1a11d7..137273c9f393 100644 --- a/pkgs/by-name/is/isc-cron/package.nix +++ b/pkgs/by-name/is/isc-cron/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Daemon for running commands at specific times"; license = lib.licenses.bsd0; mainProgram = "cron"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/is/isync/package.nix b/pkgs/by-name/is/isync/package.nix index 74794d19acec..414299bab329 100644 --- a/pkgs/by-name/is/isync/package.nix +++ b/pkgs/by-name/is/isync/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl2Plus; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "mbsync"; }; }) diff --git a/pkgs/by-name/iw/iw/package.nix b/pkgs/by-name/iw/iw/package.nix index 8ab7b853ce65..61f5e832915b 100644 --- a/pkgs/by-name/iw/iw/package.nix +++ b/pkgs/by-name/iw/iw/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.isc; mainProgram = "iw"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/j4/j4-dmenu-desktop/package.nix b/pkgs/by-name/j4/j4-dmenu-desktop/package.nix index 7675dc1203a2..43c9e434ff26 100644 --- a/pkgs/by-name/j4/j4-dmenu-desktop/package.nix +++ b/pkgs/by-name/j4/j4-dmenu-desktop/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/enkore/j4-dmenu-desktop"; license = licenses.gpl3Only; mainProgram = "j4-dmenu-desktop"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; }) diff --git a/pkgs/by-name/ja/jasper/package.nix b/pkgs/by-name/ja/jasper/package.nix index 3c04037dc1ac..1e761aadda71 100644 --- a/pkgs/by-name/ja/jasper/package.nix +++ b/pkgs/by-name/ja/jasper/package.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ mit ]; mainProgram = "jasper"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix b/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix index f7559b03b348..ba4e062660f5 100644 --- a/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix +++ b/pkgs/by-name/jb/jboss_mysql_jdbc/package.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { runHook postInstall ''; - meta = with lib; { + meta = { inherit (mysql_jdbc.meta) description license diff --git a/pkgs/by-name/jb/jbrowse/package.nix b/pkgs/by-name/jb/jbrowse/package.nix index c1a005d67606..25738c034d9a 100644 --- a/pkgs/by-name/jb/jbrowse/package.nix +++ b/pkgs/by-name/jb/jbrowse/package.nix @@ -36,7 +36,7 @@ appimageTools.wrapType2 { mainProgram = "jbrowse-desktop"; homepage = "https://jbrowse.org/jb2/"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/jh/jhentai/package.nix b/pkgs/by-name/jh/jhentai/package.nix index 7fcf0db0acfa..1f3b613fd990 100644 --- a/pkgs/by-name/jh/jhentai/package.nix +++ b/pkgs/by-name/jh/jhentai/package.nix @@ -83,7 +83,7 @@ flutter329.buildFlutterApplication rec { homepage = "https://github.com/jiangtian616/JHenTai"; mainProgram = "jhentai"; license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/jo/joe/package.nix b/pkgs/by-name/jo/joe/package.nix index 0ac9e156d3a1..4907cee12cc7 100644 --- a/pkgs/by-name/jo/joe/package.nix +++ b/pkgs/by-name/jo/joe/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://joe-editor.sourceforge.io"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/jo/jove/package.nix b/pkgs/by-name/jo/jove/package.nix index de72e345a9d8..c433f0cd5e27 100644 --- a/pkgs/by-name/jo/jove/package.nix +++ b/pkgs/by-name/jo/jove/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Jonathan's Own Version of Emacs"; changelog = "https://github.com/jonmacs/jove/releases/tag/${finalAttrs.version}"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; # never built on Hydra: https://hydra.nixos.org/job/nixpkgs/trunk/jove.x86_64-darwin broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/jo/joypixels/package.nix b/pkgs/by-name/jo/joypixels/package.nix index ad73a78cf2c1..2cf2347b5d4c 100644 --- a/pkgs/by-name/jo/joypixels/package.nix +++ b/pkgs/by-name/jo/joypixels/package.nix @@ -23,7 +23,7 @@ let fontFile = "joypixels-android.ttf"; }; - joypixels-free-license = with systemSpecific; { + joypixels-free-license = { spdxId = "LicenseRef-JoyPixels-Free"; fullName = "JoyPixels Free License Agreement"; url = "https://cdn.joypixels.com/free-license.pdf"; diff --git a/pkgs/by-name/ju/jupp/package.nix b/pkgs/by-name/ju/jupp/package.nix index 7afa43f08580..e72539894175 100644 --- a/pkgs/by-name/ju/jupp/package.nix +++ b/pkgs/by-name/ju/jupp/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { because these behave better overall. ''; license = lib.licenses.gpl1Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/jw/jwasm/package.nix b/pkgs/by-name/jw/jwasm/package.nix index 0a3a58da1b45..a367cb77e13d 100644 --- a/pkgs/by-name/jw/jwasm/package.nix +++ b/pkgs/by-name/jw/jwasm/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/Baron-von-Riedesel/JWasm/releases/tag/${finalAttrs.src.rev}"; mainProgram = "jwasm"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/jx/jxplorer/package.nix b/pkgs/by-name/jx/jxplorer/package.nix index eded0c62f9f2..83f7dbd0fb99 100644 --- a/pkgs/by-name/jx/jxplorer/package.nix +++ b/pkgs/by-name/jx/jxplorer/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { description = "Java Ldap Browser"; homepage = "https://sourceforge.net/projects/jxplorer/"; license = lib.licenses.asl11; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "jxplorer"; }; diff --git a/pkgs/by-name/kb/kbs2/package.nix b/pkgs/by-name/kb/kbs2/package.nix index 335ce566ef41..084b3b38443f 100644 --- a/pkgs/by-name/kb/kbs2/package.nix +++ b/pkgs/by-name/kb/kbs2/package.nix @@ -51,6 +51,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/woodruffw/kbs2"; changelog = "https://github.com/woodruffw/kbs2/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/kc/kconfig-frontends/package.nix b/pkgs/by-name/kc/kconfig-frontends/package.nix index d7ec574a5963..250a7390c068 100644 --- a/pkgs/by-name/kc/kconfig-frontends/package.nix +++ b/pkgs/by-name/kc/kconfig-frontends/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation (finalAttrs: { ''; homepage = "https://bitbucket.org/nuttx/tools/"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ke/kermit-terminal/package.nix b/pkgs/by-name/ke/kermit-terminal/package.nix index c19cae129bd1..677d51238628 100644 --- a/pkgs/by-name/ke/kermit-terminal/package.nix +++ b/pkgs/by-name/ke/kermit-terminal/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/orhun/kermit/releases/tag/${finalAttrs.version}"; license = lib.licenses.gpl3Only; mainProgram = "kermit"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ke/keyguard/package.nix b/pkgs/by-name/ke/keyguard/package.nix index cfd46dbb20b6..23451e2f7db3 100644 --- a/pkgs/by-name/ke/keyguard/package.nix +++ b/pkgs/by-name/ke/keyguard/package.nix @@ -99,7 +99,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/AChep/keyguard-app"; mainProgram = "Keyguard"; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; sourceProvenance = with lib.sourceTypes; [ fromSource binaryBytecode diff --git a/pkgs/by-name/ke/keystone/package.nix b/pkgs/by-name/ke/keystone/package.nix index d06237c85f64..234c05d905d7 100644 --- a/pkgs/by-name/ke/keystone/package.nix +++ b/pkgs/by-name/ke/keystone/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { description = "Lightweight multi-platform, multi-architecture assembler framework"; homepage = "https://www.keystone-engine.org"; license = licenses.gpl2Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "kstool"; platforms = platforms.unix; }; diff --git a/pkgs/by-name/ki/kid3/package.nix b/pkgs/by-name/ki/kid3/package.nix index 863401dff3d5..83bc340d5d28 100644 --- a/pkgs/by-name/ki/kid3/package.nix +++ b/pkgs/by-name/ki/kid3/package.nix @@ -138,7 +138,7 @@ stdenv.mkDerivation (finalAttrs: { "kid3" else "kid3-cli"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ki/killerbee/package.nix b/pkgs/by-name/ki/killerbee/package.nix index 75b40b64e875..51a03e71f0b3 100644 --- a/pkgs/by-name/ki/killerbee/package.nix +++ b/pkgs/by-name/ki/killerbee/package.nix @@ -19,7 +19,7 @@ python3.pkgs.buildPythonApplication rec { build-system = with python3.pkgs; [ setuptools ]; - buildInputs = with python3.pkgs; [ libgcrypt ]; + buildInputs = [ libgcrypt ]; dependencies = with python3.pkgs; [ pyserial diff --git a/pkgs/by-name/ki/killport/package.nix b/pkgs/by-name/ki/killport/package.nix index 8e72bde34fc6..579156558456 100644 --- a/pkgs/by-name/ki/killport/package.nix +++ b/pkgs/by-name/ki/killport/package.nix @@ -29,7 +29,7 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Command-line tool to easily kill processes running on a specified port"; homepage = "https://github.com/jkfran/killport"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "killport"; }; }) diff --git a/pkgs/by-name/ki/kingstvis/package.nix b/pkgs/by-name/ki/kingstvis/package.nix index e11cba5e1a84..285bbe0cc960 100644 --- a/pkgs/by-name/ki/kingstvis/package.nix +++ b/pkgs/by-name/ki/kingstvis/package.nix @@ -24,24 +24,22 @@ in buildFHSEnv { inherit pname version; - targetPkgs = - pkgs: - (with pkgs; [ - dbus - fontconfig - freetype - glib - libGL - xkeyboard_config - xorg.libICE - xorg.libSM - xorg.libX11 - xorg.libXext - xorg.libXi - xorg.libXrender - xorg.libxcb - zlib - ]); + targetPkgs = pkgs: ([ + dbus + fontconfig + freetype + glib + libGL + xkeyboard_config + xorg.libICE + xorg.libSM + xorg.libX11 + xorg.libXext + xorg.libXi + xorg.libXrender + xorg.libxcb + zlib + ]); extraInstallCommands = '' install -Dvm644 ${src}/Driver/99-Kingst.rules \ diff --git a/pkgs/by-name/ki/kirc/package.nix b/pkgs/by-name/ki/kirc/package.nix index fe686ff30cb4..5e54aa140640 100644 --- a/pkgs/by-name/ki/kirc/package.nix +++ b/pkgs/by-name/ki/kirc/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { - Easy customized color scheme definition. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ki/kitex/package.nix b/pkgs/by-name/ki/kitex/package.nix index a91cd97fb742..577667d9abba 100644 --- a/pkgs/by-name/ki/kitex/package.nix +++ b/pkgs/by-name/ki/kitex/package.nix @@ -40,7 +40,7 @@ buildGoModule (finalAttrs: { description = "High-performance and strong-extensibility Golang RPC framework"; homepage = "https://github.com/cloudwego/kitex"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "kitex"; }; }) diff --git a/pkgs/by-name/kr/krillinai/package.nix b/pkgs/by-name/kr/krillinai/package.nix index 7f55eb498c13..44f7bc7024da 100644 --- a/pkgs/by-name/kr/krillinai/package.nix +++ b/pkgs/by-name/kr/krillinai/package.nix @@ -50,6 +50,6 @@ buildGoModule (finalAttrs: { changelog = "https://github.com/krillinai/KlicStudio/releases/tag/v${finalAttrs.version}"; mainProgram = "krillinai-desktop"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/kt/ktextaddons/package.nix b/pkgs/by-name/kt/ktextaddons/package.nix index ba772e95f50f..0e0d32871452 100644 --- a/pkgs/by-name/kt/ktextaddons/package.nix +++ b/pkgs/by-name/kt/ktextaddons/package.nix @@ -35,6 +35,6 @@ stdenv.mkDerivation (finalAttrs: { description = "Various text handling addons for KDE applications"; homepage = "https://invent.kde.org/libraries/ktextaddons/"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/kt/ktimetracker/package.nix b/pkgs/by-name/kt/ktimetracker/package.nix index 6e68df6a10b9..a541ddddcbbc 100644 --- a/pkgs/by-name/kt/ktimetracker/package.nix +++ b/pkgs/by-name/kt/ktimetracker/package.nix @@ -51,6 +51,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "ktimetracker"; license = lib.licenses.gpl2; homepage = "https://userbase.kde.org/KTimeTracker"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ku/kubespy/package.nix b/pkgs/by-name/ku/kubespy/package.nix index 6a28cc19c305..2d1550409fb9 100644 --- a/pkgs/by-name/ku/kubespy/package.nix +++ b/pkgs/by-name/ku/kubespy/package.nix @@ -39,6 +39,6 @@ buildGoModule rec { mainProgram = "kubespy"; homepage = "https://github.com/pulumi/kubespy"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ky/kytea/package.nix b/pkgs/by-name/ky/kytea/package.nix index a34a9c1f8638..5b8e380d96ca 100644 --- a/pkgs/by-name/ky/kytea/package.nix +++ b/pkgs/by-name/ky/kytea/package.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; diff --git a/pkgs/by-name/ky/kyverno-chainsaw/package.nix b/pkgs/by-name/ky/kyverno-chainsaw/package.nix index a4601063fbf6..fc7ef4b320a8 100644 --- a/pkgs/by-name/ky/kyverno-chainsaw/package.nix +++ b/pkgs/by-name/ky/kyverno-chainsaw/package.nix @@ -60,6 +60,6 @@ buildGoModule rec { * Asserting operators react (or not) the way they should ''; mainProgram = "chainsaw"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/la/labwc/package.nix b/pkgs/by-name/la/labwc/package.nix index 671e5516dddc..1397a9dd6bf4 100644 --- a/pkgs/by-name/la/labwc/package.nix +++ b/pkgs/by-name/la/labwc/package.nix @@ -91,7 +91,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/labwc/labwc/blob/master/NEWS.md"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "labwc"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; }; }) diff --git a/pkgs/by-name/la/lavalauncher/package.nix b/pkgs/by-name/la/lavalauncher/package.nix index 5f9c60ee55c5..871c515a3bc8 100644 --- a/pkgs/by-name/la/lavalauncher/package.nix +++ b/pkgs/by-name/la/lavalauncher/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://git.sr.ht/~leon_plickat/lavalauncher/refs/${finalAttrs.src.rev}"; license = lib.licenses.gpl3Plus; mainProgram = "lavalauncher"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; # meson.build:52:23: ERROR: C shared or static library 'rt' not found # https://logs.ofborg.org/?key=nixos/nixpkgs.340239&attempt_id=1f05cada-67d2-4cfe-b6a8-4bf4571b9375 diff --git a/pkgs/by-name/la/lazysql/package.nix b/pkgs/by-name/la/lazysql/package.nix index 25e3cc2c8f77..e70efd6f60d5 100644 --- a/pkgs/by-name/la/lazysql/package.nix +++ b/pkgs/by-name/la/lazysql/package.nix @@ -37,7 +37,7 @@ buildGoModule rec { description = "Cross-platform TUI database management tool written in Go"; homepage = "https://github.com/jorgerojas26/lazysql"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "lazysql"; }; } diff --git a/pkgs/by-name/lb/lbreakouthd/package.nix b/pkgs/by-name/lb/lbreakouthd/package.nix index 50485017bcdc..501f0d3fa149 100644 --- a/pkgs/by-name/lb/lbreakouthd/package.nix +++ b/pkgs/by-name/lb/lbreakouthd/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Widescreen Breakout clone"; license = lib.licenses.gpl2Plus; mainProgram = "lbreakouthd"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (SDL2.meta) platforms; }; }) diff --git a/pkgs/by-name/le/learn6502/package.nix b/pkgs/by-name/le/learn6502/package.nix index cdb1c2bf935f..a70e22fbef3c 100644 --- a/pkgs/by-name/le/learn6502/package.nix +++ b/pkgs/by-name/le/learn6502/package.nix @@ -78,6 +78,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "eu.jumplink.Learn6502"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/le/lefthook/package.nix b/pkgs/by-name/le/lefthook/package.nix index 2b0ea65a9890..acea00b9b3c0 100644 --- a/pkgs/by-name/le/lefthook/package.nix +++ b/pkgs/by-name/le/lefthook/package.nix @@ -44,6 +44,6 @@ buildGoModule { changelog = "https://github.com/evilmartians/lefthook/raw/v${version}/CHANGELOG.md"; license = lib.licenses.mit; mainProgram = "lefthook"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/le/lenpaste/package.nix b/pkgs/by-name/le/lenpaste/package.nix index fedcb677a2dd..f697efa9c2f7 100644 --- a/pkgs/by-name/le/lenpaste/package.nix +++ b/pkgs/by-name/le/lenpaste/package.nix @@ -34,7 +34,7 @@ buildGoModule rec { description = "Web service that allows you to share notes anonymously, an alternative to pastebin.com"; homepage = "https://git.lcomrade.su/root/lenpaste"; license = licenses.agpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "lenpaste"; }; } diff --git a/pkgs/by-name/le/lexbor/package.nix b/pkgs/by-name/le/lexbor/package.nix index f7a54bb353a0..f5136271ce9f 100644 --- a/pkgs/by-name/le/lexbor/package.nix +++ b/pkgs/by-name/le/lexbor/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/lexbor/lexbor"; changelog = "https://github.com/lexbor/lexbor/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "lexbor"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/li/lib3mf/package.nix b/pkgs/by-name/li/lib3mf/package.nix index cc23872e70b6..54090fdda1da 100644 --- a/pkgs/by-name/li/lib3mf/package.nix +++ b/pkgs/by-name/li/lib3mf/package.nix @@ -104,7 +104,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Reference implementation of the 3D Manufacturing Format file standard"; homepage = "https://3mf.io/"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; }) diff --git a/pkgs/by-name/li/libaal/package.nix b/pkgs/by-name/li/libaal/package.nix index b51ff4b1c231..720fb7b9b547 100644 --- a/pkgs/by-name/li/libaal/package.nix +++ b/pkgs/by-name/li/libaal/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { homepage = "http://www.namesys.com/"; description = "Support library for Reiser4"; license = lib.licenses.gpl2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/li/libarchive-qt/package.nix b/pkgs/by-name/li/libarchive-qt/package.nix index 015f30014c32..0286a374fba3 100644 --- a/pkgs/by-name/li/libarchive-qt/package.nix +++ b/pkgs/by-name/li/libarchive-qt/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "archiver"; homepage = "https://gitlab.com/marcusbritanicus/libarchive-qt"; license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libbytesize/package.nix b/pkgs/by-name/li/libbytesize/package.nix index 08f53f158f14..d0a91f8d9dcc 100644 --- a/pkgs/by-name/li/libbytesize/package.nix +++ b/pkgs/by-name/li/libbytesize/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Tiny library providing a C 'class' for working with arbitrary big sizes in bytes"; license = lib.licenses.lgpl2Plus; mainProgram = "bscalc"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/li/libcaca/package.nix b/pkgs/by-name/li/libcaca/package.nix index c5b636a7934c..dfb291589566 100644 --- a/pkgs/by-name/li/libcaca/package.nix +++ b/pkgs/by-name/li/libcaca/package.nix @@ -80,7 +80,7 @@ stdenv.mkDerivation rec { Libcaca was written by Sam Hocevar and Jean-Yves Lamoureux. ''; license = licenses.wtfpl; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/li/libde265/package.nix b/pkgs/by-name/li/libde265/package.nix index 6749f8d7ccf2..a9c4b5d9dacd 100644 --- a/pkgs/by-name/li/libde265/package.nix +++ b/pkgs/by-name/li/libde265/package.nix @@ -47,6 +47,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "dec265"; license = lib.licenses.lgpl3; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/li/libdrm/package.nix b/pkgs/by-name/li/libdrm/package.nix index 4d8e32919968..ab6b129b9b1c 100644 --- a/pkgs/by-name/li/libdrm/package.nix +++ b/pkgs/by-name/li/libdrm/package.nix @@ -83,6 +83,6 @@ stdenv.mkDerivation rec { ''; license = licenses.mit; platforms = lib.subtractLists platforms.darwin platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libeb/package.nix b/pkgs/by-name/li/libeb/package.nix index 0c6f380bfd45..2bf7ff792da5 100644 --- a/pkgs/by-name/li/libeb/package.nix +++ b/pkgs/by-name/li/libeb/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { the EB, EBG, EBXA, EBXA-C, S-EBXA and EPWING formats. ''; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/li/libedit/package.nix b/pkgs/by-name/li/libedit/package.nix index f55f9b75524f..14bb1f1c532c 100644 --- a/pkgs/by-name/li/libedit/package.nix +++ b/pkgs/by-name/li/libedit/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { similar to those found in GNU Readline. ''; license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libgbinder/package.nix b/pkgs/by-name/li/libgbinder/package.nix index 1091edbee99c..a7f97cd3bc15 100644 --- a/pkgs/by-name/li/libgbinder/package.nix +++ b/pkgs/by-name/li/libgbinder/package.nix @@ -60,6 +60,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/mer-hybris/libgbinder"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libgcrypt/package.nix b/pkgs/by-name/li/libgcrypt/package.nix index 219ebec7c2d8..19af33a686ad 100644 --- a/pkgs/by-name/li/libgcrypt/package.nix +++ b/pkgs/by-name/li/libgcrypt/package.nix @@ -124,6 +124,6 @@ stdenv.mkDerivation rec { description = "General-purpose cryptographic library"; license = lib.licenses.lgpl2Plus; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libglibutil/package.nix b/pkgs/by-name/li/libglibutil/package.nix index 63d212faf79a..97216255c6d4 100644 --- a/pkgs/by-name/li/libglibutil/package.nix +++ b/pkgs/by-name/li/libglibutil/package.nix @@ -56,6 +56,6 @@ stdenv.mkDerivation rec { homepage = "https://git.sailfishos.org/mer-core/libglibutil"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libglvnd/package.nix b/pkgs/by-name/li/libglvnd/package.nix index becaba64f22a..4da13406f394 100644 --- a/pkgs/by-name/li/libglvnd/package.nix +++ b/pkgs/by-name/li/libglvnd/package.nix @@ -112,6 +112,6 @@ stdenv.mkDerivation rec { platforms = lib.platforms.unix; # https://gitlab.freedesktop.org/glvnd/libglvnd/-/issues/212 badPlatforms = [ lib.systems.inspect.platformPatterns.isStatic ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libgpg-error/package.nix b/pkgs/by-name/li/libgpg-error/package.nix index 6fc3c016cefe..93cfb30a0459 100644 --- a/pkgs/by-name/li/libgpg-error/package.nix +++ b/pkgs/by-name/li/libgpg-error/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation ( license = lib.licenses.lgpl2Plus; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } // genPosixLockObjOnlyAttrs diff --git a/pkgs/by-name/li/libisoburn/package.nix b/pkgs/by-name/li/libisoburn/package.nix index b607d656f88f..f7e4eefb7df7 100644 --- a/pkgs/by-name/li/libisoburn/package.nix +++ b/pkgs/by-name/li/libisoburn/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://dev.lovelyhq.com/libburnia/libisoburn/src/tag/${finalAttrs.src.rev}/ChangeLog"; license = lib.licenses.gpl2Plus; mainProgram = "osirrox"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (libisofs.meta) platforms; }; }) diff --git a/pkgs/by-name/li/libkqueue/package.nix b/pkgs/by-name/li/libkqueue/package.nix index 639638d9a9a9..e52e7436b585 100644 --- a/pkgs/by-name/li/libkqueue/package.nix +++ b/pkgs/by-name/li/libkqueue/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/mheily/libkqueue"; changelog = "https://github.com/mheily/libkqueue/raw/v${version}/ChangeLog"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/li/libmd/package.nix b/pkgs/by-name/li/libmd/package.nix index 6924c0cd3a67..fc1ff6b95895 100644 --- a/pkgs/by-name/li/libmd/package.nix +++ b/pkgs/by-name/li/libmd/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { beerware publicDomain ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libmpdclient/package.nix b/pkgs/by-name/li/libmpdclient/package.nix index a45beb0e27f2..eb80534dbfe3 100644 --- a/pkgs/by-name/li/libmpdclient/package.nix +++ b/pkgs/by-name/li/libmpdclient/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.musicpd.org/libs/libmpdclient/"; changelog = "https://raw.githubusercontent.com/MusicPlayerDaemon/libmpdclient/${finalAttrs.src.rev}/NEWS"; license = with lib.licenses; [ bsd2 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/libplacebo/package.nix b/pkgs/by-name/li/libplacebo/package.nix index 9ec11a30a720..b9f2bc36706a 100644 --- a/pkgs/by-name/li/libplacebo/package.nix +++ b/pkgs/by-name/li/libplacebo/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation rec { homepage = "https://code.videolan.org/videolan/libplacebo"; changelog = "https://code.videolan.org/videolan/libplacebo/-/tags/v${version}"; license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libplacebo_5/package.nix b/pkgs/by-name/li/libplacebo_5/package.nix index 57ea29690d5b..a792ccde88ad 100644 --- a/pkgs/by-name/li/libplacebo_5/package.nix +++ b/pkgs/by-name/li/libplacebo_5/package.nix @@ -82,7 +82,7 @@ stdenv.mkDerivation rec { homepage = "https://code.videolan.org/videolan/libplacebo"; changelog = "https://code.videolan.org/videolan/libplacebo/-/tags/v${version}"; license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libremidi/package.nix b/pkgs/by-name/li/libremidi/package.nix index 4490619f1f71..690994c9f76b 100644 --- a/pkgs/by-name/li/libremidi/package.nix +++ b/pkgs/by-name/li/libremidi/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/jcelerier/libremidi"; description = "Modern C++ MIDI real-time & file I/O library"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libsurvive/package.nix b/pkgs/by-name/li/libsurvive/package.nix index d9c1ce51ba81..d97f35160dcb 100644 --- a/pkgs/by-name/li/libsurvive/package.nix +++ b/pkgs/by-name/li/libsurvive/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { description = "Open Source Lighthouse Tracking System"; homepage = "https://github.com/cntools/libsurvive"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/li/libtcod/package.nix b/pkgs/by-name/li/libtcod/package.nix index 75969c606f62..fb98b42c47c5 100644 --- a/pkgs/by-name/li/libtcod/package.nix +++ b/pkgs/by-name/li/libtcod/package.nix @@ -52,6 +52,6 @@ stdenv.mkDerivation { homepage = "http://roguecentral.org/doryen/libtcod/"; license = lib.licenses.bsd3; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/li/libtomcrypt/package.nix b/pkgs/by-name/li/libtomcrypt/package.nix index 198328869b05..3aaab9b7a303 100644 --- a/pkgs/by-name/li/libtomcrypt/package.nix +++ b/pkgs/by-name/li/libtomcrypt/package.nix @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { publicDomain wtfpl ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/li/libverto/package.nix b/pkgs/by-name/li/libverto/package.nix index 7d148878bdf4..b1a6756dd3be 100644 --- a/pkgs/by-name/li/libverto/package.nix +++ b/pkgs/by-name/li/libverto/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: { offload the choice of the main loop to the application. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/li/libwacom/package.nix b/pkgs/by-name/li/libwacom/package.nix index 48fdad5f87b1..17b41e59128f 100644 --- a/pkgs/by-name/li/libwacom/package.nix +++ b/pkgs/by-name/li/libwacom/package.nix @@ -47,12 +47,10 @@ stdenv.mkDerivation (finalAttrs: { udev libevdev libgudev - (python3.withPackages ( - pp: with pp; [ - pp.libevdev - pp.pyudev - ] - )) + (python3.withPackages (pp: [ + pp.libevdev + pp.pyudev + ])) ]; mesonFlags = [ diff --git a/pkgs/by-name/li/libxeddsa/package.nix b/pkgs/by-name/li/libxeddsa/package.nix index 123c8a070343..fbc4e4224650 100644 --- a/pkgs/by-name/li/libxeddsa/package.nix +++ b/pkgs/by-name/li/libxeddsa/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/Syndace/libxeddsa/blob/v${finalAttrs.version}/CHANGELOG.md"; license = lib.licenses.mit; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/li/libz/package.nix b/pkgs/by-name/li/libz/package.nix index a7bca564e783..626aa1f0f573 100644 --- a/pkgs/by-name/li/libz/package.nix +++ b/pkgs/by-name/li/libz/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://sortix.org/libz/"; description = "Clean fork of zlib"; license = [ lib.licenses.zlib ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/li/lightning/package.nix b/pkgs/by-name/li/lightning/package.nix index 22d5982a28bd..086ac44f3d53 100644 --- a/pkgs/by-name/li/lightning/package.nix +++ b/pkgs/by-name/li/lightning/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { it abstracts over the target CPU, as it exposes to the clients a standardized RISC instruction set inspired by the MIPS and SPARC chips. ''; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = with lib.licenses; [ lgpl3Plus ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # failing tests diff --git a/pkgs/by-name/li/linux-wallpaperengine/package.nix b/pkgs/by-name/li/linux-wallpaperengine/package.nix index ac562221a0f1..8de9dab140fc 100644 --- a/pkgs/by-name/li/linux-wallpaperengine/package.nix +++ b/pkgs/by-name/li/linux-wallpaperengine/package.nix @@ -122,7 +122,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/Almamu/linux-wallpaperengine"; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "linux-wallpaperengine"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/li/listen1/package.nix b/pkgs/by-name/li/listen1/package.nix index db06b72058f1..69eadb71aeed 100644 --- a/pkgs/by-name/li/listen1/package.nix +++ b/pkgs/by-name/li/listen1/package.nix @@ -28,7 +28,7 @@ appimageTools.wrapType2 { description = "One for all free music in China"; homepage = "http://listen1.github.io/listen1/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; mainProgram = "listen1"; diff --git a/pkgs/by-name/li/live555/package.nix b/pkgs/by-name/li/live555/package.nix index 8431ff9e3974..cf873d769410 100644 --- a/pkgs/by-name/li/live555/package.nix +++ b/pkgs/by-name/li/live555/package.nix @@ -150,7 +150,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP)"; changelog = "http://www.live555.com/liveMedia/public/changelog.txt"; license = with lib.licenses; [ lgpl21Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/lo/loguru/package.nix b/pkgs/by-name/lo/loguru/package.nix index 0077135547d1..1e756df73b51 100644 --- a/pkgs/by-name/lo/loguru/package.nix +++ b/pkgs/by-name/lo/loguru/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation { description = "Lightweight C++ logging library"; homepage = "https://github.com/emilk/loguru"; license = lib.licenses.unlicense; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/lp/lpairs2/package.nix b/pkgs/by-name/lp/lpairs2/package.nix index 1676bf86719e..ce1248cd2e26 100644 --- a/pkgs/by-name/lp/lpairs2/package.nix +++ b/pkgs/by-name/lp/lpairs2/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Matching the pairs - a typical Memory Game"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "lpairs2"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ls/lsb-release/package.nix b/pkgs/by-name/ls/lsb-release/package.nix index 2a0dac91bcb9..0adb79795794 100644 --- a/pkgs/by-name/ls/lsb-release/package.nix +++ b/pkgs/by-name/ls/lsb-release/package.nix @@ -22,7 +22,7 @@ replaceVarsWith { description = "Prints certain LSB (Linux Standard Base) and Distribution information"; mainProgram = "lsb_release"; license = [ licenses.mit ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/lu/luabridge/package.nix b/pkgs/by-name/lu/luabridge/package.nix index 5a04966bf9d4..2294b2aaec9b 100644 --- a/pkgs/by-name/lu/luabridge/package.nix +++ b/pkgs/by-name/lu/luabridge/package.nix @@ -31,6 +31,6 @@ stdenvNoCC.mkDerivation rec { changelog = "https://github.com/vinniefalco/LuaBridge/blob/${version}/CHANGES.md"; platforms = lib.platforms.unix; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/lu/luckybackup/package.nix b/pkgs/by-name/lu/luckybackup/package.nix index 725b1376ffc7..58a318f20aa6 100644 --- a/pkgs/by-name/lu/luckybackup/package.nix +++ b/pkgs/by-name/lu/luckybackup/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "luckybackup"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/lu/lukesmithxyz-st/package.nix b/pkgs/by-name/lu/lukesmithxyz-st/package.nix index d6b91a1c9713..c1a8ede4823e 100644 --- a/pkgs/by-name/lu/lukesmithxyz-st/package.nix +++ b/pkgs/by-name/lu/lukesmithxyz-st/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation { homepage = "https://github.com/LukeSmithxyz/st"; description = "Luke Smith's fork of st"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/lx/lx-music-desktop/package.nix b/pkgs/by-name/lx/lx-music-desktop/package.nix index 9e006dc702bc..fe5945404505 100644 --- a/pkgs/by-name/lx/lx-music-desktop/package.nix +++ b/pkgs/by-name/lx/lx-music-desktop/package.nix @@ -94,6 +94,6 @@ buildNpmPackage rec { platforms = electron.meta.platforms; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; mainProgram = "lx-music-desktop"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/lz/lzsa/package.nix b/pkgs/by-name/lz/lzsa/package.nix index 85866a2243c2..ef06433c7860 100644 --- a/pkgs/by-name/lz/lzsa/package.nix +++ b/pkgs/by-name/lz/lzsa/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Byte-aligned, efficient lossless packer that is optimized for fast decompression on 8-bit micros"; mainProgram = "lzsa"; license = with lib.licenses; [ cc0 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ma/maim/package.nix b/pkgs/by-name/ma/maim/package.nix index 8e6af15c623b..eca2e188eba1 100644 --- a/pkgs/by-name/ma/maim/package.nix +++ b/pkgs/by-name/ma/maim/package.nix @@ -76,6 +76,6 @@ stdenv.mkDerivation rec { changelog = "https://github.com/naelstrof/maim/releases/tag/v${version}"; platforms = lib.platforms.all; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ma/mangayomi/package.nix b/pkgs/by-name/ma/mangayomi/package.nix index b093d409157c..f6660267dac9 100644 --- a/pkgs/by-name/ma/mangayomi/package.nix +++ b/pkgs/by-name/ma/mangayomi/package.nix @@ -27,7 +27,7 @@ let description = "Reading manga, novels, and watching animes"; homepage = "https://github.com/kodjodevf/mangayomi"; license = with lib.licenses; [ asl20 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/ma/marble-shell-theme/package.nix b/pkgs/by-name/ma/marble-shell-theme/package.nix index a4d954b826fe..a6a8e80d42c9 100644 --- a/pkgs/by-name/ma/marble-shell-theme/package.nix +++ b/pkgs/by-name/ma/marble-shell-theme/package.nix @@ -53,6 +53,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { platforms = lib.platforms.linux; homepage = "https://github.com/imarkoff/Marble-shell-theme"; changelog = "https://github.com/imarkoff/Marble-shell-theme/releases/tag/${finalAttrs.version}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ma/marlin-calc/package.nix b/pkgs/by-name/ma/marlin-calc/package.nix index 6573acea72ca..3aaab1652fc1 100644 --- a/pkgs/by-name/ma/marlin-calc/package.nix +++ b/pkgs/by-name/ma/marlin-calc/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { homepage = "https://github.com/eyal0/Marlin"; description = "Marlin 3D printer timing simulator"; license = licenses.gpl3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/marlin-calc.x86_64-darwin mainProgram = "marlin-calc"; diff --git a/pkgs/by-name/ma/marp-cli/package.nix b/pkgs/by-name/ma/marp-cli/package.nix index 278f0fba01ac..aea856212481 100644 --- a/pkgs/by-name/ma/marp-cli/package.nix +++ b/pkgs/by-name/ma/marp-cli/package.nix @@ -26,7 +26,7 @@ buildNpmPackage rec { description = "About A CLI interface for Marp and Marpit based converters"; homepage = "https://github.com/marp-team/marp-cli"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = nodejs.meta.platforms; mainProgram = "marp"; }; diff --git a/pkgs/by-name/ma/marst/package.nix b/pkgs/by-name/ma/marst/package.nix index 94cd0cdd2ffe..70f3f3f8cfdb 100644 --- a/pkgs/by-name/ma/marst/package.nix +++ b/pkgs/by-name/ma/marst/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { from some other representations to MARST representation. ''; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/ma/martian-mono/package.nix b/pkgs/by-name/ma/martian-mono/package.nix index 1d81abb109c6..8b24e598a0a8 100644 --- a/pkgs/by-name/ma/martian-mono/package.nix +++ b/pkgs/by-name/ma/martian-mono/package.nix @@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation rec { homepage = "https://github.com/evilmartians/mono"; changelog = "https://github.com/evilmartians/mono/raw/v${version}/Changelog.md"; license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/ma/material-cursors/package.nix b/pkgs/by-name/ma/material-cursors/package.nix index 895ce54e19d5..eba08e2b51b8 100644 --- a/pkgs/by-name/ma/material-cursors/package.nix +++ b/pkgs/by-name/ma/material-cursors/package.nix @@ -38,6 +38,6 @@ stdenvNoCC.mkDerivation { homepage = "https://github.com/varlesh/material-cursors"; license = lib.licenses.gpl3Only; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ma/mathemagix/package.nix b/pkgs/by-name/ma/mathemagix/package.nix index 06165a100fee..1a61e289c4d5 100644 --- a/pkgs/by-name/ma/mathemagix/package.nix +++ b/pkgs/by-name/ma/mathemagix/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Free computer algebra and analysis system consisting of a high level language with a compiler and a series of mathematical libraries"; homepage = "https://www.mathemagix.org/"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/s3-storage-provider.nix b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/s3-storage-provider.nix index 8acfbaad952f..20fae6d26a83 100644 --- a/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/s3-storage-provider.nix +++ b/pkgs/by-name/ma/matrix-synapse-unwrapped/plugins/s3-storage-provider.nix @@ -57,6 +57,6 @@ buildPythonPackage rec { homepage = "https://github.com/matrix-org/synapse-s3-storage-provider"; changelog = "https://github.com/matrix-org/synapse-s3-storage-provider/releases/tag/v${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/mc/mcaimi-st/package.nix b/pkgs/by-name/mc/mcaimi-st/package.nix index 7dd3764102a2..12740a89e103 100644 --- a/pkgs/by-name/mc/mcaimi-st/package.nix +++ b/pkgs/by-name/mc/mcaimi-st/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { description = "Suckless Terminal fork"; mainProgram = "st"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/mc/mcphost/package.nix b/pkgs/by-name/mc/mcphost/package.nix index b8945c80e96c..0cca8016a24e 100644 --- a/pkgs/by-name/mc/mcphost/package.nix +++ b/pkgs/by-name/mc/mcphost/package.nix @@ -21,7 +21,7 @@ buildGoModule (finalAttrs: { description = "CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP)"; homepage = "https://github.com/mark3labs/mcphost"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "mcphost"; }; }) diff --git a/pkgs/by-name/mc/mcpp/package.nix b/pkgs/by-name/mc/mcpp/package.nix index a90a19953473..ffefd2cfb8a0 100644 --- a/pkgs/by-name/mc/mcpp/package.nix +++ b/pkgs/by-name/mc/mcpp/package.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Matsui's C preprocessor"; mainProgram = "mcpp"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/md/md-tangle/package.nix b/pkgs/by-name/md/md-tangle/package.nix index 9f530492496e..5a5432b664b2 100644 --- a/pkgs/by-name/md/md-tangle/package.nix +++ b/pkgs/by-name/md/md-tangle/package.nix @@ -30,6 +30,6 @@ python3.pkgs.buildPythonPackage rec { description = "Generates (\"tangles\") source code from Markdown documents"; mainProgram = "md-tangle"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/md/md4c/package.nix b/pkgs/by-name/md/md4c/package.nix index 100d49e21abc..10fe4712b78d 100644 --- a/pkgs/by-name/md/md4c/package.nix +++ b/pkgs/by-name/md/md4c/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://github.com/mity/md4c/blob/${finalAttrs.src.rev}/CHANGELOG.md"; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "md2html"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/me/mediathekview/package.nix b/pkgs/by-name/me/mediathekview/package.nix index 9c7490aee8d8..ca8a0850be48 100644 --- a/pkgs/by-name/me/mediathekview/package.nix +++ b/pkgs/by-name/me/mediathekview/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { sourceProvenance = with sourceTypes; [ binaryBytecode ]; license = licenses.gpl3Plus; mainProgram = "mediathek"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; } diff --git a/pkgs/by-name/me/mednafen-server/package.nix b/pkgs/by-name/me/mednafen-server/package.nix index 40302691125b..d9e6b8c6f6ed 100644 --- a/pkgs/by-name/me/mednafen-server/package.nix +++ b/pkgs/by-name/me/mednafen-server/package.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "mednafen-server"; homepage = "https://mednafen.github.io/"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/me/mednafen/package.nix b/pkgs/by-name/me/mednafen/package.nix index ab7665120b46..8596d5c1c4b4 100644 --- a/pkgs/by-name/me/mednafen/package.nix +++ b/pkgs/by-name/me/mednafen/package.nix @@ -109,7 +109,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl2Plus; mainProgram = "mednafen"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/me/mednaffe/package.nix b/pkgs/by-name/me/mednaffe/package.nix index c21689a9be44..0ce060463d6a 100644 --- a/pkgs/by-name/me/mednaffe/package.nix +++ b/pkgs/by-name/me/mednaffe/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "mednaffe"; homepage = "https://github.com/AmatCoder/mednaffe"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/me/mesonlsp/package.nix b/pkgs/by-name/me/mesonlsp/package.nix index 0346ea5a08ee..48303931dba5 100644 --- a/pkgs/by-name/me/mesonlsp/package.nix +++ b/pkgs/by-name/me/mesonlsp/package.nix @@ -164,7 +164,7 @@ stdenv'.mkDerivation (finalAttrs: { changelog = "https://github.com/JCWasmx86/mesonlsp/releases/tag/v${finalAttrs.version}"; license = licenses.gpl3Plus; mainProgram = "mesonlsp"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; # ../src/liblog/log.cpp:41:7: error: call to 'format' is ambiguous broken = stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64; diff --git a/pkgs/by-name/me/mesos-dns/package.nix b/pkgs/by-name/me/mesos-dns/package.nix index cb9babdb6c16..1cfe8b8dd8d0 100644 --- a/pkgs/by-name/me/mesos-dns/package.nix +++ b/pkgs/by-name/me/mesos-dns/package.nix @@ -29,7 +29,7 @@ buildGoModule (finalAttrs: { changelog = "https://github.com/m3scluster/mesos-dns/releases/tag/v${finalAttrs.version}"; description = "DNS-based service discovery for Mesos"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "mesos-dns"; }; }) diff --git a/pkgs/by-name/me/metadata/package.nix b/pkgs/by-name/me/metadata/package.nix index be00516bcb27..eb7163eafaa4 100644 --- a/pkgs/by-name/me/metadata/package.nix +++ b/pkgs/by-name/me/metadata/package.nix @@ -54,7 +54,7 @@ rustPlatform.buildRustPackage (finalAttrs: { meta = { description = "Media metadata parser and formatter designed for human consumption, powered by FFmpeg"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.mit; homepage = "https://github.com/zmwangx/metadata"; mainProgram = "metadata"; diff --git a/pkgs/by-name/me/metis-prover/package.nix b/pkgs/by-name/me/metis-prover/package.nix index 2333798257a7..7167fc864024 100644 --- a/pkgs/by-name/me/metis-prover/package.nix +++ b/pkgs/by-name/me/metis-prover/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { mainProgram = "metis"; homepage = "https://www.gilith.com/research/metis/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/mf/mfcl2740dwlpr/package.nix b/pkgs/by-name/mf/mfcl2740dwlpr/package.nix index 0ef534151001..a75dfff7b5af 100644 --- a/pkgs/by-name/mf/mfcl2740dwlpr/package.nix +++ b/pkgs/by-name/mf/mfcl2740dwlpr/package.nix @@ -64,6 +64,6 @@ stdenv.mkDerivation (finalAttrs: { "x86_64-linux" "i686-linux" ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/mi/millet/package.nix b/pkgs/by-name/mi/millet/package.nix index 079036b1d558..499462279c4e 100644 --- a/pkgs/by-name/mi/millet/package.nix +++ b/pkgs/by-name/mi/millet/package.nix @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage rec { lib.licenses.mit # or lib.licenses.asl20 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "millet-ls"; }; } diff --git a/pkgs/by-name/mi/minesector/package.nix b/pkgs/by-name/mi/minesector/package.nix index d9a39851e3b1..27fd547d5166 100644 --- a/pkgs/by-name/mi/minesector/package.nix +++ b/pkgs/by-name/mi/minesector/package.nix @@ -53,6 +53,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/grassdne/minesector"; license = lib.licenses.mit; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/mj/mjpg-streamer/package.nix b/pkgs/by-name/mj/mjpg-streamer/package.nix index 813636ec747f..27addc586a7f 100644 --- a/pkgs/by-name/mj/mjpg-streamer/package.nix +++ b/pkgs/by-name/mj/mjpg-streamer/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { description = "Takes JPGs from Linux-UVC compatible webcams, filesystem or other input plugins and streams them as M-JPEG via HTTP to webbrowsers, VLC and other software"; platforms = platforms.linux; license = licenses.gpl2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "mjpg_streamer"; }; } diff --git a/pkgs/by-name/mo/mobile-broadband-provider-info/package.nix b/pkgs/by-name/mo/mobile-broadband-provider-info/package.nix index 3847221a8fac..20058aa6a22d 100644 --- a/pkgs/by-name/mo/mobile-broadband-provider-info/package.nix +++ b/pkgs/by-name/mo/mobile-broadband-provider-info/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { homepage = "https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info"; changelog = "https://gitlab.gnome.org/GNOME/mobile-broadband-provider-info/-/blob/${version}/NEWS?ref_type=tags"; license = lib.licenses.publicDomain; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/mo/modd/package.nix b/pkgs/by-name/mo/modd/package.nix index 4fbd8979740a..697fea21d22b 100644 --- a/pkgs/by-name/mo/modd/package.nix +++ b/pkgs/by-name/mo/modd/package.nix @@ -27,6 +27,6 @@ buildGoModule { mainProgram = "modd"; homepage = "https://github.com/cortesi/modd"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/mo/moe/package.nix b/pkgs/by-name/mo/moe/package.nix index c897d3d22cdd..329bec821eb3 100644 --- a/pkgs/by-name/mo/moe/package.nix +++ b/pkgs/by-name/mo/moe/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: { delimiter matching, text conversion from/to UTF-8, romanization, etc. ''; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "moe"; }; diff --git a/pkgs/by-name/mo/mommy/package.nix b/pkgs/by-name/mo/mommy/package.nix index 91565fe829d3..84cde48ec1df 100644 --- a/pkgs/by-name/mo/mommy/package.nix +++ b/pkgs/by-name/mo/mommy/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { changelog = "https://github.com/FWDekker/mommy/blob/v${version}/CHANGELOG.md"; license = lib.licenses.unlicense; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "mommy"; }; } diff --git a/pkgs/by-name/mo/mona-sans/package.nix b/pkgs/by-name/mo/mona-sans/package.nix index 4c45eae71bd8..009a54015b16 100644 --- a/pkgs/by-name/mo/mona-sans/package.nix +++ b/pkgs/by-name/mo/mona-sans/package.nix @@ -36,7 +36,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { by all major browsers, allowing for performance benefits and granular design control of the typeface's weight, width, and slant. ''; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/mo/monaspace/package.nix b/pkgs/by-name/mo/monaspace/package.nix index 2e04c1b59ea0..2330e3aed858 100644 --- a/pkgs/by-name/mo/monaspace/package.nix +++ b/pkgs/by-name/mo/monaspace/package.nix @@ -55,7 +55,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { ''; homepage = "https://monaspace.githubnext.com/"; license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/mo/mongodb-ce/package.nix b/pkgs/by-name/mo/mongodb-ce/package.nix index c24905f300ee..2cf0fd98afa8 100644 --- a/pkgs/by-name/mo/mongodb-ce/package.nix +++ b/pkgs/by-name/mo/mongodb-ce/package.nix @@ -121,7 +121,7 @@ stdenv.mkDerivation (finalAttrs: { This pre-compiled binary distribution package provides the MongoDB daemon (mongod) and the MongoDB Shard utility (mongos). ''; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.attrNames finalAttrs.passthru.sources; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; diff --git a/pkgs/by-name/mo/monkeysphere/package.nix b/pkgs/by-name/mo/monkeysphere/package.nix index 9206530afd00..affe82b4671e 100644 --- a/pkgs/by-name/mo/monkeysphere/package.nix +++ b/pkgs/by-name/mo/monkeysphere/package.nix @@ -136,6 +136,6 @@ stdenv.mkDerivation rec { ''; license = licenses.gpl3Plus; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/mp/mpc/package.nix b/pkgs/by-name/mp/mpc/package.nix index 2ebdbaf48841..6999414d814c 100644 --- a/pkgs/by-name/mp/mpc/package.nix +++ b/pkgs/by-name/mp/mpc/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://raw.githubusercontent.com/MusicPlayerDaemon/mpc/refs/heads/master/NEWS"; license = lib.licenses.gpl2Plus; mainProgram = "mpc"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/mp/mpvc/package.nix b/pkgs/by-name/mp/mpvc/package.nix index 7780f59e9dd9..abea95c49c73 100644 --- a/pkgs/by-name/mp/mpvc/package.nix +++ b/pkgs/by-name/mp/mpvc/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Mpc-like control interface for mpv"; license = lib.licenses.mit; mainProgram = "mpvc"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ms/msr/package.nix b/pkgs/by-name/ms/msr/package.nix index 3ff8529f6184..e99d2cec9736 100644 --- a/pkgs/by-name/ms/msr/package.nix +++ b/pkgs/by-name/ms/msr/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { description = "Linux tool to display or modify x86 model-specific registers (MSRs)"; mainProgram = "msr"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = [ "i686-linux" "x86_64-linux" diff --git a/pkgs/by-name/mu/multimarkdown/package.nix b/pkgs/by-name/mu/multimarkdown/package.nix index b69eb9fc27d1..d59930818d71 100644 --- a/pkgs/by-name/mu/multimarkdown/package.nix +++ b/pkgs/by-name/mu/multimarkdown/package.nix @@ -54,6 +54,6 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ mit ]; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/mu/multipass/package.nix b/pkgs/by-name/mu/multipass/package.nix index eed8aac15206..527b9964101b 100644 --- a/pkgs/by-name/mu/multipass/package.nix +++ b/pkgs/by-name/mu/multipass/package.nix @@ -22,7 +22,7 @@ let commonMeta = { homepage = "https://multipass.run"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/mu/musicus/package.nix b/pkgs/by-name/mu/musicus/package.nix index 171de94aa11f..fda320de1a16 100644 --- a/pkgs/by-name/mu/musicus/package.nix +++ b/pkgs/by-name/mu/musicus/package.nix @@ -68,6 +68,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "musicus"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/mu/mutagen/package.nix b/pkgs/by-name/mu/mutagen/package.nix index fdc14fa7f14e..6169af0e880d 100644 --- a/pkgs/by-name/mu/mutagen/package.nix +++ b/pkgs/by-name/mu/mutagen/package.nix @@ -64,7 +64,7 @@ buildGoModule rec { description = "Make remote development work with your local tools"; homepage = "https://mutagen.io/"; changelog = "https://github.com/mutagen-io/mutagen/releases/tag/v${version}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.mit; }; diff --git a/pkgs/by-name/my/myks/package.nix b/pkgs/by-name/my/myks/package.nix index 28a8a91d702b..bbd822c31a56 100644 --- a/pkgs/by-name/my/myks/package.nix +++ b/pkgs/by-name/my/myks/package.nix @@ -49,7 +49,7 @@ buildGoModule rec { description = "Configuration framework for Kubernetes applications"; license = lib.licenses.mit; homepage = "https://github.com/mykso/myks"; - maintainers = with lib.maintainers; [ + maintainers = [ lib.maintainers.kbudde lib.maintainers.zebradil ]; diff --git a/pkgs/by-name/my/myrddin/package.nix b/pkgs/by-name/my/myrddin/package.nix index d941dfc6dcaa..cd1708ace2cc 100644 --- a/pkgs/by-name/my/myrddin/package.nix +++ b/pkgs/by-name/my/myrddin/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { description = "Systems language that is both powerful and fun to use"; homepage = "https://myrlang.org/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; # darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin broken = diff --git a/pkgs/by-name/na/navicat-premium/package.nix b/pkgs/by-name/na/navicat-premium/package.nix index b6db6192fe64..cc42ed4057d7 100644 --- a/pkgs/by-name/na/navicat-premium/package.nix +++ b/pkgs/by-name/na/navicat-premium/package.nix @@ -40,7 +40,7 @@ appimageTools.wrapType2 { description = "Database development tool that allows you to simultaneously connect to many databases"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/ne/nengo-gui/package.nix b/pkgs/by-name/ne/nengo-gui/package.nix index d7b2418a189c..dddff73e70fb 100644 --- a/pkgs/by-name/ne/nengo-gui/package.nix +++ b/pkgs/by-name/ne/nengo-gui/package.nix @@ -26,6 +26,6 @@ python3Packages.buildPythonPackage rec { description = "Nengo interactive visualizer"; homepage = "https://nengo.ai/"; license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ne/nestopia-ue/package.nix b/pkgs/by-name/ne/nestopia-ue/package.nix index 04d8ffb21b6a..618c7c9cefb5 100644 --- a/pkgs/by-name/ne/nestopia-ue/package.nix +++ b/pkgs/by-name/ne/nestopia-ue/package.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://raw.githubusercontent.com/0ldsk00l/nestopia/${finalAttrs.src.rev}/ChangeLog"; license = lib.licenses.gpl2Plus; mainProgram = "nestopia"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ne/networkmanager_dmenu/package.nix b/pkgs/by-name/ne/networkmanager_dmenu/package.nix index ab2a6f779513..3b32c430fef7 100644 --- a/pkgs/by-name/ne/networkmanager_dmenu/package.nix +++ b/pkgs/by-name/ne/networkmanager_dmenu/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { wrapPythonPrograms ''; - meta = with lib; { + meta = { description = "Small script to manage NetworkManager connections with dmenu instead of nm-applet"; mainProgram = "networkmanager_dmenu"; homepage = "https://github.com/firecat53/networkmanager-dmenu"; diff --git a/pkgs/by-name/ne/newelle/package.nix b/pkgs/by-name/ne/newelle/package.nix index b4731d40e555..145729cc7301 100644 --- a/pkgs/by-name/ne/newelle/package.nix +++ b/pkgs/by-name/ne/newelle/package.nix @@ -104,6 +104,6 @@ python3Packages.buildPythonApplication { mainProgram = "newelle"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ne/nexus/package.nix b/pkgs/by-name/ne/nexus/package.nix index 23d3aa7c9a0a..3076d36c5d3d 100644 --- a/pkgs/by-name/ne/nexus/package.nix +++ b/pkgs/by-name/ne/nexus/package.nix @@ -69,6 +69,6 @@ stdenv.mkDerivation rec { "CVE-2023-6378" "CVE-2023-4218" ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ni/nix-template/package.nix b/pkgs/by-name/ni/nix-template/package.nix index d16754d58c5c..e454b017109f 100644 --- a/pkgs/by-name/ni/nix-template/package.nix +++ b/pkgs/by-name/ni/nix-template/package.nix @@ -50,7 +50,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/jonringer/nix-template/"; changelog = "https://github.com/jonringer/nix-template/releases/tag/v${version}"; license = lib.licenses.cc0; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "nix-template"; }; } diff --git a/pkgs/by-name/no/nomnatong/package.nix b/pkgs/by-name/no/nomnatong/package.nix index 9c157b1c3e85..0b5970b65a65 100644 --- a/pkgs/by-name/no/nomnatong/package.nix +++ b/pkgs/by-name/no/nomnatong/package.nix @@ -49,7 +49,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://nomfoundation.org/nom-tools/Nom-Font"; description = "Hán-Nôm Coded Character Set and Nom Na Tong Regular Reference Font"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/no/notation/package.nix b/pkgs/by-name/no/notation/package.nix index a91c39e25334..e800d429736e 100644 --- a/pkgs/by-name/no/notation/package.nix +++ b/pkgs/by-name/no/notation/package.nix @@ -50,7 +50,7 @@ buildGoModule (finalAttrs: { description = "CLI tool to sign and verify OCI artifacts and container images"; homepage = "https://notaryproject.dev/"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "notation"; }; }) diff --git a/pkgs/by-name/no/notcurses/package.nix b/pkgs/by-name/no/notcurses/package.nix index 0c7af4913fe5..fb40509ba8e4 100644 --- a/pkgs/by-name/no/notcurses/package.nix +++ b/pkgs/by-name/no/notcurses/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation rec { replacement for NCURSES on existing systems. ''; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; inherit (ncurses.meta) platforms; }; } diff --git a/pkgs/by-name/no/notejot/package.nix b/pkgs/by-name/no/notejot/package.nix index b2545754249d..0e49409a0a7d 100644 --- a/pkgs/by-name/no/notejot/package.nix +++ b/pkgs/by-name/no/notejot/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/lainsce/notejot"; description = "Stupidly-simple notes app"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "io.github.lainsce.Notejot"; }; diff --git a/pkgs/by-name/nv/nv-codec-headers/package.nix b/pkgs/by-name/nv/nv-codec-headers/package.nix index fe14a78e3eff..1e0ae0656ebc 100644 --- a/pkgs/by-name/nv/nv-codec-headers/package.nix +++ b/pkgs/by-name/nv/nv-codec-headers/package.nix @@ -34,7 +34,7 @@ stdenvNoCC.mkDerivation { homepage = "https://ffmpeg.org/"; downloadPage = "https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git"; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/nw/nwg-drawer/package.nix b/pkgs/by-name/nw/nwg-drawer/package.nix index a372d9260c1a..3531b6c88f3b 100644 --- a/pkgs/by-name/nw/nwg-drawer/package.nix +++ b/pkgs/by-name/nw/nwg-drawer/package.nix @@ -65,7 +65,7 @@ buildGoModule { changelog = "https://github.com/nwg-piotr/nwg-drawer/releases/tag/${src.rev}"; license = with lib.licenses; [ agpl3Plus ]; mainProgram = "nwg-drawer"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; linux; }; } diff --git a/pkgs/by-name/nx/nxengine-evo/assets.nix b/pkgs/by-name/nx/nxengine-evo/assets.nix index 6d72a2dabe3d..c8df83daea74 100644 --- a/pkgs/by-name/nx/nxengine-evo/assets.nix +++ b/pkgs/by-name/nx/nxengine-evo/assets.nix @@ -31,7 +31,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { license = with lib.licenses; [ unfreeRedistributable ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; diff --git a/pkgs/by-name/nx/nxengine-evo/package.nix b/pkgs/by-name/nx/nxengine-evo/package.nix index 7ef2b10a3522..385f4ad6cfca 100644 --- a/pkgs/by-name/nx/nxengine-evo/package.nix +++ b/pkgs/by-name/nx/nxengine-evo/package.nix @@ -88,7 +88,7 @@ stdenv.mkDerivation (finalAttrs: { gpl3Plus ]; mainProgram = "nx"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ob/obs-cmd/package.nix b/pkgs/by-name/ob/obs-cmd/package.nix index 7370c1d1fd3f..1eabe9359f10 100644 --- a/pkgs/by-name/ob/obs-cmd/package.nix +++ b/pkgs/by-name/ob/obs-cmd/package.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/grigio/obs-cmd"; changelog = "https://github.com/grigio/obs-cmd/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "obs-cmd"; }; }) diff --git a/pkgs/by-name/og/oguri/package.nix b/pkgs/by-name/og/oguri/package.nix index 91c5f64bd8a9..05c3f8396e47 100644 --- a/pkgs/by-name/og/oguri/package.nix +++ b/pkgs/by-name/og/oguri/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { homepage = "https://github.com/vilhalmer/oguri/"; description = "Very nice animated wallpaper daemon for Wayland compositors"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; broken = stdenv.hostPlatform.isDarwin; # this should be enfoced by wayland platforms in the future }; diff --git a/pkgs/by-name/on/onboard/package.nix b/pkgs/by-name/on/onboard/package.nix index e2169cde465d..6de18aa2945f 100644 --- a/pkgs/by-name/on/onboard/package.nix +++ b/pkgs/by-name/on/onboard/package.nix @@ -192,7 +192,7 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { homepage = "https://launchpad.net/onboard"; description = "Onscreen keyboard useful for tablet PC users and for mobility impaired users"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.gpl3; }; } diff --git a/pkgs/by-name/on/oneanime/package.nix b/pkgs/by-name/on/oneanime/package.nix index 7467a5901c9c..f6dcac455da8 100644 --- a/pkgs/by-name/on/oneanime/package.nix +++ b/pkgs/by-name/on/oneanime/package.nix @@ -188,7 +188,7 @@ flutter329.buildFlutterApplication rec { homepage = "https://github.com/Predidit/oneAnime"; mainProgram = "oneanime"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/on/onscripter-en/package.nix b/pkgs/by-name/on/onscripter-en/package.nix index e333459d8ff9..57c2703b691e 100644 --- a/pkgs/by-name/on/onscripter-en/package.nix +++ b/pkgs/by-name/on/onscripter-en/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Japanese visual novel scripting engine"; license = lib.licenses.gpl2Plus; mainProgram = "onscripter-en"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/on/onthespot/package.nix b/pkgs/by-name/on/onthespot/package.nix index 86bd42383db6..428bcad8eed1 100644 --- a/pkgs/by-name/on/onthespot/package.nix +++ b/pkgs/by-name/on/onthespot/package.nix @@ -30,7 +30,7 @@ python3.pkgs.buildPythonApplication rec { pythonRelaxDeps = true; - nativeBuildInputs = with python3.pkgs; [ + nativeBuildInputs = [ copyDesktopItems libsForQt5.wrapQtAppsHook ]; diff --git a/pkgs/by-name/op/open-pdf-sign/package.nix b/pkgs/by-name/op/open-pdf-sign/package.nix index d3e036d64427..cc7470ea4f59 100644 --- a/pkgs/by-name/op/open-pdf-sign/package.nix +++ b/pkgs/by-name/op/open-pdf-sign/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Digitally sign PDF files from your commandline"; homepage = "https://github.com/open-pdf-sign/open-pdf-sign"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; mainProgram = "open-pdf-sign"; diff --git a/pkgs/by-name/op/open-wbo/package.nix b/pkgs/by-name/op/open-wbo/package.nix index 207aa80669b9..a99305706303 100644 --- a/pkgs/by-name/op/open-wbo/package.nix +++ b/pkgs/by-name/op/open-wbo/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64); description = "State-of-the-art MaxSAT and Pseudo-Boolean solver"; mainProgram = "open-wbo"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; license = licenses.mit; homepage = "http://sat.inesc-id.pt/open-wbo/"; diff --git a/pkgs/by-name/op/opendrop/package.nix b/pkgs/by-name/op/opendrop/package.nix index 1a82fbbf076d..1e2d1cb28e6e 100644 --- a/pkgs/by-name/op/opendrop/package.nix +++ b/pkgs/by-name/op/opendrop/package.nix @@ -48,7 +48,7 @@ python3Packages.buildPythonApplication rec { homepage = "https://owlink.org/"; changelog = "https://github.com/seemoo-lab/opendrop/releases/tag/${src.rev}"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "opendrop"; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/by-name/op/opengrok/package.nix b/pkgs/by-name/op/opengrok/package.nix index f25fb15d8ecb..7fa973b8df80 100644 --- a/pkgs/by-name/op/opengrok/package.nix +++ b/pkgs/by-name/op/opengrok/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { homepage = "https://opengrok.github.io/OpenGrok/"; changelog = "https://github.com/oracle/opengrok/releases/tag/${version}"; license = lib.licenses.cddl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/op/openh264/package.nix b/pkgs/by-name/op/openh264/package.nix index dd3c0893c854..3e0d12e14257 100644 --- a/pkgs/by-name/op/openh264/package.nix +++ b/pkgs/by-name/op/openh264/package.nix @@ -57,7 +57,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Codec library which supports H.264 encoding and decoding"; changelog = "https://github.com/cisco/openh264/releases/tag/${finalAttrs.src.rev}"; license = with lib.licenses; [ bsd2 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; # See meson.build platforms = lib.platforms.windows diff --git a/pkgs/by-name/op/openjk/package.nix b/pkgs/by-name/op/openjk/package.nix index 9a7c87f889a2..5a13942c017d 100644 --- a/pkgs/by-name/op/openjk/package.nix +++ b/pkgs/by-name/op/openjk/package.nix @@ -117,6 +117,6 @@ stdenv.mkDerivation { homepage = "https://github.com/JACoders/OpenJK"; license = licenses.gpl2Only; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/op/openmsx/package.nix b/pkgs/by-name/op/openmsx/package.nix index 627f69585683..ab305c0dbef8 100644 --- a/pkgs/by-name/op/openmsx/package.nix +++ b/pkgs/by-name/op/openmsx/package.nix @@ -85,7 +85,7 @@ stdenv.mkDerivation (finalAttrs: { boost gpl2Plus ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; mainProgram = "openmsx"; }; diff --git a/pkgs/by-name/op/opensearch-cli/package.nix b/pkgs/by-name/op/opensearch-cli/package.nix index 827c5bb224b2..b7226c5d6e1d 100644 --- a/pkgs/by-name/op/opensearch-cli/package.nix +++ b/pkgs/by-name/op/opensearch-cli/package.nix @@ -33,7 +33,7 @@ buildGoModule rec { homepage = "https://github.com/opensearch-project/opensearch-cli"; license = lib.licenses.asl20; mainProgram = "opensearch-cli"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; sourceProvenance = with lib.sourceTypes; [ fromSource ]; }; diff --git a/pkgs/by-name/op/opensearch/package.nix b/pkgs/by-name/op/opensearch/package.nix index 413b3e76aa03..6ef6a4075b9f 100644 --- a/pkgs/by-name/op/opensearch/package.nix +++ b/pkgs/by-name/op/opensearch/package.nix @@ -61,7 +61,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { description = "Open Source, Distributed, RESTful Search Engine"; homepage = "https://github.com/opensearch-project/OpenSearch"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; sourceProvenance = with lib.sourceTypes; [ binaryBytecode diff --git a/pkgs/by-name/op/opensurge/package.nix b/pkgs/by-name/op/opensurge/package.nix index a9e7decde0f5..f488d3dd7e4d 100644 --- a/pkgs/by-name/op/opensurge/package.nix +++ b/pkgs/by-name/op/opensurge/package.nix @@ -59,6 +59,6 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/alemart/opensurge/blob/v${finalAttrs.version}/CHANGES.md"; license = lib.licenses.gpl3Only; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/op/ophis/package.nix b/pkgs/by-name/op/ophis/package.nix index a3f93a76da3f..d453bc01a247 100644 --- a/pkgs/by-name/op/ophis/package.nix +++ b/pkgs/by-name/op/ophis/package.nix @@ -36,7 +36,7 @@ let ''; license = lib.licenses.mit; mainProgram = "ophis"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }; in diff --git a/pkgs/by-name/or/orthanc-framework/package.nix b/pkgs/by-name/or/orthanc-framework/package.nix index 1767ce9181bd..cb995af664eb 100644 --- a/pkgs/by-name/or/orthanc-framework/package.nix +++ b/pkgs/by-name/or/orthanc-framework/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { description = "SDK for building Orthanc plugins and related applications"; homepage = "https://www.orthanc-server.com/"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/or/orthanc/package.nix b/pkgs/by-name/or/orthanc/package.nix index b56e60151150..10be6a1e2d21 100644 --- a/pkgs/by-name/or/orthanc/package.nix +++ b/pkgs/by-name/or/orthanc/package.nix @@ -127,7 +127,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.orthanc-server.com/"; license = lib.licenses.gpl3Plus; mainProgram = "Orthanc"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ot/otb/package.nix b/pkgs/by-name/ot/otb/package.nix index 544a4a46fcec..b2fb21c6f830 100644 --- a/pkgs/by-name/ot/otb/package.nix +++ b/pkgs/by-name/ot/otb/package.nix @@ -33,7 +33,7 @@ enableMiscellaneous ? true, enableOpenMP ? false, enablePython ? true, - extraPythonPackages ? ps: with ps; [ ], + extraPythonPackages ? ps: [ ], enableRemote ? true, enableShark ? true, enableSAR ? true, diff --git a/pkgs/by-name/pa/pa_applet/package.nix b/pkgs/by-name/pa/pa_applet/package.nix index 39501d0dd189..2a73119b80e0 100644 --- a/pkgs/by-name/pa/pa_applet/package.nix +++ b/pkgs/by-name/pa/pa_applet/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation { description = ""; mainProgram = "pa-applet"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/pa/pack/package.nix b/pkgs/by-name/pa/pack/package.nix index 2d57430ac5d5..570ba547d382 100644 --- a/pkgs/by-name/pa/pack/package.nix +++ b/pkgs/by-name/pa/pack/package.nix @@ -45,6 +45,6 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/buildpacks/pack/"; license = lib.licenses.asl20; mainProgram = "pack"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/pa/pam_gnupg/package.nix b/pkgs/by-name/pa/pam_gnupg/package.nix index 96b0491d3ef3..9b0bc45984af 100644 --- a/pkgs/by-name/pa/pam_gnupg/package.nix +++ b/pkgs/by-name/pa/pam_gnupg/package.nix @@ -37,6 +37,6 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/cruegge/pam-gnupg"; license = licenses.gpl3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pa/pamix/package.nix b/pkgs/by-name/pa/pamix/package.nix index cdcb4a9390e1..84398e33a790 100644 --- a/pkgs/by-name/pa/pamix/package.nix +++ b/pkgs/by-name/pa/pamix/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/patroclos/PAmix/releases/tag/${finalAttrs.version}"; license = lib.licenses.mit; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "pamix"; }; }) diff --git a/pkgs/by-name/pa/passwdqc/package.nix b/pkgs/by-name/pa/passwdqc/package.nix index 2c4250c3409e..5188b6640223 100644 --- a/pkgs/by-name/pa/passwdqc/package.nix +++ b/pkgs/by-name/pa/passwdqc/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.openwall.com/passwdqc/"; description = "Passphrase strength checking and enforcement"; license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "passwdqc"; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/pa/pastel/package.nix b/pkgs/by-name/pa/pastel/package.nix index 09035a26a7ce..b62666463f8d 100644 --- a/pkgs/by-name/pa/pastel/package.nix +++ b/pkgs/by-name/pa/pastel/package.nix @@ -25,7 +25,7 @@ rustPlatform.buildRustPackage rec { asl20 # or mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "pastel"; }; } diff --git a/pkgs/by-name/pa/patray/package.nix b/pkgs/by-name/pa/patray/package.nix index efb4a2d9f404..5650cf156e5f 100644 --- a/pkgs/by-name/pa/patray/package.nix +++ b/pkgs/by-name/pa/patray/package.nix @@ -41,7 +41,7 @@ python312.pkgs.buildPythonApplication rec { description = "Yet another tray pulseaudio frontend"; homepage = "https://github.com/pohmelie/patray"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "patray"; }; } diff --git a/pkgs/by-name/pa/pax/package.nix b/pkgs/by-name/pa/pax/package.nix index 9dbf30620d73..f3ef5f3700a7 100644 --- a/pkgs/by-name/pa/pax/package.nix +++ b/pkgs/by-name/pa/pax/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { description = "POSIX standard archive tool from MirBSD"; homepage = "https://www.mirbsd.org/pax.htm"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pd/pdfium-binaries/package.nix b/pkgs/by-name/pd/pdfium-binaries/package.nix index 3ee8b3072c4f..ae3ef3a350dd 100644 --- a/pkgs/by-name/pd/pdfium-binaries/package.nix +++ b/pkgs/by-name/pd/pdfium-binaries/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation (finalAttrs: { mit ]; sourceProvenance = with lib.sourceTypes; [ binaryBytecode ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "aarch64-linux" "aarch64-darwin" diff --git a/pkgs/by-name/pg/pgcenter/package.nix b/pkgs/by-name/pg/pgcenter/package.nix index 4d5642488f58..a73011a61d91 100644 --- a/pkgs/by-name/pg/pgcenter/package.nix +++ b/pkgs/by-name/pg/pgcenter/package.nix @@ -38,7 +38,7 @@ buildGoModule rec { changelog = "https://github.com/lesovsky/pgcenter/raw/v${version}/doc/Changelog"; description = "Command-line admin tool for observing and troubleshooting PostgreSQL"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "pgcenter"; }; } diff --git a/pkgs/by-name/pg/pgf-pie/package.nix b/pkgs/by-name/pg/pgf-pie/package.nix index 07bace2d8bfc..bab0d54745d4 100644 --- a/pkgs/by-name/pg/pgf-pie/package.nix +++ b/pkgs/by-name/pg/pgf-pie/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/pgf-tikz/pgf-pie"; description = "Some LaTeX macros for pie charts using the PGF/TikZ package"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgf-umlcd/package.nix b/pkgs/by-name/pg/pgf-umlcd/package.nix index 0e27c34a656a..1958a4e84f01 100644 --- a/pkgs/by-name/pg/pgf-umlcd/package.nix +++ b/pkgs/by-name/pg/pgf-umlcd/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/pgf-tikz/pgf-umlcd"; description = "Some LaTeX macros for UML Class Diagrams"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgf-umlsd/package.nix b/pkgs/by-name/pg/pgf-umlsd/package.nix index e350cbe224a3..cbdb0b5df3ce 100644 --- a/pkgs/by-name/pg/pgf-umlsd/package.nix +++ b/pkgs/by-name/pg/pgf-umlsd/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation { homepage = "https://github.com/pgf-tikz/pgf-umlsd"; description = "Some LaTeX macros for UML Sequence Diagrams"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/pg/pgformatter/package.nix b/pkgs/by-name/pg/pgformatter/package.nix index 6a70d626eece..05a491f51baa 100644 --- a/pkgs/by-name/pg/pgformatter/package.nix +++ b/pkgs/by-name/pg/pgformatter/package.nix @@ -44,7 +44,7 @@ perlPackages.buildPerlPackage rec { description = "PostgreSQL SQL syntax beautifier that can work as a console program or as a CGI"; homepage = "https://github.com/darold/pgFormatter"; changelog = "https://github.com/darold/pgFormatter/releases/tag/v${version}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = [ lib.licenses.postgresql lib.licenses.artistic2 diff --git a/pkgs/by-name/pg/pgfplots/package.nix b/pkgs/by-name/pg/pgfplots/package.nix index 3a68e41e0d0a..86e13f6cab11 100644 --- a/pkgs/by-name/pg/pgfplots/package.nix +++ b/pkgs/by-name/pg/pgfplots/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://pgfplots.sourceforge.net"; description = "TeX package to draw plots directly in TeX in two and three dimensions"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; }) diff --git a/pkgs/by-name/pg/pgmoneta/package.nix b/pkgs/by-name/pg/pgmoneta/package.nix index dbbc75cfb2af..2ccbb8ebe9ec 100644 --- a/pkgs/by-name/pg/pgmoneta/package.nix +++ b/pkgs/by-name/pg/pgmoneta/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { homepage = "https://pgmoneta.github.io/"; changelog = "https://github.com/pgmoneta/pgmoneta/releases/tag/${version}"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/pg/pgpdump/package.nix b/pkgs/by-name/pg/pgpdump/package.nix index 0c54efb558ae..cf85be6a3732 100644 --- a/pkgs/by-name/pg/pgpdump/package.nix +++ b/pkgs/by-name/pg/pgpdump/package.nix @@ -33,6 +33,6 @@ stdenv.mkDerivation rec { homepage = "http://www.mew.org/~kazu/proj/pgpdump/en/"; license = licenses.bsd3; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ph/phel/package.nix b/pkgs/by-name/ph/phel/package.nix index fd3c3395894a..ecd56c3f4650 100644 --- a/pkgs/by-name/ph/phel/package.nix +++ b/pkgs/by-name/ph/phel/package.nix @@ -28,6 +28,6 @@ php.buildComposerProject2 (finalAttrs: { homepage = "https://github.com/phel-lang/phel-lang"; license = lib.licenses.mit; mainProgram = "phel"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/pi/picoprobe-udev-rules/package.nix b/pkgs/by-name/pi/picoprobe-udev-rules/package.nix index 8d81c86e3d7e..d599e186664b 100644 --- a/pkgs/by-name/pi/picoprobe-udev-rules/package.nix +++ b/pkgs/by-name/pi/picoprobe-udev-rules/package.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation { description = "Picoprobe udev rules list"; platforms = platforms.linux; license = licenses.gpl2Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pi/pipeworld/package.nix b/pkgs/by-name/pi/pipeworld/package.nix index 70f27e1a7e61..016d371dcbc9 100644 --- a/pkgs/by-name/pi/pipeworld/package.nix +++ b/pkgs/by-name/pi/pipeworld/package.nix @@ -45,7 +45,7 @@ stdenvNoCC.mkDerivation (finalPackages: { terminal emulator. ''; license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/pi/pius/package.nix b/pkgs/by-name/pi/pius/package.nix index e6bb76143622..a6384b2d70a8 100644 --- a/pkgs/by-name/pi/pius/package.nix +++ b/pkgs/by-name/pi/pius/package.nix @@ -45,6 +45,6 @@ python3Packages.buildPythonApplication { license = lib.licenses.gpl2Only; platforms = lib.platforms.gnu ++ lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pi/pizarra/package.nix b/pkgs/by-name/pi/pizarra/package.nix index 12c7baae2809..c1aeedc91358 100644 --- a/pkgs/by-name/pi/pizarra/package.nix +++ b/pkgs/by-name/pi/pizarra/package.nix @@ -62,6 +62,6 @@ rustPlatform.buildRustPackage rec { ''; homepage = "https://pizarra.categulario.xyz/en/"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pn/pngquant/package.nix b/pkgs/by-name/pn/pngquant/package.nix index 26d2ced9aa79..14279172431c 100644 --- a/pkgs/by-name/pn/pngquant/package.nix +++ b/pkgs/by-name/pn/pngquant/package.nix @@ -55,6 +55,6 @@ rustPlatform.buildRustPackage rec { bsd2 ]; mainProgram = "pngquant"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/po/ponymix/package.nix b/pkgs/by-name/po/ponymix/package.nix index 8f4cd665acd2..6d4cfaecaeb7 100644 --- a/pkgs/by-name/po/ponymix/package.nix +++ b/pkgs/by-name/po/ponymix/package.nix @@ -32,6 +32,6 @@ stdenv.mkDerivation rec { mainProgram = "ponymix"; license = licenses.mit; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/prettypst/package.nix b/pkgs/by-name/pr/prettypst/package.nix index aef965df3f4d..c8290537a7a7 100644 --- a/pkgs/by-name/pr/prettypst/package.nix +++ b/pkgs/by-name/pr/prettypst/package.nix @@ -23,6 +23,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/antonWetzel/prettypst"; license = lib.licenses.mit; mainProgram = "prettypst"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/prio/package.nix b/pkgs/by-name/pr/prio/package.nix index 73ccca989f73..dc610a27da38 100644 --- a/pkgs/by-name/pr/prio/package.nix +++ b/pkgs/by-name/pr/prio/package.nix @@ -32,7 +32,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/letoram/prio"; description = "Plan9- Rio like Window Manager for Arcan"; license = with lib.licenses; [ bsd3 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/pr/procmail/package.nix b/pkgs/by-name/pr/procmail/package.nix index 86423a3ff491..9460d4add541 100644 --- a/pkgs/by-name/pr/procmail/package.nix +++ b/pkgs/by-name/pr/procmail/package.nix @@ -60,6 +60,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/BuGlessRB/procmail/"; license = licenses.gpl2; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/protoscope/package.nix b/pkgs/by-name/pr/protoscope/package.nix index b44209b93b91..6ed6ecc2bbf2 100644 --- a/pkgs/by-name/pr/protoscope/package.nix +++ b/pkgs/by-name/pr/protoscope/package.nix @@ -27,6 +27,6 @@ buildGoModule { mainProgram = "protoscope"; homepage = "https://github.com/protocolbuffers/protoscope"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/proxypin/package.nix b/pkgs/by-name/pr/proxypin/package.nix index fab5b486c151..2680de0769dd 100644 --- a/pkgs/by-name/pr/proxypin/package.nix +++ b/pkgs/by-name/pr/proxypin/package.nix @@ -46,6 +46,6 @@ flutter332.buildFlutterApplication rec { mainProgram = "ProxyPin"; license = lib.licenses.asl20; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/pr/pru/package.nix b/pkgs/by-name/pr/pru/package.nix index ff063fe8dc1a..04d51cc6a70f 100644 --- a/pkgs/by-name/pr/pru/package.nix +++ b/pkgs/by-name/pr/pru/package.nix @@ -18,7 +18,7 @@ bundlerApp { grep etc.). ''; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; passthru.updateScript = bundlerUpdateScript "pru"; diff --git a/pkgs/by-name/pu/public-sans/package.nix b/pkgs/by-name/pu/public-sans/package.nix index 4c91fc03be41..73ef40dbcb04 100644 --- a/pkgs/by-name/pu/public-sans/package.nix +++ b/pkgs/by-name/pu/public-sans/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation rec { homepage = "https://public-sans.digital.gov/"; changelog = "https://github.com/uswds/public-sans/raw/v${version}/FONTLOG.txt"; license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/pv/pvs-studio/package.nix b/pkgs/by-name/pv/pvs-studio/package.nix index 8789344023e5..b1ec04cbb948 100644 --- a/pkgs/by-name/pv/pvs-studio/package.nix +++ b/pkgs/by-name/pv/pvs-studio/package.nix @@ -77,6 +77,6 @@ stdenv.mkDerivation rec { "x86_64-linux" ]; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/py/pysolfc/package.nix b/pkgs/by-name/py/pysolfc/package.nix index fd16517e20ca..8351380cde95 100644 --- a/pkgs/by-name/py/pysolfc/package.nix +++ b/pkgs/by-name/py/pysolfc/package.nix @@ -103,6 +103,6 @@ python3Packages.buildPythonApplication rec { mainProgram = "pysol.py"; homepage = "https://pysolfc.sourceforge.io"; license = licenses.gpl3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/py/pyspread/package.nix b/pkgs/by-name/py/pyspread/package.nix index 79ff9cc849ac..1eef51e14bae 100644 --- a/pkgs/by-name/py/pyspread/package.nix +++ b/pkgs/by-name/py/pyspread/package.nix @@ -84,6 +84,6 @@ python3.pkgs.buildPythonApplication { ''; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "pyspread"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/qa/qalculate-qt/package.nix b/pkgs/by-name/qa/qalculate-qt/package.nix index 68fb833b5ca3..b121f7d483f4 100644 --- a/pkgs/by-name/qa/qalculate-qt/package.nix +++ b/pkgs/by-name/qa/qalculate-qt/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation (finalAttrs: { meta = with lib; { description = "Ultimate desktop calculator"; homepage = "http://qalculate.github.io"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.gpl2Plus; mainProgram = "qalculate-qt"; platforms = platforms.unix; diff --git a/pkgs/by-name/qd/qdocumentview/package.nix b/pkgs/by-name/qd/qdocumentview/package.nix index 5a8348b42b8e..ecb71dccb54c 100644 --- a/pkgs/by-name/qd/qdocumentview/package.nix +++ b/pkgs/by-name/qd/qdocumentview/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "qdocumentview"; homepage = "https://gitlab.com/extraqt/qdocumentview"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/qr/qrcodegen/package.nix b/pkgs/by-name/qr/qrcodegen/package.nix index c513d7f5088e..09c176cb98e8 100644 --- a/pkgs/by-name/qr/qrcodegen/package.nix +++ b/pkgs/by-name/qr/qrcodegen/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.nayuki.io/page/qr-code-generator-library"; description = "High-quality QR Code generator library in many languages"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/qu/quickjs-ng/package.nix b/pkgs/by-name/qu/quickjs-ng/package.nix index eaefcd0e4193..15c563d00844 100644 --- a/pkgs/by-name/qu/quickjs-ng/package.nix +++ b/pkgs/by-name/qu/quickjs-ng/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Mighty JavaScript engine"; license = lib.licenses.mit; mainProgram = "qjs"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ra/rabbit/package.nix b/pkgs/by-name/ra/rabbit/package.nix index b07920007695..5ab6cf396bf4 100644 --- a/pkgs/by-name/ra/rabbit/package.nix +++ b/pkgs/by-name/ra/rabbit/package.nix @@ -80,6 +80,6 @@ python3'.pkgs.buildPythonApplication { homepage = "https://github.com/natarajan-chidambaram/RABBIT"; license = lib.licenses.asl20; mainProgram = "rabbit"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ra/range-v3/package.nix b/pkgs/by-name/ra/range-v3/package.nix index 0921b26fec25..218eada86da9 100644 --- a/pkgs/by-name/ra/range-v3/package.nix +++ b/pkgs/by-name/ra/range-v3/package.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation rec { changelog = "https://github.com/ericniebler/range-v3/releases/tag/${version}"; license = lib.licenses.boost; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ra/raspa-data/package.nix b/pkgs/by-name/ra/raspa-data/package.nix index 996bc141e706..f61a90e11d68 100644 --- a/pkgs/by-name/ra/raspa-data/package.nix +++ b/pkgs/by-name/ra/raspa-data/package.nix @@ -25,7 +25,7 @@ stdenvNoCC.mkDerivation { # Keep the shebangs of the examples from being patched dontPatchShebangs = true; - meta = with lib; { + meta = { inherit (raspa.meta) homepage license maintainers; description = "Example packs and documentation of RASPA"; outputsToInstall = [ diff --git a/pkgs/by-name/ra/ratpoison/package.nix b/pkgs/by-name/ra/ratpoison/package.nix index 3ce693368117..a410a79039ba 100644 --- a/pkgs/by-name/ra/ratpoison/package.nix +++ b/pkgs/by-name/ra/ratpoison/package.nix @@ -89,7 +89,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl2Plus; mainProgram = "ratpoison"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; }; }) diff --git a/pkgs/by-name/re/rebuilderd/package.nix b/pkgs/by-name/re/rebuilderd/package.nix index 3184c8b77206..a5fadbf38160 100644 --- a/pkgs/by-name/re/rebuilderd/package.nix +++ b/pkgs/by-name/re/rebuilderd/package.nix @@ -113,7 +113,7 @@ rustPlatform.buildRustPackage (finalAttrs: { description = "Independent verification of binary packages - reproducible builds"; homepage = "https://github.com/kpcyrd/rebuilderd"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "rebuilderd"; }; }) diff --git a/pkgs/by-name/re/recutils/package.nix b/pkgs/by-name/re/recutils/package.nix index 91421c9eac0d..10ade56994b6 100644 --- a/pkgs/by-name/re/recutils/package.nix +++ b/pkgs/by-name/re/recutils/package.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation rec { records, each record containing an arbitrary number of named fields. ''; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; } diff --git a/pkgs/by-name/re/reflection-cpp/package.nix b/pkgs/by-name/re/reflection-cpp/package.nix index 76f90c3ab854..0e01f4acd09f 100644 --- a/pkgs/by-name/re/reflection-cpp/package.nix +++ b/pkgs/by-name/re/reflection-cpp/package.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/contour-terminal/reflection-cpp"; license = lib.licenses.asl20; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/re/repro-env/package.nix b/pkgs/by-name/re/repro-env/package.nix index aea545054766..e34a2860868b 100644 --- a/pkgs/by-name/re/repro-env/package.nix +++ b/pkgs/by-name/re/repro-env/package.nix @@ -30,7 +30,7 @@ rustPlatform.buildRustPackage (finalAttrs: { asl20 mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "repro-env"; }; }) diff --git a/pkgs/by-name/re/reqable/package.nix b/pkgs/by-name/re/reqable/package.nix index 66415b4e162c..4c201ef4673b 100644 --- a/pkgs/by-name/re/reqable/package.nix +++ b/pkgs/by-name/re/reqable/package.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "reqable"; license = lib.licenses.unfree; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/re/resorter/package.nix b/pkgs/by-name/re/resorter/package.nix index a575e12b1505..73d53d950b26 100644 --- a/pkgs/by-name/re/resorter/package.nix +++ b/pkgs/by-name/re/resorter/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/hiAndrewQuinn/resorter"; license = with lib.licenses; [ cc0 ]; mainProgram = "resorter"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/re/resvg/package.nix b/pkgs/by-name/re/resvg/package.nix index b84a005839ae..268f1fd82d62 100644 --- a/pkgs/by-name/re/resvg/package.nix +++ b/pkgs/by-name/re/resvg/package.nix @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/RazrFalcon/resvg"; changelog = "https://github.com/RazrFalcon/resvg/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "resvg"; }; } diff --git a/pkgs/by-name/re/reviewdog/package.nix b/pkgs/by-name/re/reviewdog/package.nix index 8a04ed245d48..bad637765bd5 100644 --- a/pkgs/by-name/re/reviewdog/package.nix +++ b/pkgs/by-name/re/reviewdog/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { mainProgram = "reviewdog"; homepage = "https://github.com/reviewdog/reviewdog"; changelog = "https://github.com/reviewdog/reviewdog/blob/v${version}/CHANGELOG.md"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.mit; }; } diff --git a/pkgs/by-name/re/revup/package.nix b/pkgs/by-name/re/revup/package.nix index fe47f2c58437..e9775ef4bd4a 100644 --- a/pkgs/by-name/re/revup/package.nix +++ b/pkgs/by-name/re/revup/package.nix @@ -70,7 +70,7 @@ let ''; license = lib.licenses.mit; mainProgram = "revup"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }; in diff --git a/pkgs/by-name/ri/rinutils/package.nix b/pkgs/by-name/ri/rinutils/package.nix index aa006c14c29d..ecc4155e9849 100644 --- a/pkgs/by-name/ri/rinutils/package.nix +++ b/pkgs/by-name/ri/rinutils/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/shlomif/rinutils"; changelog = "https://github.com/shlomif/rinutils/raw/${version}/NEWS.asciidoc"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/rk/rkvm/package.nix b/pkgs/by-name/rk/rkvm/package.nix index f35cb3326e22..da8eedea434c 100644 --- a/pkgs/by-name/rk/rkvm/package.nix +++ b/pkgs/by-name/rk/rkvm/package.nix @@ -47,6 +47,6 @@ rustPlatform.buildRustPackage rec { changelog = "https://github.com/htrefil/rkvm/releases/tag/${version}"; license = lib.licenses.mit; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ro/roadrunner/package.nix b/pkgs/by-name/ro/roadrunner/package.nix index 52f0886d0ede..3eee75e9c54f 100644 --- a/pkgs/by-name/ro/roadrunner/package.nix +++ b/pkgs/by-name/ro/roadrunner/package.nix @@ -57,6 +57,6 @@ buildGoModule rec { homepage = "https://roadrunner.dev"; license = lib.licenses.mit; mainProgram = "rr"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ro/robin-map/package.nix b/pkgs/by-name/ro/robin-map/package.nix index 63ac6f1130c7..1e69644c4ff4 100644 --- a/pkgs/by-name/ro/robin-map/package.nix +++ b/pkgs/by-name/ro/robin-map/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/Tessil/robin-map"; changelog = "https://github.com/Tessil/robin-map/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/ro/robo/package.nix b/pkgs/by-name/ro/robo/package.nix index 5bb2a7c1c3b1..c1e0ee1fc92c 100644 --- a/pkgs/by-name/ro/robo/package.nix +++ b/pkgs/by-name/ro/robo/package.nix @@ -30,6 +30,6 @@ php82.buildComposerProject2 (finalAttrs: { homepage = "https://github.com/consolidation/robo"; license = lib.licenses.mit; mainProgram = "robo"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ro/robodoc/package.nix b/pkgs/by-name/ro/robodoc/package.nix index a380bb6111cf..4a8bb485a6f6 100644 --- a/pkgs/by-name/ro/robodoc/package.nix +++ b/pkgs/by-name/ro/robodoc/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { Java -- basically any program in which you can use remarks/comments. ''; license = with licenses; gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; }) diff --git a/pkgs/by-name/ro/rootbar/package.nix b/pkgs/by-name/ro/rootbar/package.nix index fdc02ac63b1e..ffb12d18df47 100644 --- a/pkgs/by-name/ro/rootbar/package.nix +++ b/pkgs/by-name/ro/rootbar/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation { was designed to address the lack of good bars for wayland. ''; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ro/roxterm/package.nix b/pkgs/by-name/ro/roxterm/package.nix index b5d7fb4e9bcb..8f66925bb3fb 100644 --- a/pkgs/by-name/ro/roxterm/package.nix +++ b/pkgs/by-name/ro/roxterm/package.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation (finalAttrs: { lgpl3Plus ]; mainProgram = "roxterm"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/rp/rpcemu/package.nix b/pkgs/by-name/rp/rpcemu/package.nix index aa6c5e4f9d89..50e1ea55d587 100644 --- a/pkgs/by-name/rp/rpcemu/package.nix +++ b/pkgs/by-name/rp/rpcemu/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation (finalAttrs: { using them with RPCEmu. ''; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/rs/rst2html5/package.nix b/pkgs/by-name/rs/rst2html5/package.nix index ac18b38ca5e5..cdac3c9fd915 100644 --- a/pkgs/by-name/rs/rst2html5/package.nix +++ b/pkgs/by-name/rs/rst2html5/package.nix @@ -32,7 +32,7 @@ python3.pkgs.buildPythonPackage rec { description = "Converts ReSTructuredText to (X)HTML5"; homepage = "https://rst2html5.readthedocs.io/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "rst2html5"; }; } diff --git a/pkgs/by-name/ru/runmd/package.nix b/pkgs/by-name/ru/runmd/package.nix index eedb5b1895c1..bedc80b5bf07 100644 --- a/pkgs/by-name/ru/runmd/package.nix +++ b/pkgs/by-name/ru/runmd/package.nix @@ -24,7 +24,7 @@ buildNpmPackage (finalAttrs: { homepage = "https://github.com/broofa/runmd"; changelog = "https://github.com/broofa/runmd/blob/${finalAttrs.src.tag}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "runmd"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/rx/rxvt/package.nix b/pkgs/by-name/rx/rxvt/package.nix index 040861b42253..7d2315713994 100644 --- a/pkgs/by-name/rx/rxvt/package.nix +++ b/pkgs/by-name/rx/rxvt/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { omitting some of its little-used features, like Tektronix 4014 emulation and toolkit-style configurability. ''; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.gpl2; platforms = platforms.linux; knownVulnerabilities = [ diff --git a/pkgs/by-name/s3/s3fs/package.nix b/pkgs/by-name/s3/s3fs/package.nix index c2a056a4d5f3..db21c9a425dd 100644 --- a/pkgs/by-name/s3/s3fs/package.nix +++ b/pkgs/by-name/s3/s3fs/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { description = "Mount an S3 bucket as filesystem through FUSE"; homepage = "https://github.com/s3fs-fuse/s3fs-fuse"; changelog = "https://github.com/s3fs-fuse/s3fs-fuse/raw/v${version}/ChangeLog"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.gpl2Only; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/sa/saber/package.nix b/pkgs/by-name/sa/saber/package.nix index 14190fa618b1..318c4f8d258c 100644 --- a/pkgs/by-name/sa/saber/package.nix +++ b/pkgs/by-name/sa/saber/package.nix @@ -97,7 +97,7 @@ flutter335.buildFlutterApplication { homepage = "https://github.com/saber-notes/saber"; mainProgram = "saber"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/sa/salut/package.nix b/pkgs/by-name/sa/salut/package.nix index 7ab3645ad3c6..39384a43b24c 100644 --- a/pkgs/by-name/sa/salut/package.nix +++ b/pkgs/by-name/sa/salut/package.nix @@ -35,7 +35,7 @@ rustPlatform.buildRustPackage { description = "Sleek notification daemon for Wayland"; homepage = "https://gitlab.com/snakedye/salut/-/wikis/Home"; license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "salut"; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/sa/sawfish/package.nix b/pkgs/by-name/sa/sawfish/package.nix index 6482e123d712..3bca8006e213 100644 --- a/pkgs/by-name/sa/sawfish/package.nix +++ b/pkgs/by-name/sa/sawfish/package.nix @@ -95,7 +95,7 @@ stdenv.mkDerivation (finalAttrs: { extensibility or redefinition. ''; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "sawfish"; }; diff --git a/pkgs/by-name/sb/sbom4python/package.nix b/pkgs/by-name/sb/sbom4python/package.nix index 46b2f98a9d46..d45186882529 100644 --- a/pkgs/by-name/sb/sbom4python/package.nix +++ b/pkgs/by-name/sb/sbom4python/package.nix @@ -48,6 +48,6 @@ python3Packages.buildPythonApplication rec { homepage = "https://github.com/anthonyharrison/sbom4python"; license = lib.licenses.asl20; mainProgram = "sbom4python"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/sc/scd2html/package.nix b/pkgs/by-name/sc/scd2html/package.nix index 546cc404dfba..f84d35929832 100644 --- a/pkgs/by-name/sc/scd2html/package.nix +++ b/pkgs/by-name/sc/scd2html/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { description = "Generates HTML from scdoc source files"; homepage = "https://git.sr.ht/~bitfehler/scd2html"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "scd2html"; }; diff --git a/pkgs/by-name/sc/scdoc/package.nix b/pkgs/by-name/sc/scdoc/package.nix index 708178b265d9..9324e1cef34a 100644 --- a/pkgs/by-name/sc/scdoc/package.nix +++ b/pkgs/by-name/sc/scdoc/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://git.sr.ht/~sircmpwn/scdoc/refs/${finalAttrs.src.rev}"; license = lib.licenses.mit; mainProgram = "scdoc"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sc/scenefx/package.nix b/pkgs/by-name/sc/scenefx/package.nix index dcca05672071..1ba9df2cf31f 100644 --- a/pkgs/by-name/sc/scenefx/package.nix +++ b/pkgs/by-name/sc/scenefx/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Drop-in replacement for the wlroots scene API that allows wayland compositors to render surfaces with eye-candy effects"; homepage = "https://github.com/wlrfx/scenefx"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "scenefx"; pkgConfigModules = [ "scenefx" ]; platforms = lib.platforms.all; diff --git a/pkgs/by-name/sc/schemacrawler/package.nix b/pkgs/by-name/sc/schemacrawler/package.nix index a15836673f6f..db471c979688 100644 --- a/pkgs/by-name/sc/schemacrawler/package.nix +++ b/pkgs/by-name/sc/schemacrawler/package.nix @@ -43,6 +43,6 @@ stdenv.mkDerivation (finalAttrs: { lgpl3Only ]; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/sc/scimark/package.nix b/pkgs/by-name/sc/scimark/package.nix index 775c276b0f19..305224d2fbfd 100644 --- a/pkgs/by-name/sc/scimark/package.nix +++ b/pkgs/by-name/sc/scimark/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation (finalAttrs: { downloadPage = "https://math.nist.gov/scimark2/download_c.html"; license = lib.licenses.publicDomain; mainProgram = "scimark4"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/sc/scons/package.nix b/pkgs/by-name/sc/scons/package.nix index 3f5c39877a11..5781d12a24bd 100644 --- a/pkgs/by-name/sc/scons/package.nix +++ b/pkgs/by-name/sc/scons/package.nix @@ -54,6 +54,6 @@ python3Packages.buildPythonApplication rec { ''; homepage = "https://scons.org/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/sc/scrutiny-collector/package.nix b/pkgs/by-name/sc/scrutiny-collector/package.nix index 794428303c69..05eefcbd9861 100644 --- a/pkgs/by-name/sc/scrutiny-collector/package.nix +++ b/pkgs/by-name/sc/scrutiny-collector/package.nix @@ -49,7 +49,7 @@ buildGoModule rec { description = "Hard disk metrics collector for Scrutiny"; homepage = "https://github.com/AnalogJ/scrutiny"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "scrutiny-collector-metrics"; }; } diff --git a/pkgs/by-name/sc/scrutiny/package.nix b/pkgs/by-name/sc/scrutiny/package.nix index 48063ddb7fdb..d4305708d718 100644 --- a/pkgs/by-name/sc/scrutiny/package.nix +++ b/pkgs/by-name/sc/scrutiny/package.nix @@ -67,7 +67,7 @@ buildGoModule rec { homepage = "https://github.com/AnalogJ/scrutiny"; changelog = "https://github.com/AnalogJ/scrutiny/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "scrutiny"; platforms = lib.platforms.linux; }; diff --git a/pkgs/by-name/se/sem/package.nix b/pkgs/by-name/se/sem/package.nix index d5d677fbbeea..66b2d39cd235 100644 --- a/pkgs/by-name/se/sem/package.nix +++ b/pkgs/by-name/se/sem/package.nix @@ -32,7 +32,7 @@ buildGoModule rec { homepage = "https://github.com/semaphoreci/cli"; changelog = "https://github.com/semaphoreci/cli/releases/tag/v${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/se/serigy/package.nix b/pkgs/by-name/se/serigy/package.nix index 6d30af93c8e3..29ed20b1843d 100644 --- a/pkgs/by-name/se/serigy/package.nix +++ b/pkgs/by-name/se/serigy/package.nix @@ -60,6 +60,6 @@ python3Packages.buildPythonApplication rec { mainProgram = "serigy"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/se/setconf/package.nix b/pkgs/by-name/se/setconf/package.nix index 395fac431b86..17acd52dcad0 100644 --- a/pkgs/by-name/se/setconf/package.nix +++ b/pkgs/by-name/se/setconf/package.nix @@ -25,7 +25,7 @@ let description = "Small utility for changing settings in configuration textfiles"; changelog = "https://github.com/xyproto/setconf/releases/tag/${self.src.rev}"; mainProgram = "setconf"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }; in diff --git a/pkgs/by-name/sh/sharedown/package.nix b/pkgs/by-name/sh/sharedown/package.nix index c802351eb33d..155a2f92c284 100644 --- a/pkgs/by-name/sh/sharedown/package.nix +++ b/pkgs/by-name/sh/sharedown/package.nix @@ -127,7 +127,7 @@ stdenvNoCC.mkDerivation rec { description = "Application to save your Sharepoint videos for offline usage"; homepage = "https://github.com/kylon/Sharedown"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "Sharedown"; }; diff --git a/pkgs/by-name/sh/shfm/package.nix b/pkgs/by-name/sh/shfm/package.nix index d70fd20be328..56d226eb95a2 100644 --- a/pkgs/by-name/sh/shfm/package.nix +++ b/pkgs/by-name/sh/shfm/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/dylanaraps/shfm"; description = "POSIX-shell based file manager"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; mainProgram = "shfm"; }; diff --git a/pkgs/by-name/si/siglo/package.nix b/pkgs/by-name/si/siglo/package.nix index b9bc3d44ef63..fd84c2159614 100644 --- a/pkgs/by-name/si/siglo/package.nix +++ b/pkgs/by-name/si/siglo/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/theironrobin/siglo"; changelog = "https://github.com/theironrobin/siglo/tags/v${version}"; license = lib.licenses.mpl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/si/signal-desktop/webrtc.nix b/pkgs/by-name/si/signal-desktop/webrtc.nix index fb40b250e1f5..2e586d52cbf7 100644 --- a/pkgs/by-name/si/signal-desktop/webrtc.nix +++ b/pkgs/by-name/si/signal-desktop/webrtc.nix @@ -130,7 +130,7 @@ stdenv.mkDerivation (finalAttrs: { description = "WebRTC library used by Signal"; homepage = "https://github.com/SignalApp/webrtc"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/si/signing-party/package.nix b/pkgs/by-name/si/signing-party/package.nix index 1ef34b94d961..76b3bac178bc 100644 --- a/pkgs/by-name/si/signing-party/package.nix +++ b/pkgs/by-name/si/signing-party/package.nix @@ -307,7 +307,7 @@ stdenv.mkDerivation rec { gpl2Plus gpl3Plus ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/si/simh/package.nix b/pkgs/by-name/si/simh/package.nix index 55b856d65353..a4e696c1ee69 100644 --- a/pkgs/by-name/si/simh/package.nix +++ b/pkgs/by-name/si/simh/package.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { available copies of significant or representative software. ''; license = with licenses; mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/si/simple-dlna-browser/package.nix b/pkgs/by-name/si/simple-dlna-browser/package.nix index 8ef1aa4aff44..876b4022ed33 100644 --- a/pkgs/by-name/si/simple-dlna-browser/package.nix +++ b/pkgs/by-name/si/simple-dlna-browser/package.nix @@ -64,6 +64,6 @@ stdenv.mkDerivation { ''; homepage = "https://github.com/javier-lopez/learn/blob/master/sh/tools/simple-dlna-browser"; license = lib.licenses.fair; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/si/simple-live-app/package.nix b/pkgs/by-name/si/simple-live-app/package.nix index 3b251bfe112b..608a7ea09772 100644 --- a/pkgs/by-name/si/simple-live-app/package.nix +++ b/pkgs/by-name/si/simple-live-app/package.nix @@ -58,7 +58,7 @@ flutter332.buildFlutterApplication rec { homepage = "https://github.com/xiaoyaocz/dart_simple_live"; mainProgram = "simple_live_app"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sk/skribilo/package.nix b/pkgs/by-name/sk/skribilo/package.nix index 36d47edc80e2..827b25528a36 100644 --- a/pkgs/by-name/sk/skribilo/package.nix +++ b/pkgs/by-name/sk/skribilo/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { conventions used in emails, Usenet and text. ''; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sl/slang/package.nix b/pkgs/by-name/sl/slang/package.nix index d5143b7a6d37..30fcd56620c9 100644 --- a/pkgs/by-name/sl/slang/package.nix +++ b/pkgs/by-name/sl/slang/package.nix @@ -102,7 +102,7 @@ stdenv.mkDerivation rec { ''; homepage = "http://www.jedsoft.org/slang/"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "slsh"; platforms = platforms.unix; }; diff --git a/pkgs/by-name/sl/sly/package.nix b/pkgs/by-name/sl/sly/package.nix index ad7dc61dfbef..0a8b7aaaa8bd 100644 --- a/pkgs/by-name/sl/sly/package.nix +++ b/pkgs/by-name/sl/sly/package.nix @@ -48,7 +48,7 @@ flutter327.buildFlutterApplication rec { homepage = "https://github.com/kra-mo/Sly"; mainProgram = "sly"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sm/smallwm/package.nix b/pkgs/by-name/sm/smallwm/package.nix index a67fecf8ef44..ecdc9678b322 100644 --- a/pkgs/by-name/sm/smallwm/package.nix +++ b/pkgs/by-name/sm/smallwm/package.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/adamnew123456/SmallWM"; license = lib.licenses.bsd2; mainProgram = "smallwm"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; }; }) diff --git a/pkgs/by-name/sm/smplayer/package.nix b/pkgs/by-name/sm/smplayer/package.nix index 6c4489332716..24c5b20438a9 100644 --- a/pkgs/by-name/sm/smplayer/package.nix +++ b/pkgs/by-name/sm/smplayer/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://github.com/smplayer-dev/smplayer/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/sn/sn-pro/package.nix b/pkgs/by-name/sn/sn-pro/package.nix index a3c148012102..cc830a3f8939 100644 --- a/pkgs/by-name/sn/sn-pro/package.nix +++ b/pkgs/by-name/sn/sn-pro/package.nix @@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation rec { description = "SN Pro Font Family"; homepage = "https://github.com/supernotes/sn-pro"; license = licenses.ofl; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; } diff --git a/pkgs/by-name/sn/snippetexpander/package.nix b/pkgs/by-name/sn/snippetexpander/package.nix index 3112747257ad..f70bf164daae 100644 --- a/pkgs/by-name/sn/snippetexpander/package.nix +++ b/pkgs/by-name/sn/snippetexpander/package.nix @@ -56,7 +56,7 @@ buildGoModule rec { description = "Your little expandable text snippet helper CLI"; homepage = "https://snippetexpander.org"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "snippetexpander"; }; diff --git a/pkgs/by-name/sn/snippetexpanderd/package.nix b/pkgs/by-name/sn/snippetexpanderd/package.nix index dbab53d50416..26043f008196 100644 --- a/pkgs/by-name/sn/snippetexpanderd/package.nix +++ b/pkgs/by-name/sn/snippetexpanderd/package.nix @@ -69,7 +69,7 @@ buildGoModule rec { description = "Your little expandable text snippet helper daemon"; homepage = "https://snippetexpander.org"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "snippetexpanderd"; }; diff --git a/pkgs/by-name/sn/snippetexpandergui/package.nix b/pkgs/by-name/sn/snippetexpandergui/package.nix index 492618791046..4f968e5a98ec 100644 --- a/pkgs/by-name/sn/snippetexpandergui/package.nix +++ b/pkgs/by-name/sn/snippetexpandergui/package.nix @@ -71,7 +71,7 @@ buildGoModule rec { description = "Your little expandable text snippet helper GUI"; homepage = "https://snippetexpander.org"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "snippetexpandergui"; }; diff --git a/pkgs/by-name/sn/snippetexpanderx/package.nix b/pkgs/by-name/sn/snippetexpanderx/package.nix index 2596a255a159..973833c95526 100644 --- a/pkgs/by-name/sn/snippetexpanderx/package.nix +++ b/pkgs/by-name/sn/snippetexpanderx/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { description = "Your little expandable text snippet helper auto expander daemon"; homepage = "https://snippetexpander.org"; license = lib.licenses.gpl2Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "snippetexpanderx"; }; diff --git a/pkgs/by-name/so/soqt/package.nix b/pkgs/by-name/so/soqt/package.nix index 6f9ff22fb1b9..77b4d12ab091 100644 --- a/pkgs/by-name/so/soqt/package.nix +++ b/pkgs/by-name/so/soqt/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/coin3d/soqt"; license = lib.licenses.bsd3; description = "Glue between Coin high-level 3D visualization library and Qt"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/so/sound-of-sorting/package.nix b/pkgs/by-name/so/sound-of-sorting/package.nix index 32306937038c..4f01b6a418cb 100644 --- a/pkgs/by-name/so/sound-of-sorting/package.nix +++ b/pkgs/by-name/so/sound-of-sorting/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://panthema.net/2013/sound-of-sorting/"; license = lib.licenses.gpl3Plus; mainProgram = "sound-of-sorting"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (SDL2.meta) platforms; }; }) diff --git a/pkgs/by-name/so/sov/package.nix b/pkgs/by-name/so/sov/package.nix index e7a27e8372a3..cf5bd2009679 100644 --- a/pkgs/by-name/so/sov/package.nix +++ b/pkgs/by-name/so/sov/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Workspace overview app for sway"; license = lib.licenses.gpl3Only; mainProgram = "sov"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; # sys/timerfd.h header inexistent broken = stdenv.hostPlatform.isDarwin; diff --git a/pkgs/by-name/sp/sparkle/package.nix b/pkgs/by-name/sp/sparkle/package.nix index 693866b47cd0..5679b347c2ef 100644 --- a/pkgs/by-name/sp/sparkle/package.nix +++ b/pkgs/by-name/sp/sparkle/package.nix @@ -102,7 +102,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/xishang0128/sparkle"; license = lib.licenses.gpl3Plus; mainProgram = "sparkle"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "aarch64-linux" "x86_64-linux" diff --git a/pkgs/by-name/sp/spigot/package.nix b/pkgs/by-name/sp/spigot/package.nix index e338da58df46..4b86a7b6beab 100644 --- a/pkgs/by-name/sp/spigot/package.nix +++ b/pkgs/by-name/sp/spigot/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Command-line exact real calculator"; mainProgram = "spigot"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/sp/spnavcfg/package.nix b/pkgs/by-name/sp/spnavcfg/package.nix index bf70e26d3a54..5df968215be0 100644 --- a/pkgs/by-name/sp/spnavcfg/package.nix +++ b/pkgs/by-name/sp/spnavcfg/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Interactive configuration GUI for space navigator input devices"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "spnavcfg"; }; }) diff --git a/pkgs/by-name/sp/spooles/package.nix b/pkgs/by-name/sp/spooles/package.nix index 63fe320d1c47..2a810d70d161 100644 --- a/pkgs/by-name/sp/spooles/package.nix +++ b/pkgs/by-name/sp/spooles/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { homepage = "http://www.netlib.org/linalg/spooles/"; description = "Library for solving sparse real and complex linear systems of equations"; license = licenses.publicDomain; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/by-name/sq/sqlcipher/package.nix b/pkgs/by-name/sq/sqlcipher/package.nix index 1dc4d0c66765..8602fe564cbb 100644 --- a/pkgs/by-name/sq/sqlcipher/package.nix +++ b/pkgs/by-name/sq/sqlcipher/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { mainProgram = "sqlcipher"; homepage = "https://www.zetetic.net/sqlcipher/"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/by-name/sq/squawk/package.nix b/pkgs/by-name/sq/squawk/package.nix index 55f166610f0a..2fdb56c428ce 100644 --- a/pkgs/by-name/sq/squawk/package.nix +++ b/pkgs/by-name/sq/squawk/package.nix @@ -49,6 +49,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://squawkhq.com"; changelog = "https://github.com/sbdchd/squawk/blob/v${version}/CHANGELOG.md"; license = with lib.licenses; [ gpl3Only ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/sr/src/package.nix b/pkgs/by-name/sr/src/package.nix index 6787e816ea20..76c06b07cd9b 100644 --- a/pkgs/by-name/sr/src/package.nix +++ b/pkgs/by-name/sr/src/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://gitlab.com/esr/src/-/raw/${finalAttrs.version}/NEWS.adoc"; license = lib.licenses.bsd2; mainProgram = "src"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (python3.meta) platforms; }; }) diff --git a/pkgs/by-name/ss/ssh-askpass-fullscreen/package.nix b/pkgs/by-name/ss/ssh-askpass-fullscreen/package.nix index 453606e74b76..cea563241906 100644 --- a/pkgs/by-name/ss/ssh-askpass-fullscreen/package.nix +++ b/pkgs/by-name/ss/ssh-askpass-fullscreen/package.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Small, fullscreen SSH askpass GUI using GTK+2"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "ssh-askpass-fullscreen"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ss/ssh-chat/package.nix b/pkgs/by-name/ss/ssh-chat/package.nix index a6592121aae9..510cb510839a 100644 --- a/pkgs/by-name/ss/ssh-chat/package.nix +++ b/pkgs/by-name/ss/ssh-chat/package.nix @@ -22,6 +22,6 @@ buildGoModule rec { mainProgram = "ssh-chat"; homepage = "https://github.com/shazow/ssh-chat"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/ss/sshesame/package.nix b/pkgs/by-name/ss/sshesame/package.nix index 5006d7e7901f..1b0b5daf257d 100644 --- a/pkgs/by-name/ss/sshesame/package.nix +++ b/pkgs/by-name/ss/sshesame/package.nix @@ -37,7 +37,7 @@ buildGoModule rec { ''; homepage = "https://github.com/jaksi/sshesame"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "sshesame"; }; } diff --git a/pkgs/by-name/ss/sshfs-fuse/common.nix b/pkgs/by-name/ss/sshfs-fuse/common.nix index 2c27ab48e5f6..de9cee568a63 100644 --- a/pkgs/by-name/ss/sshfs-fuse/common.nix +++ b/pkgs/by-name/ss/sshfs-fuse/common.nix @@ -86,6 +86,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/libfuse/sshfs"; license = licenses.gpl2Plus; mainProgram = "sshfs"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/st/stacktile/package.nix b/pkgs/by-name/st/stacktile/package.nix index babcab8344bb..d51cfcb08b1e 100644 --- a/pkgs/by-name/st/stacktile/package.nix +++ b/pkgs/by-name/st/stacktile/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Layout generator for the river Wayland compositor"; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "stacktile"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/st/stargate-libcds/package.nix b/pkgs/by-name/st/stargate-libcds/package.nix index b39821e94c8d..829a20604c4f 100644 --- a/pkgs/by-name/st/stargate-libcds/package.nix +++ b/pkgs/by-name/st/stargate-libcds/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "C data structure library"; homepage = "https://github.com/stargateaudio/libcds"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.lgpl3Only; }; } diff --git a/pkgs/by-name/st/steghide/package.nix b/pkgs/by-name/st/steghide/package.nix index b230015d241e..3a1083fa62b1 100644 --- a/pkgs/by-name/st/steghide/package.nix +++ b/pkgs/by-name/st/steghide/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/museoa/steghide"; description = "Open source steganography program"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; mainProgram = "steghide"; }; diff --git a/pkgs/by-name/st/stella/package.nix b/pkgs/by-name/st/stella/package.nix index 9e0a77bef1eb..e2c8cfef8f21 100644 --- a/pkgs/by-name/st/stella/package.nix +++ b/pkgs/by-name/st/stella/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/stella-emu/stella/releases/tag/${finalAttrs.src.rev}"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "stella"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/st/stockpile/package.nix b/pkgs/by-name/st/stockpile/package.nix index 905b0edf6b03..7b5151806943 100644 --- a/pkgs/by-name/st/stockpile/package.nix +++ b/pkgs/by-name/st/stockpile/package.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "stockpile"; license = lib.licenses.agpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/st/streamrip/package.nix b/pkgs/by-name/st/streamrip/package.nix index 262c50c9d374..b728592bfac3 100644 --- a/pkgs/by-name/st/streamrip/package.nix +++ b/pkgs/by-name/st/streamrip/package.nix @@ -66,7 +66,7 @@ python3Packages.buildPythonApplication rec { description = "Scriptable music downloader for Qobuz, Tidal, SoundCloud, and Deezer"; homepage = "https://github.com/nathom/streamrip"; license = licenses.gpl3Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "rip"; }; } diff --git a/pkgs/by-name/st/strictdoc/package.nix b/pkgs/by-name/st/strictdoc/package.nix index da8f4ba31267..bcdf0037e250 100644 --- a/pkgs/by-name/st/strictdoc/package.nix +++ b/pkgs/by-name/st/strictdoc/package.nix @@ -76,7 +76,7 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/strictdoc-project/strictdoc"; changelog = "https://github.com/strictdoc-project/strictdoc/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "strictdoc"; }; } diff --git a/pkgs/by-name/st/styx/package.nix b/pkgs/by-name/st/styx/package.nix index 19fc5f3c22f5..6be5fae6cb14 100644 --- a/pkgs/by-name/st/styx/package.nix +++ b/pkgs/by-name/st/styx/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Nix based static site generator"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; homepage = "https://styx-static.github.io/styx-site/"; downloadPage = "https://github.com/styx-static/styx/"; platforms = platforms.all; diff --git a/pkgs/by-name/su/substudy/package.nix b/pkgs/by-name/su/substudy/package.nix index deadc15f74db..292357b53eaf 100644 --- a/pkgs/by-name/su/substudy/package.nix +++ b/pkgs/by-name/su/substudy/package.nix @@ -42,6 +42,6 @@ rustPlatform.buildRustPackage rec { homepage = "https://www.randomhacks.net/substudy"; license = licenses.asl20; mainProgram = "substudy"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/su/subtitleedit/package.nix b/pkgs/by-name/su/subtitleedit/package.nix index ce40f008d8b3..d39573299161 100644 --- a/pkgs/by-name/su/subtitleedit/package.nix +++ b/pkgs/by-name/su/subtitleedit/package.nix @@ -95,6 +95,6 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; platforms = platforms.all; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/su/sudo-font/package.nix b/pkgs/by-name/su/sudo-font/package.nix index cee7f4e3f447..a5ba18d518b6 100644 --- a/pkgs/by-name/su/sudo-font/package.nix +++ b/pkgs/by-name/su/sudo-font/package.nix @@ -26,7 +26,7 @@ stdenvNoCC.mkDerivation rec { homepage = "https://www.kutilek.de/sudo-font/"; changelog = "https://github.com/jenskutilek/sudo-font/raw/v${version}/sudo/FONTLOG.txt"; license = lib.licenses.ofl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/su/sumo/package.nix b/pkgs/by-name/su/sumo/package.nix index dae854144dd2..77501269288d 100644 --- a/pkgs/by-name/su/sumo/package.nix +++ b/pkgs/by-name/su/sumo/package.nix @@ -92,6 +92,6 @@ stdenv.mkDerivation rec { ''; homepage = "https://github.com/eclipse/sumo"; license = licenses.epl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/su/sunwait/package.nix b/pkgs/by-name/su/sunwait/package.nix index 770e67b9f73c..6a88538a5313 100644 --- a/pkgs/by-name/su/sunwait/package.nix +++ b/pkgs/by-name/su/sunwait/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Calculates sunrise or sunset times with civil, nautical, astronomical and custom twilights"; homepage = "https://github.com/risacher/sunwait"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "sunwait"; platforms = lib.platforms.all; }; diff --git a/pkgs/by-name/su/surgescript/package.nix b/pkgs/by-name/su/surgescript/package.nix index 55c7ffd67c25..f6e94b484a83 100644 --- a/pkgs/by-name/su/surgescript/package.nix +++ b/pkgs/by-name/su/surgescript/package.nix @@ -37,6 +37,6 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/alemart/surgescript/blob/v${finalAttrs.version}/CHANGES.md"; license = lib.licenses.asl20; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/sv/svgcleaner/package.nix b/pkgs/by-name/sv/svgcleaner/package.nix index dfcc36d40cea..0b4f13f14e8d 100644 --- a/pkgs/by-name/sv/svgcleaner/package.nix +++ b/pkgs/by-name/sv/svgcleaner/package.nix @@ -22,7 +22,7 @@ rustPlatform.buildRustPackage { homepage = "https://github.com/RazrFalcon/SVGCleaner"; changelog = "https://github.com/RazrFalcon/svgcleaner/releases"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "svgcleaner"; }; } diff --git a/pkgs/by-name/sw/swayest-workstyle/package.nix b/pkgs/by-name/sw/swayest-workstyle/package.nix index 0ad4d3c4a862..ab70e3a68a9b 100644 --- a/pkgs/by-name/sw/swayest-workstyle/package.nix +++ b/pkgs/by-name/sw/swayest-workstyle/package.nix @@ -27,7 +27,7 @@ rustPlatform.buildRustPackage { homepage = "https://github.com/Lyr-7D1h/swayest_workstyle"; license = lib.licenses.mit; mainProgram = "sworkstyle"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/sw/swayrbar/package.nix b/pkgs/by-name/sw/swayrbar/package.nix index a3b3f3479e5e..55d38175bbce 100644 --- a/pkgs/by-name/sw/swayrbar/package.nix +++ b/pkgs/by-name/sw/swayrbar/package.nix @@ -39,7 +39,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://git.sr.ht/~tsdh/swayr#a-idswayrbarswayrbara"; license = with licenses; [ gpl3Plus ]; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "swayrbar"; }; } diff --git a/pkgs/by-name/sw/swipe-guess/package.nix b/pkgs/by-name/sw/swipe-guess/package.nix index 26273fb11010..d7d46749c6f6 100644 --- a/pkgs/by-name/sw/swipe-guess/package.nix +++ b/pkgs/by-name/sw/swipe-guess/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { homepage = "https://git.sr.ht/~earboxer/swipeGuess/"; license = lib.licenses.agpl3Only; mainProgram = "swipeGuess"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/by-name/sw/switcheroo-control/package.nix b/pkgs/by-name/sw/switcheroo-control/package.nix index 1a45d35ac3fd..6908bf61073a 100644 --- a/pkgs/by-name/sw/switcheroo-control/package.nix +++ b/pkgs/by-name/sw/switcheroo-control/package.nix @@ -51,7 +51,7 @@ python3Packages.buildPythonApplication rec { homepage = "https://gitlab.freedesktop.org/hadess/switcheroo-control/"; changelog = "https://gitlab.freedesktop.org/hadess/switcheroo-control/-/blob/${version}/NEWS"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ta/tagutil/package.nix b/pkgs/by-name/ta/tagutil/package.nix index 9f26660d647e..cdd6b7901d66 100644 --- a/pkgs/by-name/ta/tagutil/package.nix +++ b/pkgs/by-name/ta/tagutil/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { description = "Scriptable music files tags tool and editor"; homepage = "https://github.com/kaworu/tagutil"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "tagutil"; }; diff --git a/pkgs/by-name/ta/taldir/package.nix b/pkgs/by-name/ta/taldir/package.nix index b6cd48430368..d0cbcbf21a0f 100644 --- a/pkgs/by-name/ta/taldir/package.nix +++ b/pkgs/by-name/ta/taldir/package.nix @@ -44,7 +44,7 @@ buildGoModule (finalAttrs: { description = "Directory service to resolve wallet mailboxes by messenger addresses"; teams = with lib.teams; [ ngi ]; # themadbit will maintain after being added to maintainers - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.agpl3Plus; }; }) diff --git a/pkgs/by-name/ta/taler-mdb/package.nix b/pkgs/by-name/ta/taler-mdb/package.nix index eea1b1d85b06..d4ff3ccfe297 100644 --- a/pkgs/by-name/ta/taler-mdb/package.nix +++ b/pkgs/by-name/ta/taler-mdb/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Sales integration with the Multi-Drop-Bus of Snack machines, NFC readers and QR code display"; license = lib.licenses.agpl3Plus; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "taler-mdb"; }; }) diff --git a/pkgs/by-name/ta/taler-twister/package.nix b/pkgs/by-name/ta/taler-twister/package.nix index 0183ab9405cd..91156eb33cb5 100644 --- a/pkgs/by-name/ta/taler-twister/package.nix +++ b/pkgs/by-name/ta/taler-twister/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://git.taler.net/twister.git"; description = "Fault injector for HTTP traffic"; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.agpl3Plus; mainProgram = "twister"; platforms = lib.platforms.linux; diff --git a/pkgs/by-name/te/teapot/package.nix b/pkgs/by-name/te/teapot/package.nix index 22301f5b4f68..0fee424811fb 100644 --- a/pkgs/by-name/te/teapot/package.nix +++ b/pkgs/by-name/te/teapot/package.nix @@ -70,7 +70,7 @@ stdenv.mkDerivation (finalAttrs: { systems. ''; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; mainProgram = "teapot"; homepage = "https://github.com/museoa/teapot"; diff --git a/pkgs/by-name/te/tecla/package.nix b/pkgs/by-name/te/tecla/package.nix index 493133a2122c..68787f904c6d 100644 --- a/pkgs/by-name/te/tecla/package.nix +++ b/pkgs/by-name/te/tecla/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://sites.astro.caltech.edu/~mcs/tecla/release.html"; license = with lib.licenses; [ mit ]; mainProgram = "enhance"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/te/terracognita/package.nix b/pkgs/by-name/te/terracognita/package.nix index 483d5e1d4387..44bedd44d408 100644 --- a/pkgs/by-name/te/terracognita/package.nix +++ b/pkgs/by-name/te/terracognita/package.nix @@ -33,6 +33,6 @@ buildGoModule rec { homepage = "https://github.com/cycloidio/terracognita"; changelog = "https://github.com/cycloidio/terracognita/raw/v${version}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/terraform-backend-git/package.nix b/pkgs/by-name/te/terraform-backend-git/package.nix index fb15682656bc..81d562e43cb1 100644 --- a/pkgs/by-name/te/terraform-backend-git/package.nix +++ b/pkgs/by-name/te/terraform-backend-git/package.nix @@ -42,6 +42,6 @@ buildGoModule rec { homepage = "https://github.com/plumber-cd/terraform-backend-git"; changelog = "https://github.com/plumber-cd/terraform-backend-git/blob/${src.rev}/CHANGELOG.md"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/te/testssl/package.nix b/pkgs/by-name/te/testssl/package.nix index 3a1eb35dfee1..1847e52b2fc2 100644 --- a/pkgs/by-name/te/testssl/package.nix +++ b/pkgs/by-name/te/testssl/package.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { ''; homepage = "https://testssl.sh/"; license = licenses.gpl2Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "testssl.sh"; }; } diff --git a/pkgs/by-name/te/tev/package.nix b/pkgs/by-name/te/tev/package.nix index 2d08955e608c..e1f6f083482d 100644 --- a/pkgs/by-name/te/tev/package.nix +++ b/pkgs/by-name/te/tev/package.nix @@ -76,6 +76,6 @@ stdenv.mkDerivation rec { license = lib.licenses.bsd3; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; # needs apple frameworks + SDK fix? see #205247 - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/th/the-legend-of-edgar/package.nix b/pkgs/by-name/th/the-legend-of-edgar/package.nix index 2f6ea059305b..e6712ec26dae 100644 --- a/pkgs/by-name/th/the-legend-of-edgar/package.nix +++ b/pkgs/by-name/th/the-legend-of-edgar/package.nix @@ -92,7 +92,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl1Plus; mainProgram = "edgar"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ti/tickrs/package.nix b/pkgs/by-name/ti/tickrs/package.nix index 2dede13abc75..84191a9d015b 100644 --- a/pkgs/by-name/ti/tickrs/package.nix +++ b/pkgs/by-name/ti/tickrs/package.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage rec { homepage = "https://github.com/tarkah/tickrs"; changelog = "https://github.com/tarkah/tickrs/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "tickrs"; }; } diff --git a/pkgs/by-name/ti/tiny-rdm/package.nix b/pkgs/by-name/ti/tiny-rdm/package.nix index 3c6287432e7e..81d7978ab4bc 100644 --- a/pkgs/by-name/ti/tiny-rdm/package.nix +++ b/pkgs/by-name/ti/tiny-rdm/package.nix @@ -106,7 +106,7 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/tiny-craft/tiny-rdm"; mainProgram = "tiny-rdm"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/ti/tinyalsa/package.nix b/pkgs/by-name/ti/tinyalsa/package.nix index 1eb5c3052268..c1d2c67a0b3c 100644 --- a/pkgs/by-name/ti/tinyalsa/package.nix +++ b/pkgs/by-name/ti/tinyalsa/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { homepage = "https://github.com/tinyalsa/tinyalsa"; description = "Tiny library to interface with ALSA in the Linux kernel"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/ti/tinyemu/package.nix b/pkgs/by-name/ti/tinyemu/package.nix index e7dfc7cd5838..2a769cb68f22 100644 --- a/pkgs/by-name/ti/tinyemu/package.nix +++ b/pkgs/by-name/ti/tinyemu/package.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation (finalAttrs: { mit bsd2 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ti/tinywm/package.nix b/pkgs/by-name/ti/tinywm/package.nix index 7acad743f61c..08a2003c5995 100644 --- a/pkgs/by-name/ti/tinywm/package.nix +++ b/pkgs/by-name/ti/tinywm/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.publicDomain; mainProgram = "tinywm"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; }; }) diff --git a/pkgs/by-name/ti/tinyxml-2/package.nix b/pkgs/by-name/ti/tinyxml-2/package.nix index 9b56e8f64d0b..5206b1bac7da 100644 --- a/pkgs/by-name/ti/tinyxml-2/package.nix +++ b/pkgs/by-name/ti/tinyxml-2/package.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/leethomason/tinyxml2"; changelog = "https://github.com/leethomason/tinyxml2/releases/tag/${finalAttrs.src.rev}"; license = with lib.licenses; [ zlib ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/to/tockloader/package.nix b/pkgs/by-name/to/tockloader/package.nix index 32b6181c6f57..5ba6763919a4 100644 --- a/pkgs/by-name/to/tockloader/package.nix +++ b/pkgs/by-name/to/tockloader/package.nix @@ -42,6 +42,6 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/tock/tockloader"; changelog = "https://github.com/tock/tockloader/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/to/tomato-c/package.nix b/pkgs/by-name/to/tomato-c/package.nix index ab280f27ee04..f4805f687175 100644 --- a/pkgs/by-name/to/tomato-c/package.nix +++ b/pkgs/by-name/to/tomato-c/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/gabrielzschmitz/Tomato.C"; description = "Pomodoro timer written in pure C"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "tomato"; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/to/toml11/package.nix b/pkgs/by-name/to/toml11/package.nix index da90f7ab1265..472f01d79c32 100644 --- a/pkgs/by-name/to/toml11/package.nix +++ b/pkgs/by-name/to/toml11/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { and Windows. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix ++ platforms.windows; }; }) diff --git a/pkgs/by-name/to/tomlc99/package.nix b/pkgs/by-name/to/tomlc99/package.nix index 876753f7ac50..78f82708c302 100644 --- a/pkgs/by-name/to/tomlc99/package.nix +++ b/pkgs/by-name/to/tomlc99/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { homepage = "https://github.com/cktan/tomlc99"; description = "TOML v1.0.0-compliant library written in C99"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/by-name/to/tomlcpp/package.nix b/pkgs/by-name/to/tomlcpp/package.nix index 6667ffefc250..06d8f434dbce 100644 --- a/pkgs/by-name/to/tomlcpp/package.nix +++ b/pkgs/by-name/to/tomlcpp/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation { homepage = "https://github.com/cktan/tomlcpp"; description = "No fanfare TOML C++ Library"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; unix; }; } diff --git a/pkgs/by-name/to/tonelib-jam/package.nix b/pkgs/by-name/to/tonelib-jam/package.nix index 8d474374848d..d7b808e2ed81 100644 --- a/pkgs/by-name/to/tonelib-jam/package.nix +++ b/pkgs/by-name/to/tonelib-jam/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { homepage = "https://tonelib.net/"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "ToneLib-Jam"; }; diff --git a/pkgs/by-name/to/tonelib-metal/package.nix b/pkgs/by-name/to/tonelib-metal/package.nix index ae7748152db9..981774091780 100644 --- a/pkgs/by-name/to/tonelib-metal/package.nix +++ b/pkgs/by-name/to/tonelib-metal/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { homepage = "https://tonelib.net"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "ToneLib-Metal"; }; diff --git a/pkgs/by-name/to/tonelib-zoom/package.nix b/pkgs/by-name/to/tonelib-zoom/package.nix index 174620fbcde2..32ba6b2bb39e 100644 --- a/pkgs/by-name/to/tonelib-zoom/package.nix +++ b/pkgs/by-name/to/tonelib-zoom/package.nix @@ -60,7 +60,7 @@ stdenv.mkDerivation rec { homepage = "https://tonelib.net/"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.unfree; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; mainProgram = "ToneLib-Zoom"; }; diff --git a/pkgs/by-name/tp/tp-auto-kbbl/package.nix b/pkgs/by-name/tp/tp-auto-kbbl/package.nix index 14fd7d51b01b..61745dfde768 100644 --- a/pkgs/by-name/tp/tp-auto-kbbl/package.nix +++ b/pkgs/by-name/tp/tp-auto-kbbl/package.nix @@ -32,7 +32,7 @@ rustPlatform.buildRustPackage rec { description = "Auto toggle keyboard back-lighting on Thinkpads (and maybe other laptops) for Linux"; homepage = "https://github.com/saibotd/tp-auto-kbbl"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "tp-auto-kbbl"; }; diff --git a/pkgs/by-name/tr/triehash/package.nix b/pkgs/by-name/tr/triehash/package.nix index 8e7b435336db..21c85bb660ce 100644 --- a/pkgs/by-name/tr/triehash/package.nix +++ b/pkgs/by-name/tr/triehash/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation { homepage = "https://github.com/julian-klode/triehash"; description = "Order-preserving minimal perfect hash function generator"; license = with licenses; mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = perlPackages.perl.meta.platforms; mainProgram = "triehash"; }; diff --git a/pkgs/by-name/tr/trrntzip/package.nix b/pkgs/by-name/tr/trrntzip/package.nix index 6a2cf689e89d..34ba31f9b9bd 100644 --- a/pkgs/by-name/tr/trrntzip/package.nix +++ b/pkgs/by-name/tr/trrntzip/package.nix @@ -49,6 +49,6 @@ stdenv.mkDerivation (finalAttrs: { gpl2Plus ]; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/tt/ttyd/package.nix b/pkgs/by-name/tt/ttyd/package.nix index d4b94827a98f..c802eae7c1de 100644 --- a/pkgs/by-name/tt/ttyd/package.nix +++ b/pkgs/by-name/tt/ttyd/package.nix @@ -13,8 +13,6 @@ nixosTests, }: -with builtins; - stdenv.mkDerivation rec { pname = "ttyd"; version = "1.7.7"; diff --git a/pkgs/by-name/tu/tuigreet/package.nix b/pkgs/by-name/tu/tuigreet/package.nix index 0a42d42e91d9..b1a16c8f2f5d 100644 --- a/pkgs/by-name/tu/tuigreet/package.nix +++ b/pkgs/by-name/tu/tuigreet/package.nix @@ -36,7 +36,7 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/apognu/tuigreet"; changelog = "https://github.com/apognu/tuigreet/releases/tag/${finalAttrs.version}"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "tuigreet"; }; diff --git a/pkgs/by-name/tu/turses/package.nix b/pkgs/by-name/tu/turses/package.nix index c6154d86df83..93e689feb27c 100644 --- a/pkgs/by-name/tu/turses/package.nix +++ b/pkgs/by-name/tu/turses/package.nix @@ -97,7 +97,7 @@ buildPythonPackage rec { homepage = "https://github.com/louipc/turses"; changelog = "https://github.com/louipc/turses/blob/v${version}/HISTORY.rst"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "turses"; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/tw/twolame/package.nix b/pkgs/by-name/tw/twolame/package.nix index 70825fe7b9a4..c897d891b4fa 100644 --- a/pkgs/by-name/tw/twolame/package.nix +++ b/pkgs/by-name/tw/twolame/package.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation { homepage = "https://www.twolame.org/"; license = with licenses; [ lgpl2Plus ]; platforms = with platforms; unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/tw/twspace-dl/package.nix b/pkgs/by-name/tw/twspace-dl/package.nix index 64c285493888..0b3708fc01c5 100644 --- a/pkgs/by-name/tw/twspace-dl/package.nix +++ b/pkgs/by-name/tw/twspace-dl/package.nix @@ -33,7 +33,7 @@ python3Packages.buildPythonApplication rec { homepage = "https://github.com/HoloArchivists/twspace-dl"; changelog = "https://github.com/HoloArchivists/twspace-dl/releases/tag/${version}"; license = lib.licenses.gpl2Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "twspace_dl"; }; } diff --git a/pkgs/by-name/ty/typstwriter/package.nix b/pkgs/by-name/ty/typstwriter/package.nix index 31a46f054d73..f8a3e70583f0 100644 --- a/pkgs/by-name/ty/typstwriter/package.nix +++ b/pkgs/by-name/ty/typstwriter/package.nix @@ -41,6 +41,6 @@ python3.pkgs.buildPythonApplication rec { homepage = "https://github.com/Bzero/typstwriter"; license = lib.licenses.mit; mainProgram = "typstwriter"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/uc/ucg/package.nix b/pkgs/by-name/uc/ucg/package.nix index 19a820e35197..449566915a5c 100644 --- a/pkgs/by-name/uc/ucg/package.nix +++ b/pkgs/by-name/uc/ucg/package.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "ucg"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isAarch64 || stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ud/udevil/package.nix b/pkgs/by-name/ud/udevil/package.nix index d30a5b8c767c..2f7e13849f6e 100644 --- a/pkgs/by-name/ud/udevil/package.nix +++ b/pkgs/by-name/ud/udevil/package.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { homepage = "https://ignorantguru.github.io/udevil/"; description = "Mount without password"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/ug/ugm/package.nix b/pkgs/by-name/ug/ugm/package.nix index 5d3b24089a44..e9dca0b8f50d 100644 --- a/pkgs/by-name/ug/ugm/package.nix +++ b/pkgs/by-name/ug/ugm/package.nix @@ -36,6 +36,6 @@ buildGo125Module (finalAttrs: { license = lib.licenses.mit; mainProgram = "ugm"; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ui/uivonim/package.nix b/pkgs/by-name/ui/uivonim/package.nix index 8b2f548b63c1..32fdfac9741d 100644 --- a/pkgs/by-name/ui/uivonim/package.nix +++ b/pkgs/by-name/ui/uivonim/package.nix @@ -37,7 +37,7 @@ buildNpmPackage rec { meta = with lib; { homepage = "https://github.com/smolck/uivonim"; description = "Cross-platform GUI for neovim based on electron"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; license = licenses.agpl3Only; mainProgram = "uivonim"; diff --git a/pkgs/by-name/un/unclutter/package.nix b/pkgs/by-name/un/unclutter/package.nix index de1802a14f69..850f9362955a 100644 --- a/pkgs/by-name/un/unclutter/package.nix +++ b/pkgs/by-name/un/unclutter/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { unclutter -idle 1 & ''; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; license = lib.licenses.publicDomain; mainProgram = "unclutter"; diff --git a/pkgs/by-name/un/undetected-chromedriver/package.nix b/pkgs/by-name/un/undetected-chromedriver/package.nix index 4bf725552fad..6ec572c9ee70 100644 --- a/pkgs/by-name/un/undetected-chromedriver/package.nix +++ b/pkgs/by-name/un/undetected-chromedriver/package.nix @@ -38,6 +38,6 @@ stdenv.mkDerivation (finalAttrs: { meta = chromedriver.meta // { description = "Custom Selenium ChromeDriver that passes all bot mitigation systems"; mainProgram = "undetected-chromedriver"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/un/units/package.nix b/pkgs/by-name/un/units/package.nix index 9ae7afa4b433..bea3a448ed0b 100644 --- a/pkgs/by-name/un/units/package.nix +++ b/pkgs/by-name/un/units/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "units"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ur/urbanterror/package.nix b/pkgs/by-name/ur/urbanterror/package.nix index c27a6a63fe40..c62e29c643ba 100644 --- a/pkgs/by-name/ur/urbanterror/package.nix +++ b/pkgs/by-name/ur/urbanterror/package.nix @@ -115,7 +115,7 @@ stdenv.mkDerivation { realism". This results in a very unique, enjoyable and addictive game. ''; mainProgram = "urbanterror"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ur/urjtag/package.nix b/pkgs/by-name/ur/urjtag/package.nix index f36d09e20296..81c78a8b2664 100644 --- a/pkgs/by-name/ur/urjtag/package.nix +++ b/pkgs/by-name/ur/urjtag/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { gpl2Plus lgpl21Plus ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/by-name/us/usb-modeswitch/data.nix b/pkgs/by-name/us/usb-modeswitch/data.nix index ba701dd43a5a..64ca4d67c68f 100644 --- a/pkgs/by-name/us/usb-modeswitch/data.nix +++ b/pkgs/by-name/us/usb-modeswitch/data.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { udevCheckHook ]; - meta = with lib; { + meta = { description = "Device database and the rules file for 'multi-mode' USB devices"; inherit (usb-modeswitch.meta) license maintainers platforms; }; diff --git a/pkgs/by-name/ux/uxn/package.nix b/pkgs/by-name/ux/uxn/package.nix index f92681741d26..c4cb7a984d37 100644 --- a/pkgs/by-name/ux/uxn/package.nix +++ b/pkgs/by-name/ux/uxn/package.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://wiki.xxiivv.com/site/uxn.html"; description = "Assembler and emulator for the Uxn stack machine"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "uxnemu"; inherit (SDL2.meta) platforms; }; diff --git a/pkgs/by-name/v2/v2rayn/package.nix b/pkgs/by-name/v2/v2rayn/package.nix index 27f80f0caefe..8aff827ea49a 100644 --- a/pkgs/by-name/v2/v2rayn/package.nix +++ b/pkgs/by-name/v2/v2rayn/package.nix @@ -109,7 +109,7 @@ buildDotnetModule (finalAttrs: { homepage = "https://github.com/2dust/v2rayN"; mainProgram = "v2rayN"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/by-name/va/valkey/package.nix b/pkgs/by-name/va/valkey/package.nix index 292edf71bebe..cb554b00b508 100644 --- a/pkgs/by-name/va/valkey/package.nix +++ b/pkgs/by-name/va/valkey/package.nix @@ -127,7 +127,7 @@ stdenv.mkDerivation (finalAttrs: { description = "High-performance data structure server that primarily serves key/value workloads"; license = licenses.bsd3; platforms = platforms.all; - maintainers = with maintainers; [ ]; + maintainers = [ ]; changelog = "https://github.com/valkey-io/valkey/releases/tag/${finalAttrs.version}"; mainProgram = "valkey-cli"; }; diff --git a/pkgs/by-name/ve/venera/package.nix b/pkgs/by-name/ve/venera/package.nix index 10e8965e0610..d2ffcedfd8e4 100644 --- a/pkgs/by-name/ve/venera/package.nix +++ b/pkgs/by-name/ve/venera/package.nix @@ -84,7 +84,7 @@ flutter335.buildFlutterApplication { homepage = "https://github.com/venera-app/venera"; mainProgram = "venera"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/ve/veryfasttree/package.nix b/pkgs/by-name/ve/veryfasttree/package.nix index 101337caefd6..98682898e598 100644 --- a/pkgs/by-name/ve/veryfasttree/package.nix +++ b/pkgs/by-name/ve/veryfasttree/package.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "VeryFastTree"; homepage = "https://github.com/citiususc/veryfasttree"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/vf/vfox/package.nix b/pkgs/by-name/vf/vfox/package.nix index 35db502a426a..12d683d65477 100644 --- a/pkgs/by-name/vf/vfox/package.nix +++ b/pkgs/by-name/vf/vfox/package.nix @@ -46,6 +46,6 @@ buildGoModule (finalAttrs: { changelog = "https://github.com/version-fox/vfox/releases/tag/v${finalAttrs.version}"; mainProgram = "vfox"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/vi/viw/package.nix b/pkgs/by-name/vi/viw/package.nix index 4ca8595f844e..32241d679446 100644 --- a/pkgs/by-name/vi/viw/package.nix +++ b/pkgs/by-name/vi/viw/package.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { description = "VI Worsened, a fun and light clone of VI"; homepage = "https://github.com/lpan/viw"; license = licenses.gpl3Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "viw"; }; } diff --git a/pkgs/by-name/vk/vk-cli/package.nix b/pkgs/by-name/vk/vk-cli/package.nix index fe7fc0e8c6b9..f66d08709a33 100644 --- a/pkgs/by-name/vk/vk-cli/package.nix +++ b/pkgs/by-name/vk/vk-cli/package.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { homepage = "https://github.com/vk-cli/vk"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; } diff --git a/pkgs/by-name/vk/vkd3d-proton/package.nix b/pkgs/by-name/vk/vkd3d-proton/package.nix index 6c865a3908bf..4202ef4e44b2 100644 --- a/pkgs/by-name/vk/vkd3d-proton/package.nix +++ b/pkgs/by-name/vk/vkd3d-proton/package.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/HansKristian-Work/vkd3d-proton"; description = "Fork of VKD3D, which aims to implement the full Direct3D 12 API on top of Vulkan"; license = with lib.licenses; [ lgpl21Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wine.meta) platforms; }; }) diff --git a/pkgs/by-name/vm/vms-empire/package.nix b/pkgs/by-name/vm/vms-empire/package.nix index b598b5a2f9aa..975a08e77e48 100644 --- a/pkgs/by-name/vm/vms-empire/package.nix +++ b/pkgs/by-name/vm/vms-empire/package.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl2Only; mainProgram = "vms-empire"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/vn/vnote/package.nix b/pkgs/by-name/vn/vnote/package.nix index c1981cfbd1a0..8827834ec375 100644 --- a/pkgs/by-name/vn/vnote/package.nix +++ b/pkgs/by-name/vn/vnote/package.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "vnote"; changelog = "https://github.com/vnotex/vnote/releases/tag/${finalAttrs.src.rev}"; license = lib.licenses.lgpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/vp/vp/package.nix b/pkgs/by-name/vp/vp/package.nix index 768285c4afed..59c1a6cb3bc6 100644 --- a/pkgs/by-name/vp/vp/package.nix +++ b/pkgs/by-name/vp/vp/package.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation (finalAttrs: { description = "SDL based picture viewer/slideshow"; license = lib.licenses.gpl3Plus; mainProgram = "vp"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (SDL.meta) platforms; hydraPlatforms = lib.platforms.linux; # build hangs on both Darwin platforms, needs investigation }; diff --git a/pkgs/by-name/vt/vtfedit/package.nix b/pkgs/by-name/vt/vtfedit/package.nix index 6b8792452727..f222b329cc13 100644 --- a/pkgs/by-name/vt/vtfedit/package.nix +++ b/pkgs/by-name/vt/vtfedit/package.nix @@ -75,6 +75,6 @@ stdenv.mkDerivation rec { sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.lgpl21Plus; inherit (wine.meta) platforms; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/vt/vtm/package.nix b/pkgs/by-name/vt/vtm/package.nix index e4d46372b5e8..4eae4234686f 100644 --- a/pkgs/by-name/vt/vtm/package.nix +++ b/pkgs/by-name/vt/vtm/package.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://vtm.netxs.online/"; license = lib.licenses.mit; mainProgram = "vtm"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/vy/vym/package.nix b/pkgs/by-name/vy/vym/package.nix index 1b54b1452029..9d42a69ef879 100644 --- a/pkgs/by-name/vy/vym/package.nix +++ b/pkgs/by-name/vy/vym/package.nix @@ -80,7 +80,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "vym"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/wa/waf/package.nix b/pkgs/by-name/wa/waf/package.nix index 2976bdd159ee..6f4fe6d9cba2 100644 --- a/pkgs/by-name/wa/waf/package.nix +++ b/pkgs/by-name/wa/waf/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://gitlab.com/ita1024/waf/blob/waf-${finalAttrs.version}/ChangeLog"; license = lib.licenses.bsd3; mainProgram = "waf"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (python3.meta) platforms; sourceProvenance = [ lib.sourceTypes.fromSource ]; }; diff --git a/pkgs/by-name/wa/waveterm/package.nix b/pkgs/by-name/wa/waveterm/package.nix index 17b6d21c2ac7..dd0186cd15fc 100644 --- a/pkgs/by-name/wa/waveterm/package.nix +++ b/pkgs/by-name/wa/waveterm/package.nix @@ -46,7 +46,7 @@ let "x86_64-linux" "x86_64-darwin" ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; linux = stdenv.mkDerivation { diff --git a/pkgs/by-name/wa/waybox/package.nix b/pkgs/by-name/wa/waybox/package.nix index d31d642a33ea..2cd19e53f2e5 100644 --- a/pkgs/by-name/wa/waybox/package.nix +++ b/pkgs/by-name/wa/waybox/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Openbox clone on Wayland"; license = lib.licenses.mit; mainProgram = "waybox"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; }; }) diff --git a/pkgs/by-name/wa/waydroid-helper/package.nix b/pkgs/by-name/wa/waydroid-helper/package.nix index b18ed959773f..c997c37425a1 100644 --- a/pkgs/by-name/wa/waydroid-helper/package.nix +++ b/pkgs/by-name/wa/waydroid-helper/package.nix @@ -117,7 +117,7 @@ python3Packages.buildPythonApplication { homepage = "https://github.com/ayasa520/waydroid-helper"; license = with lib.licenses; [ gpl3Plus ]; mainProgram = "waydroid-helper"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wb/wbg/package.nix b/pkgs/by-name/wb/wbg/package.nix index 19baf11415c9..c387f186611a 100644 --- a/pkgs/by-name/wb/wbg/package.nix +++ b/pkgs/by-name/wb/wbg/package.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://codeberg.org/dnkl/wbg"; changelog = "https://codeberg.org/dnkl/wbg/releases/tag/${finalAttrs.version}"; license = lib.licenses.isc; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; linux; mainProgram = "wbg"; }; diff --git a/pkgs/by-name/wi/wifish/package.nix b/pkgs/by-name/wi/wifish/package.nix index 4477e565f5ab..2ef24944e040 100644 --- a/pkgs/by-name/wi/wifish/package.nix +++ b/pkgs/by-name/wi/wifish/package.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { description = "Simple wifi shell script for linux"; mainProgram = "wifish"; license = licenses.wtfpl; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; linux; }; } diff --git a/pkgs/by-name/wi/wiki-js/package.nix b/pkgs/by-name/wi/wiki-js/package.nix index 159ecabc0a2d..06778427ec87 100644 --- a/pkgs/by-name/wi/wiki-js/package.nix +++ b/pkgs/by-name/wi/wiki-js/package.nix @@ -44,6 +44,6 @@ stdenv.mkDerivation rec { homepage = "https://js.wiki/"; description = "Modern and powerful wiki app built on Node.js"; license = licenses.agpl3Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/wi/windsend-rs/package.nix b/pkgs/by-name/wi/windsend-rs/package.nix index cecbae0422c8..b8ff0967ad3a 100644 --- a/pkgs/by-name/wi/windsend-rs/package.nix +++ b/pkgs/by-name/wi/windsend-rs/package.nix @@ -66,7 +66,7 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/doraemonkeys/WindSend"; mainProgram = "wind_send"; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/wi/windsend/package.nix b/pkgs/by-name/wi/windsend/package.nix index 8f733dcf9799..f2edd579f4e9 100644 --- a/pkgs/by-name/wi/windsend/package.nix +++ b/pkgs/by-name/wi/windsend/package.nix @@ -45,7 +45,7 @@ flutter332.buildFlutterApplication rec { homepage = "https://github.com/doraemonkeys/WindSend"; mainProgram = "WindSend"; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/wi/windterm/package.nix b/pkgs/by-name/wi/windterm/package.nix index 0fd7afc9d3e8..1d7188b37bec 100644 --- a/pkgs/by-name/wi/windterm/package.nix +++ b/pkgs/by-name/wi/windterm/package.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "windterm"; sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" ]; }; }) diff --git a/pkgs/by-name/wi/wings/package.nix b/pkgs/by-name/wi/wings/package.nix index c6c9fb52fa5f..026d4887e772 100644 --- a/pkgs/by-name/wi/wings/package.nix +++ b/pkgs/by-name/wi/wings/package.nix @@ -109,7 +109,7 @@ stdenv.mkDerivation rec { homepage = "https://www.wings3d.com/"; description = "Subdivision modeler inspired by Nendo and Mirai from Izware"; license = lib.licenses.tcltk; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "wings"; }; diff --git a/pkgs/by-name/wi/wio/package.nix b/pkgs/by-name/wi/wio/package.nix index 76df2d97ff99..241655dad9e0 100644 --- a/pkgs/by-name/wi/wio/package.nix +++ b/pkgs/by-name/wi/wio/package.nix @@ -78,7 +78,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ bsd3 ]; mainProgram = "wio"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; }; }) diff --git a/pkgs/by-name/wi/with-shell/package.nix b/pkgs/by-name/wi/with-shell/package.nix index 50ca3e147da0..4fae26af98d6 100644 --- a/pkgs/by-name/wi/with-shell/package.nix +++ b/pkgs/by-name/wi/with-shell/package.nix @@ -71,7 +71,7 @@ stdenv.mkDerivation { To exit use either :q or :exit. ''; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; mainProgram = "with"; }; diff --git a/pkgs/by-name/wl/wlay/package.nix b/pkgs/by-name/wl/wlay/package.nix index 4e05f5b4f7f0..2a529a3c62a1 100644 --- a/pkgs/by-name/wl/wlay/package.nix +++ b/pkgs/by-name/wl/wlay/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation { homepage = "https://github.com/atx/wlay"; description = "Graphical output management for Wayland"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; mainProgram = "wlay"; }; diff --git a/pkgs/by-name/wl/wlgreet/package.nix b/pkgs/by-name/wl/wlgreet/package.nix index d73e1da53d75..d2cec5bca71b 100644 --- a/pkgs/by-name/wl/wlgreet/package.nix +++ b/pkgs/by-name/wl/wlgreet/package.nix @@ -38,7 +38,7 @@ rustPlatform.buildRustPackage (finalAttrs: { mainProgram = "wlgreet"; homepage = "https://git.sr.ht/~kennylevinsen/wlgreet"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/wl/wlogout/package.nix b/pkgs/by-name/wl/wlogout/package.nix index 2aeff3f10714..1dcacdf2bcdb 100644 --- a/pkgs/by-name/wl/wlogout/package.nix +++ b/pkgs/by-name/wl/wlogout/package.nix @@ -81,7 +81,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/ArtsyMacaw/wlogout/releases/tag/${finalAttrs.src.rev}"; license = with lib.licenses; [ mit ]; mainProgram = "wlogout"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (wayland.meta) platforms; }; }) diff --git a/pkgs/by-name/wl/wlprop/package.nix b/pkgs/by-name/wl/wlprop/package.nix index 2317cc541e57..9ce6e4ed23f1 100644 --- a/pkgs/by-name/wl/wlprop/package.nix +++ b/pkgs/by-name/wl/wlprop/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation { description = "Xprop clone for wlroots based compositors"; homepage = "https://gist.github.com/crispyricepc/f313386043395ff06570e02af2d9a8e0"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "wlprop"; }; diff --git a/pkgs/by-name/wo/wob/package.nix b/pkgs/by-name/wo/wob/package.nix index 55565a80a6a2..306ac3d345b7 100644 --- a/pkgs/by-name/wo/wob/package.nix +++ b/pkgs/by-name/wo/wob/package.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { ''; changelog = "https://github.com/francma/wob/releases/tag/${version}"; license = lib.licenses.isc; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "wob"; }; diff --git a/pkgs/by-name/wo/worker/package.nix b/pkgs/by-name/wo/worker/package.nix index 18b6386f9a7e..6f0f3100c10f 100644 --- a/pkgs/by-name/wo/worker/package.nix +++ b/pkgs/by-name/wo/worker/package.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "worker"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; }; }) diff --git a/pkgs/by-name/wo/wox/package.nix b/pkgs/by-name/wo/wox/package.nix index 01bcf523ee47..eabf3ece703f 100644 --- a/pkgs/by-name/wo/wox/package.nix +++ b/pkgs/by-name/wo/wox/package.nix @@ -35,7 +35,7 @@ let description = "Cross-platform launcher that simply works"; homepage = "https://github.com/Wox-launcher/Wox"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; ui-flutter = flutter335.buildFlutterApplication { diff --git a/pkgs/by-name/wt/wtf/package.nix b/pkgs/by-name/wt/wtf/package.nix index d21063247072..18d5bf31f71e 100644 --- a/pkgs/by-name/wt/wtf/package.nix +++ b/pkgs/by-name/wt/wtf/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/0vercl0k/wtf"; changelog = "https://github.com/0vercl0k/wtf/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mit; - platforms = with lib.platforms; [ "x86_64-linux" ]; + platforms = [ "x86_64-linux" ]; maintainers = with lib.maintainers; [ mikehorn ]; mainProgram = "wtf"; }; diff --git a/pkgs/by-name/xa/xarcan/package.nix b/pkgs/by-name/xa/xarcan/package.nix index 39fa30efddb1..aac2c8fb916e 100644 --- a/pkgs/by-name/xa/xarcan/package.nix +++ b/pkgs/by-name/xa/xarcan/package.nix @@ -123,7 +123,7 @@ stdenv.mkDerivation (finalPackages: { allows running an X session as a window under Arcan. ''; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/xa/xawtv/package.nix b/pkgs/by-name/xa/xawtv/package.nix index 2dbf97f5f723..663b0bf31985 100644 --- a/pkgs/by-name/xa/xawtv/package.nix +++ b/pkgs/by-name/xa/xawtv/package.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation rec { description = "TV application for Linux with apps and tools such as a teletext browser"; license = lib.licenses.gpl2; homepage = "https://www.kraxel.org/blog/linux/xawtv/"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/by-name/xd/xdvdfs-cli/package.nix b/pkgs/by-name/xd/xdvdfs-cli/package.nix index 852129c1be7b..02c6e312b1e4 100644 --- a/pkgs/by-name/xd/xdvdfs-cli/package.nix +++ b/pkgs/by-name/xd/xdvdfs-cli/package.nix @@ -35,6 +35,6 @@ rustPlatform.buildRustPackage (finalAttrs: { homepage = "https://github.com/antangelo/xdvdfs"; changelog = "https://github.com/antangelo/xdvdfs/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/xi/xine-lib/package.nix b/pkgs/by-name/xi/xine-lib/package.nix index 13fdccfeed2a..df0c842a65c8 100644 --- a/pkgs/by-name/xi/xine-lib/package.nix +++ b/pkgs/by-name/xi/xine-lib/package.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation (finalAttrs: { lgpl2Plus ]; # No useful mainProgram - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/xi/xine-ui/package.nix b/pkgs/by-name/xi/xine-ui/package.nix index 97192466a75d..fa40ebbd5867 100644 --- a/pkgs/by-name/xi/xine-ui/package.nix +++ b/pkgs/by-name/xi/xine-ui/package.nix @@ -79,7 +79,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Xlib-based frontend for Xine video player"; license = lib.licenses.gpl2Plus; mainProgram = "xine"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/by-name/xm/xmousepasteblock/package.nix b/pkgs/by-name/xm/xmousepasteblock/package.nix index 30a994fd81c8..79e165bff593 100644 --- a/pkgs/by-name/xm/xmousepasteblock/package.nix +++ b/pkgs/by-name/xm/xmousepasteblock/package.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { libev ]; nativeBuildInputs = [ pkg-config ]; - meta = with lib; { + meta = { description = "Middle mouse button primary X selection/clipboard paste disabler"; homepage = "https://github.com/milaq/XMousePasteBlock"; license = lib.licenses.gpl2Only; diff --git a/pkgs/by-name/xo/xosview/package.nix b/pkgs/by-name/xo/xosview/package.nix index 4c165f639c51..0709ee83628b 100644 --- a/pkgs/by-name/xo/xosview/package.nix +++ b/pkgs/by-name/xo/xosview/package.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Classic system monitoring tool"; license = lib.licenses.gpl2Plus; mainProgram = "xosview"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = with lib.platforms; linux; }; }) diff --git a/pkgs/by-name/xo/xosview2/package.nix b/pkgs/by-name/xo/xosview2/package.nix index 5f065310101c..cac74ba42dce 100644 --- a/pkgs/by-name/xo/xosview2/package.nix +++ b/pkgs/by-name/xo/xosview2/package.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation (finalAttrs: { bsdOriginal ]; mainProgram = "xosview2"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; inherit (libX11.meta) platforms; }; }) diff --git a/pkgs/by-name/xp/xp-pen-g430-driver/package.nix b/pkgs/by-name/xp/xp-pen-g430-driver/package.nix index cc0f8120a0d0..db63315fd4a1 100644 --- a/pkgs/by-name/xp/xp-pen-g430-driver/package.nix +++ b/pkgs/by-name/xp/xp-pen-g430-driver/package.nix @@ -46,6 +46,6 @@ stdenv.mkDerivation (finalAttrs: { sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; license = lib.licenses.unfree; platforms = [ "x86_64-linux" ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ya/yabasic/package.nix b/pkgs/by-name/ya/yabasic/package.nix index 46db487d3e3c..ea31e7f753c0 100644 --- a/pkgs/by-name/ya/yabasic/package.nix +++ b/pkgs/by-name/ya/yabasic/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://2484.de/yabasic/whatsnew.html"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/by-name/ya/yambar/package.nix b/pkgs/by-name/ya/yambar/package.nix index dff96effdbf1..fa1e99a3fc03 100644 --- a/pkgs/by-name/ya/yambar/package.nix +++ b/pkgs/by-name/ya/yambar/package.nix @@ -122,7 +122,7 @@ stdenv.mkDerivation (finalAttrs: { ''; changelog = "https://codeberg.org/dnkl/yambar/releases/tag/${finalAttrs.version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; mainProgram = "yambar"; }; diff --git a/pkgs/by-name/ya/yamlfmt/package.nix b/pkgs/by-name/ya/yamlfmt/package.nix index 4e5cea9eae03..267044cbe303 100644 --- a/pkgs/by-name/ya/yamlfmt/package.nix +++ b/pkgs/by-name/ya/yamlfmt/package.nix @@ -48,7 +48,7 @@ buildGoModule (finalAttrs: { homepage = "https://github.com/google/yamlfmt"; changelog = "https://github.com/google/yamlfmt/releases/tag/v${finalAttrs.version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "yamlfmt"; }; }) diff --git a/pkgs/by-name/ya/yapesdl/package.nix b/pkgs/by-name/ya/yapesdl/package.nix index 6accc8bc563f..d58230544caf 100644 --- a/pkgs/by-name/ya/yapesdl/package.nix +++ b/pkgs/by-name/ya/yapesdl/package.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/calmopyrin/yapesdl/releases/tag/${finalAttrs.src.rev}"; license = lib.licenses.gpl2Plus; mainProgram = "yapesdl"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/by-name/ya/yay/package.nix b/pkgs/by-name/ya/yay/package.nix index 05d4d4f44865..80530a4909a2 100644 --- a/pkgs/by-name/ya/yay/package.nix +++ b/pkgs/by-name/ya/yay/package.nix @@ -67,6 +67,6 @@ buildGoModule (finalAttrs: { mainProgram = "yay"; platforms = lib.platforms.linux; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/ye/yelp-tools/package.nix b/pkgs/by-name/ye/yelp-tools/package.nix index 94823e582b89..627bce60f3db 100644 --- a/pkgs/by-name/ye/yelp-tools/package.nix +++ b/pkgs/by-name/ye/yelp-tools/package.nix @@ -56,7 +56,7 @@ python3.pkgs.buildPythonApplication rec { meta = with lib; { homepage = "https://gitlab.gnome.org/GNOME/yelp-tools"; description = "Small programs that help you create, edit, manage, and publish your Mallard or DocBook documentation"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; teams = [ teams.gnome ]; license = licenses.gpl2Plus; platforms = platforms.unix; diff --git a/pkgs/by-name/ye/yex-lang/package.nix b/pkgs/by-name/ye/yex-lang/package.nix index f610f0d01e3d..ed70d49f52e9 100644 --- a/pkgs/by-name/ye/yex-lang/package.nix +++ b/pkgs/by-name/ye/yex-lang/package.nix @@ -21,7 +21,7 @@ rustPlatform.buildRustPackage { homepage = "https://github.com/nonamescm/yex-lang"; description = "Functional scripting language written in rust"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "yex"; platforms = platforms.unix; }; diff --git a/pkgs/by-name/yo/yojimbo/package.nix b/pkgs/by-name/yo/yojimbo/package.nix index ce32f0bd82ea..0f65c972c406 100644 --- a/pkgs/by-name/yo/yojimbo/package.nix +++ b/pkgs/by-name/yo/yojimbo/package.nix @@ -61,6 +61,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/mas-bandwidth/yojimbo"; license = licenses.bsd3; platforms = platforms.x86_64; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/yt/ytree/package.nix b/pkgs/by-name/yt/ytree/package.nix index 4981cef6f9c5..965e5f2fc358 100644 --- a/pkgs/by-name/yt/ytree/package.nix +++ b/pkgs/by-name/yt/ytree/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Curses-based file manager similar to DOS Xtree(TM)"; license = with lib.licenses; [ gpl2Plus ]; mainProgram = "ytree"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/za/zammad/update.nix b/pkgs/by-name/za/zammad/update.nix index a0c436566f75..fbda85611b4b 100644 --- a/pkgs/by-name/za/zammad/update.nix +++ b/pkgs/by-name/za/zammad/update.nix @@ -33,7 +33,7 @@ stdenvNoCC.mkDerivation rec { ]; meta = { - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; description = "Utility to generate Nix expressions for Zammad's dependencies"; platforms = lib.platforms.unix; }; diff --git a/pkgs/by-name/za/zashboard/package.nix b/pkgs/by-name/za/zashboard/package.nix index f69002bccd10..ddc05c1236a8 100644 --- a/pkgs/by-name/za/zashboard/package.nix +++ b/pkgs/by-name/za/zashboard/package.nix @@ -53,6 +53,6 @@ stdenv.mkDerivation (finalAttrs: { changelog = "https://github.com/Zephyruso/zashboard/releases/tag/v${finalAttrs.version}"; license = lib.licenses.mit; platforms = lib.platforms.all; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/zc/zchunk/package.nix b/pkgs/by-name/zc/zchunk/package.nix index 34f518a10968..e374ef61c43f 100644 --- a/pkgs/by-name/zc/zchunk/package.nix +++ b/pkgs/by-name/zc/zchunk/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.bsd2; mainProgram = "zck"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ze/zegrapher/package.nix b/pkgs/by-name/ze/zegrapher/package.nix index 73043d207399..b81906096a6c 100644 --- a/pkgs/by-name/ze/zegrapher/package.nix +++ b/pkgs/by-name/ze/zegrapher/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation (finalAttrs: { ''; license = lib.licenses.gpl3Plus; mainProgram = "ZeGrapher"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/ze/zesarux/package.nix b/pkgs/by-name/ze/zesarux/package.nix index 13caa94a9378..8f0e273ee0e9 100644 --- a/pkgs/by-name/ze/zesarux/package.nix +++ b/pkgs/by-name/ze/zesarux/package.nix @@ -77,7 +77,7 @@ stdenv.mkDerivation (finalAttrs: { description = "ZX Second-Emulator And Released for UniX"; mainProgram = "zesarux"; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/zf/zfs-autobackup/package.nix b/pkgs/by-name/zf/zfs-autobackup/package.nix index 12ef9ebfa6b2..51d3a635a643 100644 --- a/pkgs/by-name/zf/zfs-autobackup/package.nix +++ b/pkgs/by-name/zf/zfs-autobackup/package.nix @@ -31,6 +31,6 @@ python3Packages.buildPythonApplication rec { homepage = "https://github.com/psy0rz/zfs_autobackup"; changelog = "https://github.com/psy0rz/zfs_autobackup/releases/tag/v${version}"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/zi/zix/package.nix b/pkgs/by-name/zi/zix/package.nix index e9a57e08a99a..d49e0492d386 100644 --- a/pkgs/by-name/zi/zix/package.nix +++ b/pkgs/by-name/zi/zix/package.nix @@ -37,6 +37,6 @@ stdenv.mkDerivation rec { changelog = "https://gitlab.com/drobilla/zix/-/blob/${src.rev}/NEWS"; license = licenses.isc; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/by-name/zo/zoekt/package.nix b/pkgs/by-name/zo/zoekt/package.nix index 2ec7e4266dde..d186ea9f002f 100644 --- a/pkgs/by-name/zo/zoekt/package.nix +++ b/pkgs/by-name/zo/zoekt/package.nix @@ -39,7 +39,7 @@ buildGoModule { description = "Fast trigram based code search"; homepage = "https://github.com/sourcegraph/zoekt"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "zoekt"; }; } diff --git a/pkgs/by-name/zp/zpaqfranz/package.nix b/pkgs/by-name/zp/zpaqfranz/package.nix index a2cc07d567d1..7e833921b438 100644 --- a/pkgs/by-name/zp/zpaqfranz/package.nix +++ b/pkgs/by-name/zp/zpaqfranz/package.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Advanced multiversioned deduplicating archiver, with HW acceleration, encryption and paranoid-level tests"; mainProgram = "zpaqfranz"; license = with lib.licenses; [ mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/by-name/zs/zsh-autoenv/package.nix b/pkgs/by-name/zs/zsh-autoenv/package.nix index fb126dbb062f..63d7bc8b9484 100644 --- a/pkgs/by-name/zs/zsh-autoenv/package.nix +++ b/pkgs/by-name/zs/zsh-autoenv/package.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation { chmod +x $out/bin/zsh-autoenv-share ''; - meta = with lib; { + meta = { description = "Automatically sources whitelisted .autoenv.zsh files"; longDescription = '' zsh-autoenv automatically sources (known/whitelisted) diff --git a/pkgs/by-name/zs/zsh-powerlevel10k/package.nix b/pkgs/by-name/zs/zsh-powerlevel10k/package.nix index 1c146a2e116d..2435105d33d0 100644 --- a/pkgs/by-name/zs/zsh-powerlevel10k/package.nix +++ b/pkgs/by-name/zs/zsh-powerlevel10k/package.nix @@ -51,6 +51,6 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/romkatv/powerlevel10k"; license = lib.licenses.mit; platforms = lib.platforms.unix; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; }) diff --git a/pkgs/by-name/zz/zziplib/package.nix b/pkgs/by-name/zz/zziplib/package.nix index 14e17d1b4b9b..d1ff124fa1a7 100644 --- a/pkgs/by-name/zz/zziplib/package.nix +++ b/pkgs/by-name/zz/zziplib/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { lgpl2Plus mpl11 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; } diff --git a/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix b/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix index 094b042a78a9..90ccde4c4d18 100644 --- a/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix +++ b/pkgs/desktops/gnome/extensions/EasyScreenCast/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Simplifies the use of the video recording function integrated in gnome shell"; homepage = "https://github.com/EasyScreenCast/EasyScreenCast"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/desktops/gnome/extensions/icon-hider/default.nix b/pkgs/desktops/gnome/extensions/icon-hider/default.nix index d55f097134fa..2fa7e168b984 100644 --- a/pkgs/desktops/gnome/extensions/icon-hider/default.nix +++ b/pkgs/desktops/gnome/extensions/icon-hider/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "Icon Hider is a GNOME Shell extension for managing status area items"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = gnome-shell.meta.platforms; homepage = "https://github.com/ikalnytskyi/gnome-shell-extension-icon-hider"; broken = versionAtLeast gnome-shell.version "3.32"; # Doesn't support 3.34 diff --git a/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix b/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix index 32b920fce9c0..6ffa8cfc4cc3 100644 --- a/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix +++ b/pkgs/desktops/gnome/extensions/taskwhisperer/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "GNOME Shell TaskWarrior GUI"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; homepage = "https://github.com/cinatic/taskwhisperer"; }; } diff --git a/pkgs/development/compilers/flutter/engine/package.nix b/pkgs/development/compilers/flutter/engine/package.nix index 685aca5c3257..53438ed9794e 100644 --- a/pkgs/development/compilers/flutter/engine/package.nix +++ b/pkgs/development/compilers/flutter/engine/package.nix @@ -85,7 +85,7 @@ let llvm = symlinkJoin { name = "llvm"; - paths = with llvmPackages; [ + paths = [ clang llvmPackages.llvm ]; diff --git a/pkgs/development/compilers/gcc/common/pre-configure.nix b/pkgs/development/compilers/gcc/common/pre-configure.nix index adf73fb84425..d04aadd8729d 100644 --- a/pkgs/development/compilers/gcc/common/pre-configure.nix +++ b/pkgs/development/compilers/gcc/common/pre-configure.nix @@ -38,7 +38,7 @@ lib.optionalString (hostPlatform.isSunOS && hostPlatform.is64bit) '' ( langFortran && ( - with stdenv; + (!lib.systems.equals buildPlatform hostPlatform) && (lib.systems.equals hostPlatform targetPlatform) ) ) diff --git a/pkgs/development/coq-modules/aac-tactics/default.nix b/pkgs/development/coq-modules/aac-tactics/default.nix index db2c56c7d98a..b14ce87b28d0 100644 --- a/pkgs/development/coq-modules/aac-tactics/default.nix +++ b/pkgs/development/coq-modules/aac-tactics/default.nix @@ -32,7 +32,7 @@ mkCoqDerivation { inherit version; defaultVersion = - with lib.versions; + lib.switch coq.coq-version [ { case = "8.20"; diff --git a/pkgs/development/coq-modules/coq-hammer/tactics.nix b/pkgs/development/coq-modules/coq-hammer/tactics.nix index 49052b9ddf10..e382d93a906a 100644 --- a/pkgs/development/coq-modules/coq-hammer/tactics.nix +++ b/pkgs/development/coq-modules/coq-hammer/tactics.nix @@ -10,7 +10,7 @@ let owner = "lukaszcz"; repo = "coqhammer"; defaultVersion = - with lib.versions; + lib.switch coq.coq-version [ { case = "8.20"; diff --git a/pkgs/development/coq-modules/coqhammer/default.nix b/pkgs/development/coq-modules/coqhammer/default.nix index 4ce7f6633e62..f1774f675ba8 100644 --- a/pkgs/development/coq-modules/coqhammer/default.nix +++ b/pkgs/development/coq-modules/coqhammer/default.nix @@ -16,7 +16,7 @@ mkCoqDerivation { pname = "coqhammer"; owner = "lukaszcz"; defaultVersion = - with lib.versions; + lib.switch coq.coq-version [ { case = "8.15"; diff --git a/pkgs/development/coq-modules/ltac2/default.nix b/pkgs/development/coq-modules/ltac2/default.nix index 88b52f397bae..bbce0ad81abc 100644 --- a/pkgs/development/coq-modules/ltac2/default.nix +++ b/pkgs/development/coq-modules/ltac2/default.nix @@ -10,7 +10,7 @@ mkCoqDerivation { owner = "coq"; inherit version; defaultVersion = - with lib.versions; + lib.switch coq.coq-version [ { case = "8.10"; diff --git a/pkgs/development/interpreters/dzaima-apl/default.nix b/pkgs/development/interpreters/dzaima-apl/default.nix index a9d796d3054f..be4182cdceaa 100644 --- a/pkgs/development/interpreters/dzaima-apl/default.nix +++ b/pkgs/development/interpreters/dzaima-apl/default.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { description = "APL implementation in Java" + lib.optionalString buildNativeImage ", compiled as a native image"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; inherit (jdk.meta) platforms; broken = stdenv.hostPlatform.isDarwin; # never built on Hydra https://hydra.nixos.org/job/nixpkgs/staging-next/dapl-native.x86_64-darwin }; diff --git a/pkgs/development/interpreters/python/tests.nix b/pkgs/development/interpreters/python/tests.nix index 03e1031f1b77..14df2c494523 100644 --- a/pkgs/development/interpreters/python/tests.nix +++ b/pkgs/development/interpreters/python/tests.nix @@ -22,7 +22,7 @@ let environments = let inherit python; - pythonEnv = python.withPackages (ps: with ps; [ ]); + pythonEnv = python.withPackages (ps: [ ]); pythonVirtualEnv = if python.isPy3k then python.withPackages (ps: with ps; [ virtualenv ]) diff --git a/pkgs/development/libraries/eccodes/default.nix b/pkgs/development/libraries/eccodes/default.nix index ac1da8d37440..2d24a8d749e2 100644 --- a/pkgs/development/libraries/eccodes/default.nix +++ b/pkgs/development/libraries/eccodes/default.nix @@ -76,7 +76,7 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://confluence.ecmwf.int/display/ECC/"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; description = "ECMWF library for reading and writing GRIB, BUFR and GTS abbreviated header"; }; diff --git a/pkgs/development/libraries/kde-frameworks/default.nix b/pkgs/development/libraries/kde-frameworks/default.nix index 1aad44bf359f..ea46176de9fe 100644 --- a/pkgs/development/libraries/kde-frameworks/default.nix +++ b/pkgs/development/libraries/kde-frameworks/default.nix @@ -59,7 +59,7 @@ let packages = self: - with self; + # SUPPORT let diff --git a/pkgs/development/libraries/libopenshot-audio/default.nix b/pkgs/development/libraries/libopenshot-audio/default.nix index bbd92ab9e625..9c6d2858b16b 100644 --- a/pkgs/development/libraries/libopenshot-audio/default.nix +++ b/pkgs/development/libraries/libopenshot-audio/default.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation (finalAttrs: { JUCE library. ''; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/libopenshot/default.nix b/pkgs/development/libraries/libopenshot/default.nix index fe35ff540322..2257c44aa579 100644 --- a/pkgs/development/libraries/libopenshot/default.nix +++ b/pkgs/development/libraries/libopenshot/default.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation (finalAttrs: { to the world. API currently supports C++, Python, and Ruby. ''; license = with lib.licenses; [ gpl3Plus ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.unix; }; }) diff --git a/pkgs/development/libraries/libsbsms/common.nix b/pkgs/development/libraries/libsbsms/common.nix index a4e5e72a4518..33841c450473 100644 --- a/pkgs/development/libraries/libsbsms/common.nix +++ b/pkgs/development/libraries/libsbsms/common.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation { meta = { inherit homepage; description = "Subband sinusoidal modeling library for time stretching and pitch scaling audio"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.gpl2; platforms = lib.platforms.all; }; diff --git a/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix b/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix index 43c7aea86f15..9e18d253ddb8 100644 --- a/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix +++ b/pkgs/development/libraries/qt-6/modules/qtwebengine/default.nix @@ -284,7 +284,7 @@ qtModule { # Debug info is too big to link with LTO. separateDebugInfo = false; - meta = with lib; { + meta = { description = "Web engine based on the Chromium web browser"; platforms = [ "x86_64-darwin" diff --git a/pkgs/development/libraries/unqlite/default.nix b/pkgs/development/libraries/unqlite/default.nix index 70c924e4b357..5e15f7e4d103 100644 --- a/pkgs/development/libraries/unqlite/default.nix +++ b/pkgs/development/libraries/unqlite/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { freely copy a database between 32-bit and 64-bit systems or between big-endian and little-endian architectures. ''; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.bsd2; }; } diff --git a/pkgs/development/ocaml-modules/lutils/default.nix b/pkgs/development/ocaml-modules/lutils/default.nix index 2130900625f5..4efb6d4e2771 100644 --- a/pkgs/development/ocaml-modules/lutils/default.nix +++ b/pkgs/development/ocaml-modules/lutils/default.nix @@ -22,7 +22,7 @@ buildDunePackage rec { num ]; - meta = with lib; { + meta = { homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/lutils/"; description = "Tools and libs shared by Verimag/synchronous tools (lustre, lutin, rdbg)"; changelog = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/lutils/-/releases/v${version}"; diff --git a/pkgs/development/ocaml-modules/magic/default.nix b/pkgs/development/ocaml-modules/magic/default.nix index da5415453fc9..ec6586012998 100644 --- a/pkgs/development/ocaml-modules/magic/default.nix +++ b/pkgs/development/ocaml-modules/magic/default.nix @@ -32,6 +32,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/Chris00/ocaml-magic"; description = "Bindings for libmagic"; license = licenses.lgpl21Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/ocaml-modules/ocaml-print-intf/default.nix b/pkgs/development/ocaml-modules/ocaml-print-intf/default.nix index a48d73b341af..2073ae6962b1 100644 --- a/pkgs/development/ocaml-modules/ocaml-print-intf/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-print-intf/default.nix @@ -26,7 +26,7 @@ buildDunePackage rec { bos ]; - meta = with lib; { + meta = { description = "Pretty print an OCaml cmi/cmt/cmti file in human-readable OCaml signature form"; homepage = "https://github.com/${author}/${pname}"; license = lib.licenses.isc; diff --git a/pkgs/development/ocaml-modules/rdbg/default.nix b/pkgs/development/ocaml-modules/rdbg/default.nix index 11aca2dd4e4e..2909605e0bc9 100644 --- a/pkgs/development/ocaml-modules/rdbg/default.nix +++ b/pkgs/development/ocaml-modules/rdbg/default.nix @@ -27,7 +27,7 @@ buildDunePackage rec { lutils ]; - meta = with lib; { + meta = { homepage = "https://gricad-gitlab.univ-grenoble-alpes.fr/verimag/synchrone/rdbg"; description = "Programmable debugger that targets reactive programs for which a rdbg-plugin exists. Currently two plugins exist : one for Lustre, and one for Lutin (nb: both are synchronous programming languages)"; license = lib.licenses.cecill21; diff --git a/pkgs/development/php-packages/composer-local-repo-plugin/default.nix b/pkgs/development/php-packages/composer-local-repo-plugin/default.nix index 863937cb635c..f3f70e9c4e09 100644 --- a/pkgs/development/php-packages/composer-local-repo-plugin/default.nix +++ b/pkgs/development/php-packages/composer-local-repo-plugin/default.nix @@ -27,7 +27,7 @@ php.buildComposerWithPlugin { homepage = "https://github.com/nix-community/composer-local-repo-plugin"; license = lib.licenses.mit; mainProgram = "composer"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/development/php-packages/cyclonedx-php-composer/default.nix b/pkgs/development/php-packages/cyclonedx-php-composer/default.nix index 892cc6776231..fb88cca7c82d 100644 --- a/pkgs/development/php-packages/cyclonedx-php-composer/default.nix +++ b/pkgs/development/php-packages/cyclonedx-php-composer/default.nix @@ -27,7 +27,7 @@ php.buildComposerWithPlugin { homepage = "https://github.com/CycloneDX/cyclonedx-php-composer"; license = lib.licenses.asl20; mainProgram = "composer"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/development/php-packages/meminfo/default.nix b/pkgs/development/php-packages/meminfo/default.nix index f6512b74a527..0d2d83153be6 100644 --- a/pkgs/development/php-packages/meminfo/default.nix +++ b/pkgs/development/php-packages/meminfo/default.nix @@ -24,6 +24,6 @@ buildPecl rec { description = "PHP extension to get insight about memory usage"; homepage = "https://github.com/BitOne/php-meminfo"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/php-packages/zstd/default.nix b/pkgs/development/php-packages/zstd/default.nix index 6668969eebe5..44408547708f 100644 --- a/pkgs/development/php-packages/zstd/default.nix +++ b/pkgs/development/php-packages/zstd/default.nix @@ -30,6 +30,6 @@ buildPecl { description = "Zstd Extension for PHP"; license = licenses.mit; homepage = "https://github.com/kjdev/php-ext-zstd"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/affine/default.nix b/pkgs/development/python-modules/affine/default.nix index 50ad44f34cc1..a27c427a7ff7 100644 --- a/pkgs/development/python-modules/affine/default.nix +++ b/pkgs/development/python-modules/affine/default.nix @@ -29,6 +29,6 @@ buildPythonPackage rec { description = "Matrices describing affine transformation of the plane"; license = licenses.bsd3; homepage = "https://github.com/rasterio/affine"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiofiles/default.nix b/pkgs/development/python-modules/aiofiles/default.nix index 8aafdcf4587c..be4bcde5e261 100644 --- a/pkgs/development/python-modules/aiofiles/default.nix +++ b/pkgs/development/python-modules/aiofiles/default.nix @@ -47,6 +47,6 @@ buildPythonPackage rec { homepage = "https://github.com/Tinche/aiofiles"; changelog = "https://github.com/Tinche/aiofiles/releases/tag/v${version}"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-cors/default.nix b/pkgs/development/python-modules/aiohttp-cors/default.nix index c6625576d692..a0ca926c88ad 100644 --- a/pkgs/development/python-modules/aiohttp-cors/default.nix +++ b/pkgs/development/python-modules/aiohttp-cors/default.nix @@ -47,6 +47,6 @@ buildPythonPackage rec { description = "CORS support for aiohttp"; homepage = "https://github.com/aio-libs/aiohttp-cors"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/aiohttp-utils/default.nix b/pkgs/development/python-modules/aiohttp-utils/default.nix index 1420606516c3..5b4976bd8718 100644 --- a/pkgs/development/python-modules/aiohttp-utils/default.nix +++ b/pkgs/development/python-modules/aiohttp-utils/default.nix @@ -53,6 +53,6 @@ buildPythonPackage rec { homepage = "https://github.com/sloria/aiohttp-utils"; changelog = "https://github.com/sloria/aiohttp-utils/blob/${src.rev}/CHANGELOG.rst"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/annotated-types/default.nix b/pkgs/development/python-modules/annotated-types/default.nix index cd818c067676..b75d18edbb51 100644 --- a/pkgs/development/python-modules/annotated-types/default.nix +++ b/pkgs/development/python-modules/annotated-types/default.nix @@ -33,6 +33,6 @@ buildPythonPackage rec { homepage = "https://github.com/annotated-types/annotated-types"; changelog = "https://github.com/annotated-types/annotated-types/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/anytree/default.nix b/pkgs/development/python-modules/anytree/default.nix index a4b7b9254de3..1781088fe5af 100644 --- a/pkgs/development/python-modules/anytree/default.nix +++ b/pkgs/development/python-modules/anytree/default.nix @@ -55,6 +55,6 @@ buildPythonPackage rec { homepage = "https://github.com/c0fec0de/anytree"; changelog = "https://github.com/c0fec0de/anytree/releases/tag/${version}"; license = lib.licenses.asl20; - maintainers = with lib.maitnainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/apptools/default.nix b/pkgs/development/python-modules/apptools/default.nix index e3907b29a46f..1abfe191134c 100644 --- a/pkgs/development/python-modules/apptools/default.nix +++ b/pkgs/development/python-modules/apptools/default.nix @@ -59,6 +59,6 @@ buildPythonPackage rec { homepage = "https://github.com/enthought/apptools"; changelog = "https://github.com/enthought/apptools/releases/tag/${src.tag}"; license = licenses.bsdOriginal; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/argh/default.nix b/pkgs/development/python-modules/argh/default.nix index 38b84a9e8ca9..476dfd6bb4ee 100644 --- a/pkgs/development/python-modules/argh/default.nix +++ b/pkgs/development/python-modules/argh/default.nix @@ -33,6 +33,6 @@ buildPythonPackage rec { homepage = "https://github.com/neithere/argh"; description = "Unobtrusive argparse wrapper with natural syntax"; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/args/default.nix b/pkgs/development/python-modules/args/default.nix index 28170c20e92c..7f1bc1a7ed3d 100644 --- a/pkgs/development/python-modules/args/default.nix +++ b/pkgs/development/python-modules/args/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { sha256 = "a785b8d837625e9b61c39108532d95b85274acd679693b71ebb5156848fcf814"; }; - meta = with lib; { + meta = { description = "Command Arguments for Humans"; homepage = "https://github.com/kennethreitz/args"; }; diff --git a/pkgs/development/python-modules/asusrouter/default.nix b/pkgs/development/python-modules/asusrouter/default.nix index 82a4eb4548b7..85344c68253c 100644 --- a/pkgs/development/python-modules/asusrouter/default.nix +++ b/pkgs/development/python-modules/asusrouter/default.nix @@ -47,6 +47,6 @@ buildPythonPackage rec { homepage = "https://github.com/Vaskivskyi/asusrouter"; changelog = "https://github.com/Vaskivskyi/asusrouter/releases/tag/${src.tag}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/attrs-strict/default.nix b/pkgs/development/python-modules/attrs-strict/default.nix index cec021f15ab3..726778baa0e8 100644 --- a/pkgs/development/python-modules/attrs-strict/default.nix +++ b/pkgs/development/python-modules/attrs-strict/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { description = "Python package which contains runtime validation for attrs data classes based on the types existing in the typing module"; homepage = "https://github.com/bloomberg/attrs-strict"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/avro3k/default.nix b/pkgs/development/python-modules/avro3k/default.nix index cc85bb4611a6..6f7474e6f40e 100644 --- a/pkgs/development/python-modules/avro3k/default.nix +++ b/pkgs/development/python-modules/avro3k/default.nix @@ -27,7 +27,7 @@ buildPythonPackage rec { doCheck = false; # No such file or directory: './run_tests.py - meta = with lib; { + meta = { description = "Serialization and RPC framework"; mainProgram = "avro"; homepage = "https://pypi.python.org/pypi/avro3k/"; diff --git a/pkgs/development/python-modules/azure-ai-documentintelligence/default.nix b/pkgs/development/python-modules/azure-ai-documentintelligence/default.nix index 1742a01ddaa5..9b0ca858e8ff 100644 --- a/pkgs/development/python-modules/azure-ai-documentintelligence/default.nix +++ b/pkgs/development/python-modules/azure-ai-documentintelligence/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { description = "Azure AI Document Intelligence client library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix b/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix index b5b96f9fa24a..195ecfc16204 100644 --- a/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-mysqlflexibleservers/default.nix @@ -41,6 +41,6 @@ buildPythonPackage rec { description = "Microsoft Azure Mysqlflexibleservers Management Client Library for Python"; homepage = "https://pypi.org/project/azure-mgmt-mysqlflexibleservers/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix b/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix index f2aeb55a13b3..b18a41d7af01 100644 --- a/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix +++ b/pkgs/development/python-modules/azure-mgmt-postgresqlflexibleservers/default.nix @@ -41,6 +41,6 @@ buildPythonPackage rec { description = "Microsoft Azure Postgresqlflexibleservers Management Client Library for Python"; homepage = "https://pypi.org/project/azure-mgmt-postgresqlflexibleservers/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/azure-storage-file-datalake/default.nix b/pkgs/development/python-modules/azure-storage-file-datalake/default.nix index faf0f8c738f4..8ddc795d9180 100644 --- a/pkgs/development/python-modules/azure-storage-file-datalake/default.nix +++ b/pkgs/development/python-modules/azure-storage-file-datalake/default.nix @@ -48,6 +48,6 @@ buildPythonPackage rec { description = "Microsoft Azure File DataLake Storage Client Library for Python"; homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/storage/azure-storage-file-datalake"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/backports-shutil-which/default.nix b/pkgs/development/python-modules/backports-shutil-which/default.nix index 3ac8cc7701ff..d7acb0c644b8 100644 --- a/pkgs/development/python-modules/backports-shutil-which/default.nix +++ b/pkgs/development/python-modules/backports-shutil-which/default.nix @@ -28,6 +28,6 @@ buildPythonPackage rec { description = "Backport of shutil.which from Python 3.3"; homepage = "https://github.com/minrk/backports.shutil_which"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/backrefs/default.nix b/pkgs/development/python-modules/backrefs/default.nix index 50a8892698e6..cbcce0a60d9c 100644 --- a/pkgs/development/python-modules/backrefs/default.nix +++ b/pkgs/development/python-modules/backrefs/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { homepage = "https://github.com/facelessuser/backrefs"; changelog = "https://github.com/facelessuser/backrefs/releases/tag/${src.tag}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/basswood-av/default.nix b/pkgs/development/python-modules/basswood-av/default.nix index e6588b8962cd..4772e40358bb 100644 --- a/pkgs/development/python-modules/basswood-av/default.nix +++ b/pkgs/development/python-modules/basswood-av/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { description = "Python bindings for ffmpeg libraries"; homepage = "https://github.com/basswood-io/BasswoodAV"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bcrypt/3.nix b/pkgs/development/python-modules/bcrypt/3.nix index 127dc70b136d..5251e5677fe3 100644 --- a/pkgs/development/python-modules/bcrypt/3.nix +++ b/pkgs/development/python-modules/bcrypt/3.nix @@ -38,6 +38,6 @@ buildPythonPackage rec { description = "Modern password hashing for your software and your servers"; homepage = "https://github.com/pyca/bcrypt/"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bcrypt/default.nix b/pkgs/development/python-modules/bcrypt/default.nix index adf6a65b4565..e900f539fc97 100644 --- a/pkgs/development/python-modules/bcrypt/default.nix +++ b/pkgs/development/python-modules/bcrypt/default.nix @@ -71,6 +71,6 @@ buildPythonPackage rec { description = "Modern password hashing for your software and your servers"; homepage = "https://github.com/pyca/bcrypt/"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/beaker/default.nix b/pkgs/development/python-modules/beaker/default.nix index 145875bd4dcb..96ac8fb3c6e9 100644 --- a/pkgs/development/python-modules/beaker/default.nix +++ b/pkgs/development/python-modules/beaker/default.nix @@ -66,7 +66,7 @@ buildPythonPackage rec { description = "Session and Caching library with WSGI Middleware"; homepage = "https://github.com/bbangert/beaker"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; knownVulnerabilities = [ "CVE-2013-7489" ]; }; } diff --git a/pkgs/development/python-modules/beautifulsoup4/default.nix b/pkgs/development/python-modules/beautifulsoup4/default.nix index 9ca243d6f6f1..47d807412197 100644 --- a/pkgs/development/python-modules/beautifulsoup4/default.nix +++ b/pkgs/development/python-modules/beautifulsoup4/default.nix @@ -103,6 +103,6 @@ buildPythonPackage rec { description = "HTML and XML parser"; homepage = "http://crummy.com/software/BeautifulSoup/bs4/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/beniget/default.nix b/pkgs/development/python-modules/beniget/default.nix index 845a43780cb6..35756f510076 100644 --- a/pkgs/development/python-modules/beniget/default.nix +++ b/pkgs/development/python-modules/beniget/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { description = "Extract semantic information about static Python code"; homepage = "https://github.com/serge-sans-paille/beniget"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/blockbuster/default.nix b/pkgs/development/python-modules/blockbuster/default.nix index 821764d5dcf0..a0a488897912 100644 --- a/pkgs/development/python-modules/blockbuster/default.nix +++ b/pkgs/development/python-modules/blockbuster/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { description = "Utility to detect blocking calls in the async event loop"; homepage = "https://github.com/cbornet/blockbuster"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bot-safe-agents/default.nix b/pkgs/development/python-modules/bot-safe-agents/default.nix index d254f93e06a1..cebc5690ae5f 100644 --- a/pkgs/development/python-modules/bot-safe-agents/default.nix +++ b/pkgs/development/python-modules/bot-safe-agents/default.nix @@ -26,6 +26,6 @@ buildPythonPackage rec { homepage = "https://github.com/ivan-sincek/bot-safe-agents"; changelog = "https://github.com/ivan-sincek/bot-safe-agents/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/bravia-tv/default.nix b/pkgs/development/python-modules/bravia-tv/default.nix index 9339066299a3..bde10650661e 100644 --- a/pkgs/development/python-modules/bravia-tv/default.nix +++ b/pkgs/development/python-modules/bravia-tv/default.nix @@ -30,6 +30,6 @@ buildPythonPackage rec { homepage = "https://github.com/dcnielsen90/python-bravia-tv"; description = "Python library for Sony Bravia TV remote control"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cached-property/default.nix b/pkgs/development/python-modules/cached-property/default.nix index 7ca37c54bde2..141a2115c28c 100644 --- a/pkgs/development/python-modules/cached-property/default.nix +++ b/pkgs/development/python-modules/cached-property/default.nix @@ -42,6 +42,6 @@ buildPythonPackage rec { changelog = "https://github.com/pydanny/cached-property/releases/tag/${version}"; license = licenses.bsd3; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cachelib/default.nix b/pkgs/development/python-modules/cachelib/default.nix index 3da6feb67683..4296099f4987 100644 --- a/pkgs/development/python-modules/cachelib/default.nix +++ b/pkgs/development/python-modules/cachelib/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { homepage = "https://github.com/pallets/cachelib"; description = "Collection of cache libraries in the same API interface"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/canonical-sphinx-extensions/default.nix b/pkgs/development/python-modules/canonical-sphinx-extensions/default.nix index a7d349050c57..95e01c541bb9 100644 --- a/pkgs/development/python-modules/canonical-sphinx-extensions/default.nix +++ b/pkgs/development/python-modules/canonical-sphinx-extensions/default.nix @@ -39,6 +39,6 @@ buildPythonPackage rec { description = "Collection of Sphinx extensions used by Canonical documentation"; homepage = "https://pypi.org/project/canonical-sphinx-extensions"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/captum/default.nix b/pkgs/development/python-modules/captum/default.nix index c4db2ba36bb2..32889473641c 100644 --- a/pkgs/development/python-modules/captum/default.nix +++ b/pkgs/development/python-modules/captum/default.nix @@ -74,6 +74,6 @@ buildPythonPackage rec { description = "Model interpretability and understanding for PyTorch"; homepage = "https://github.com/pytorch/captum"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cartopy/default.nix b/pkgs/development/python-modules/cartopy/default.nix index 8df52e398f07..9572ec1ab0b9 100644 --- a/pkgs/development/python-modules/cartopy/default.nix +++ b/pkgs/development/python-modules/cartopy/default.nix @@ -97,7 +97,7 @@ buildPythonPackage rec { homepage = "https://scitools.org.uk/cartopy/docs/latest/"; changelog = "https://github.com/SciTools/cartopy/releases/tag/v${version}"; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "feature_download"; }; } diff --git a/pkgs/development/python-modules/celery-types/default.nix b/pkgs/development/python-modules/celery-types/default.nix index 8c02aaf93c62..7d2def019bdb 100644 --- a/pkgs/development/python-modules/celery-types/default.nix +++ b/pkgs/development/python-modules/celery-types/default.nix @@ -30,6 +30,6 @@ buildPythonPackage rec { description = "PEP-484 stubs for Celery"; homepage = "https://github.com/sbdchd/celery-types"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/certbot/default.nix b/pkgs/development/python-modules/certbot/default.nix index 0bb466a705b5..6c3a4a19fcb3 100644 --- a/pkgs/development/python-modules/certbot/default.nix +++ b/pkgs/development/python-modules/certbot/default.nix @@ -93,7 +93,7 @@ buildPythonPackage rec { description = "ACME client that can obtain certs and extensibly update server configurations"; platforms = platforms.unix; mainProgram = "certbot"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = with licenses; [ asl20 ]; }; } diff --git a/pkgs/development/python-modules/cffconvert/default.nix b/pkgs/development/python-modules/cffconvert/default.nix index f7538f6827c4..758bf9bc7793 100644 --- a/pkgs/development/python-modules/cffconvert/default.nix +++ b/pkgs/development/python-modules/cffconvert/default.nix @@ -52,6 +52,6 @@ buildPythonPackage rec { homepage = "https://github.com/citation-file-format/cffconvert"; license = lib.licenses.asl20; mainProgram = "cffconvert"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chai/default.nix b/pkgs/development/python-modules/chai/default.nix index 756a2ab0868b..a45bff2e2654 100644 --- a/pkgs/development/python-modules/chai/default.nix +++ b/pkgs/development/python-modules/chai/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { --replace "assert_equals" "assert_equal" ''; - meta = with lib; { + meta = { description = "Mocking, stubbing and spying framework for python"; }; } diff --git a/pkgs/development/python-modules/chameleon/default.nix b/pkgs/development/python-modules/chameleon/default.nix index ae26fb90e5b8..8ac89152f3a0 100644 --- a/pkgs/development/python-modules/chameleon/default.nix +++ b/pkgs/development/python-modules/chameleon/default.nix @@ -34,6 +34,6 @@ buildPythonPackage rec { downloadPage = "https://github.com/malthe/chameleon"; homepage = "https://chameleon.readthedocs.io"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/changelog-chug/default.nix b/pkgs/development/python-modules/changelog-chug/default.nix index 3a08569a8441..a13435f0a247 100644 --- a/pkgs/development/python-modules/changelog-chug/default.nix +++ b/pkgs/development/python-modules/changelog-chug/default.nix @@ -53,6 +53,6 @@ buildPythonPackage rec { description = "Changelog document parser"; homepage = "https://git.sr.ht/~bignose/changelog-chug"; license = lib.licenses.agpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/chardet/default.nix b/pkgs/development/python-modules/chardet/default.nix index de5aa8adab55..b710fa984cfb 100644 --- a/pkgs/development/python-modules/chardet/default.nix +++ b/pkgs/development/python-modules/chardet/default.nix @@ -39,6 +39,6 @@ buildPythonPackage rec { mainProgram = "chardetect"; homepage = "https://github.com/chardet/chardet"; license = licenses.lgpl21Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/click-plugins/default.nix b/pkgs/development/python-modules/click-plugins/default.nix index 2a5d4ccd334f..2358097e1cad 100644 --- a/pkgs/development/python-modules/click-plugins/default.nix +++ b/pkgs/development/python-modules/click-plugins/default.nix @@ -28,6 +28,6 @@ buildPythonPackage rec { description = "Extension module for click to enable registering CLI commands"; homepage = "https://github.com/click-contrib/click-plugins"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cligj/default.nix b/pkgs/development/python-modules/cligj/default.nix index 1d3c57b3edfc..b3fa6fd39f24 100644 --- a/pkgs/development/python-modules/cligj/default.nix +++ b/pkgs/development/python-modules/cligj/default.nix @@ -32,6 +32,6 @@ buildPythonPackage rec { description = "Click params for command line interfaces to GeoJSON"; homepage = "https://github.com/mapbox/cligj"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/clint/default.nix b/pkgs/development/python-modules/clint/default.nix index ac949f4d5ce7..453f9edcf01f 100644 --- a/pkgs/development/python-modules/clint/default.nix +++ b/pkgs/development/python-modules/clint/default.nix @@ -29,6 +29,6 @@ buildPythonPackage rec { homepage = "https://github.com/kennethreitz/clint"; description = "Python Command Line Interface Tools"; license = licenses.isc; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/cobble/default.nix b/pkgs/development/python-modules/cobble/default.nix index 4d37d4fd8c86..13fe8f3235d6 100644 --- a/pkgs/development/python-modules/cobble/default.nix +++ b/pkgs/development/python-modules/cobble/default.nix @@ -46,6 +46,6 @@ buildPythonPackage rec { description = "Create Python data objects"; homepage = "https://github.com/mwilliamson/python-cobble"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/colander/default.nix b/pkgs/development/python-modules/colander/default.nix index 58ee3652343a..1f61b36e9021 100644 --- a/pkgs/development/python-modules/colander/default.nix +++ b/pkgs/development/python-modules/colander/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { description = "Simple schema-based serialization and deserialization library"; homepage = "https://github.com/Pylons/colander"; license = licenses.free; # http://repoze.org/LICENSE.txt - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/contexter/default.nix b/pkgs/development/python-modules/contexter/default.nix index 5ca090e91901..3690d8fff16c 100644 --- a/pkgs/development/python-modules/contexter/default.nix +++ b/pkgs/development/python-modules/contexter/default.nix @@ -14,5 +14,5 @@ buildPythonPackage rec { sha256 = "c730890b1a915051414a6350d8ea1cddca7d01d8f756badedb30b9bf305ea0a8"; }; - meta = with lib; { }; + meta = { }; } diff --git a/pkgs/development/python-modules/cython/default.nix b/pkgs/development/python-modules/cython/default.nix index f62acbab3b90..c31044550c72 100644 --- a/pkgs/development/python-modules/cython/default.nix +++ b/pkgs/development/python-modules/cython/default.nix @@ -122,7 +122,7 @@ buildPythonPackage rec { changelog = "https://github.com/cython/cython/blob/${version}/CHANGES.rst"; license = lib.licenses.asl20; mainProgram = "cython"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } # TODO: investigate recursive loop when doCheck is true diff --git a/pkgs/development/python-modules/datauri/default.nix b/pkgs/development/python-modules/datauri/default.nix index a2b40cab29f9..ebee55a54094 100644 --- a/pkgs/development/python-modules/datauri/default.nix +++ b/pkgs/development/python-modules/datauri/default.nix @@ -43,6 +43,6 @@ buildPythonPackage rec { homepage = "https://github.com/fcurella/python-datauri"; changelog = "https://github.com/fcurella/python-datauri/releases/tag/${src.tag}"; license = licenses.unlicense; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dbt-protos/default.nix b/pkgs/development/python-modules/dbt-protos/default.nix index 673bde17fd3d..778df8d045d7 100644 --- a/pkgs/development/python-modules/dbt-protos/default.nix +++ b/pkgs/development/python-modules/dbt-protos/default.nix @@ -34,6 +34,6 @@ buildPythonPackage rec { description = "dbt public protos"; homepage = "https://github.com/dbt-labs/proto-python-public"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dbus-next/default.nix b/pkgs/development/python-modules/dbus-next/default.nix index ea9add04940d..5c1a6ba1f30d 100644 --- a/pkgs/development/python-modules/dbus-next/default.nix +++ b/pkgs/development/python-modules/dbus-next/default.nix @@ -50,6 +50,6 @@ buildPythonPackage rec { homepage = "https://github.com/altdesktop/python-dbus-next"; changelog = "https://github.com/altdesktop/python-dbus-next/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/deepsearch-toolkit/default.nix b/pkgs/development/python-modules/deepsearch-toolkit/default.nix index 06de3b98e473..451c878b4480 100644 --- a/pkgs/development/python-modules/deepsearch-toolkit/default.nix +++ b/pkgs/development/python-modules/deepsearch-toolkit/default.nix @@ -89,6 +89,6 @@ buildPythonPackage rec { description = "Interact with the Deep Search platform for new knowledge explorations and discoveries"; homepage = "https://github.com/DS4SD/deepsearch-toolkit"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/deform/default.nix b/pkgs/development/python-modules/deform/default.nix index db38184d19ab..16178aad42ca 100644 --- a/pkgs/development/python-modules/deform/default.nix +++ b/pkgs/development/python-modules/deform/default.nix @@ -53,6 +53,6 @@ buildPythonPackage rec { lib.licenses.bsd3 lib.licenses.cc-by-30 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/demes/default.nix b/pkgs/development/python-modules/demes/default.nix index 6a67be764272..610c9d0d0a01 100644 --- a/pkgs/development/python-modules/demes/default.nix +++ b/pkgs/development/python-modules/demes/default.nix @@ -46,6 +46,6 @@ buildPythonPackage rec { mainProgram = "demes"; homepage = "https://github.com/popsim-consortium/demes-python"; license = licenses.isc; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/demesdraw/default.nix b/pkgs/development/python-modules/demesdraw/default.nix index 63fb0f38e06b..dc3b89c7e93d 100644 --- a/pkgs/development/python-modules/demesdraw/default.nix +++ b/pkgs/development/python-modules/demesdraw/default.nix @@ -53,6 +53,6 @@ buildPythonPackage rec { mainProgram = "demesdraw"; homepage = "https://github.com/grahamgower/demesdraw"; license = licenses.isc; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/denonavr/default.nix b/pkgs/development/python-modules/denonavr/default.nix index ca279da97c39..957cce7a860d 100644 --- a/pkgs/development/python-modules/denonavr/default.nix +++ b/pkgs/development/python-modules/denonavr/default.nix @@ -57,6 +57,6 @@ buildPythonPackage rec { homepage = "https://github.com/ol-iver/denonavr"; changelog = "https://github.com/ol-iver/denonavr/releases/tag/${src.tag}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-debug-toolbar/default.nix b/pkgs/development/python-modules/django-debug-toolbar/default.nix index 49a94dfe4487..84c68dda3a03 100644 --- a/pkgs/development/python-modules/django-debug-toolbar/default.nix +++ b/pkgs/development/python-modules/django-debug-toolbar/default.nix @@ -70,6 +70,6 @@ buildPythonPackage rec { homepage = "https://github.com/jazzband/django-debug-toolbar"; changelog = "https://django-debug-toolbar.readthedocs.io/en/latest/changes.html"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-environ/default.nix b/pkgs/development/python-modules/django-environ/default.nix index 47d4cf94731f..6902020a449f 100644 --- a/pkgs/development/python-modules/django-environ/default.nix +++ b/pkgs/development/python-modules/django-environ/default.nix @@ -34,6 +34,6 @@ buildPythonPackage rec { homepage = "https://github.com/joke2k/django-environ/"; changelog = "https://github.com/joke2k/django-environ/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-formtools/default.nix b/pkgs/development/python-modules/django-formtools/default.nix index 6428cec5ae2f..f5d247e47883 100644 --- a/pkgs/development/python-modules/django-formtools/default.nix +++ b/pkgs/development/python-modules/django-formtools/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { homepage = "https://github.com/jazzband/django-formtools"; changelog = "https://github.com/jazzband/django-formtools/blob/master/docs/changelog.rst"; license = licenses.bsd3; - maintainers = with maintainers; [ + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-ninja/default.nix b/pkgs/development/python-modules/django-ninja/default.nix index 4d23f1c52602..8813c6d2f9fa 100644 --- a/pkgs/development/python-modules/django-ninja/default.nix +++ b/pkgs/development/python-modules/django-ninja/default.nix @@ -45,6 +45,6 @@ buildPythonPackage rec { description = "Web framework for building APIs with Django and Python type hints"; homepage = "https://django-ninja.dev"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-statici18n/default.nix b/pkgs/development/python-modules/django-statici18n/default.nix index 9db592a84c7e..f78770643dcd 100644 --- a/pkgs/development/python-modules/django-statici18n/default.nix +++ b/pkgs/development/python-modules/django-statici18n/default.nix @@ -47,7 +47,7 @@ buildPythonPackage rec { description = "Helper for generating Javascript catalog to static files"; homepage = "https://github.com/zyegfryed/django-statici18n"; license = licenses.bsd3; - maintainers = with maintainers; [ + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-stubs-ext/default.nix b/pkgs/development/python-modules/django-stubs-ext/default.nix index 55f560f406e8..cd5c80588366 100644 --- a/pkgs/development/python-modules/django-stubs-ext/default.nix +++ b/pkgs/development/python-modules/django-stubs-ext/default.nix @@ -61,6 +61,6 @@ buildPythonPackage rec { homepage = "https://github.com/typeddjango/django-stubs"; changelog = "https://github.com/typeddjango/django-stubs/releases/tag/${version}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-stubs/default.nix b/pkgs/development/python-modules/django-stubs/default.nix index 14ae6d4dda4f..77e65134666e 100644 --- a/pkgs/development/python-modules/django-stubs/default.nix +++ b/pkgs/development/python-modules/django-stubs/default.nix @@ -73,6 +73,6 @@ buildPythonPackage rec { homepage = "https://github.com/typeddjango/django-stubs"; changelog = "https://github.com/typeddjango/django-stubs/releases/tag/${version}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/django-tree-queries/default.nix b/pkgs/development/python-modules/django-tree-queries/default.nix index 36ffc5712e53..6484ff054d24 100644 --- a/pkgs/development/python-modules/django-tree-queries/default.nix +++ b/pkgs/development/python-modules/django-tree-queries/default.nix @@ -48,6 +48,6 @@ buildPythonPackage rec { homepage = "https://github.com/feincms/django-tree-queries"; changelog = "https://github.com/feincms/django-tree-queries/blob/${src.tag}/CHANGELOG.rst"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/djangorestframework-stubs/default.nix b/pkgs/development/python-modules/djangorestframework-stubs/default.nix index 4e1739736391..e0be6cd948bc 100644 --- a/pkgs/development/python-modules/djangorestframework-stubs/default.nix +++ b/pkgs/development/python-modules/djangorestframework-stubs/default.nix @@ -69,6 +69,6 @@ buildPythonPackage rec { homepage = "https://github.com/typeddjango/djangorestframework-stubs"; changelog = "https://github.com/typeddjango/djangorestframework-stubs/releases/tag/${src.tag}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docling-core/default.nix b/pkgs/development/python-modules/docling-core/default.nix index ccddedf731c3..5991ac0c5cf8 100644 --- a/pkgs/development/python-modules/docling-core/default.nix +++ b/pkgs/development/python-modules/docling-core/default.nix @@ -83,6 +83,6 @@ buildPythonPackage rec { description = "Python library to define and validate data types in Docling"; homepage = "https://github.com/DS4SD/docling-core"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docling-ibm-models/default.nix b/pkgs/development/python-modules/docling-ibm-models/default.nix index 1e3a4eb4392d..eb898d3e5c26 100644 --- a/pkgs/development/python-modules/docling-ibm-models/default.nix +++ b/pkgs/development/python-modules/docling-ibm-models/default.nix @@ -91,6 +91,6 @@ buildPythonPackage rec { description = "Docling IBM models"; homepage = "https://github.com/DS4SD/docling-ibm-models"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docling-parse/default.nix b/pkgs/development/python-modules/docling-parse/default.nix index 2391535aa64d..8bf765c20e41 100644 --- a/pkgs/development/python-modules/docling-parse/default.nix +++ b/pkgs/development/python-modules/docling-parse/default.nix @@ -94,6 +94,6 @@ buildPythonPackage rec { description = "Simple package to extract text with coordinates from programmatic PDFs"; homepage = "https://github.com/DS4SD/docling-parse"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docling-serve/default.nix b/pkgs/development/python-modules/docling-serve/default.nix index 6ba0ee914484..b81c15a62747 100644 --- a/pkgs/development/python-modules/docling-serve/default.nix +++ b/pkgs/development/python-modules/docling-serve/default.nix @@ -105,6 +105,6 @@ buildPythonPackage rec { homepage = "https://github.com/docling-project/docling-serve"; license = lib.licenses.mit; mainProgram = "docling-serve"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/docutils/default.nix b/pkgs/development/python-modules/docutils/default.nix index 2789c78eca25..c318de33809c 100644 --- a/pkgs/development/python-modules/docutils/default.nix +++ b/pkgs/development/python-modules/docutils/default.nix @@ -53,7 +53,7 @@ let psfl gpl3Plus ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }; in diff --git a/pkgs/development/python-modules/donfig/default.nix b/pkgs/development/python-modules/donfig/default.nix index 3c06c81917c7..8243191376b4 100644 --- a/pkgs/development/python-modules/donfig/default.nix +++ b/pkgs/development/python-modules/donfig/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { homepage = "https://github.com/pytroll/donfig"; changelog = "https://github.com/pytroll/donfig/blob/${src.rev}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dotty-dict/default.nix b/pkgs/development/python-modules/dotty-dict/default.nix index d9ab52747895..6c3045d199a7 100644 --- a/pkgs/development/python-modules/dotty-dict/default.nix +++ b/pkgs/development/python-modules/dotty-dict/default.nix @@ -29,6 +29,6 @@ buildPythonPackage rec { homepage = "https://dotty-dict.readthedocs.io"; changelog = "https://github.com/pawelzny/dotty_dict/releases/tag/${src.tag}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/durationpy/default.nix b/pkgs/development/python-modules/durationpy/default.nix index 81437e51bced..a86bc41ec301 100644 --- a/pkgs/development/python-modules/durationpy/default.nix +++ b/pkgs/development/python-modules/durationpy/default.nix @@ -30,6 +30,6 @@ buildPythonPackage rec { description = "Module for converting between datetime.timedelta and Go's time.Duration strings"; homepage = "https://github.com/icholy/durationpy"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/dynaconf/default.nix b/pkgs/development/python-modules/dynaconf/default.nix index e2da505d0ab1..2fc69515969e 100644 --- a/pkgs/development/python-modules/dynaconf/default.nix +++ b/pkgs/development/python-modules/dynaconf/default.nix @@ -102,6 +102,6 @@ buildPythonPackage rec { changelog = "https://github.com/dynaconf/dynaconf/blob/${src.tag}/CHANGELOG.md"; mainProgram = "dynaconf"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/envisage/default.nix b/pkgs/development/python-modules/envisage/default.nix index ed8cfe2a9c3c..a9440766a2e7 100644 --- a/pkgs/development/python-modules/envisage/default.nix +++ b/pkgs/development/python-modules/envisage/default.nix @@ -46,6 +46,6 @@ buildPythonPackage rec { description = "Framework for building applications whose functionalities can be extended by adding plug-ins"; homepage = "https://github.com/enthought/envisage"; license = licenses.bsdOriginal; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/etebase/default.nix b/pkgs/development/python-modules/etebase/default.nix index 2b7f4651f73c..aa1d71af9ada 100644 --- a/pkgs/development/python-modules/etebase/default.nix +++ b/pkgs/development/python-modules/etebase/default.nix @@ -76,6 +76,6 @@ buildPythonPackage rec { homepage = "https://www.etebase.com/"; description = "Python client library for Etebase"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/feedparser/default.nix b/pkgs/development/python-modules/feedparser/default.nix index d31dc4774e42..e6852577047b 100644 --- a/pkgs/development/python-modules/feedparser/default.nix +++ b/pkgs/development/python-modules/feedparser/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { homepage = "https://github.com/kurtmckee/feedparser"; changelog = "https://feedparser.readthedocs.io/en/latest/changelog.html"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/fickling/default.nix b/pkgs/development/python-modules/fickling/default.nix index a0a436b0ca51..e535f4e96912 100644 --- a/pkgs/development/python-modules/fickling/default.nix +++ b/pkgs/development/python-modules/fickling/default.nix @@ -48,6 +48,6 @@ buildPythonPackage rec { homepage = "https://github.com/trailofbits/fickling"; changelog = "https://github.com/trailofbits/fickling/releases/tag/v${version}"; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/firecrawl-py/default.nix b/pkgs/development/python-modules/firecrawl-py/default.nix index baf845e53b81..26600b692e3a 100644 --- a/pkgs/development/python-modules/firecrawl-py/default.nix +++ b/pkgs/development/python-modules/firecrawl-py/default.nix @@ -46,6 +46,6 @@ buildPythonPackage rec { homepage = "https://firecrawl.dev"; changelog = "https://github.com/mendableai/firecrawl/releases/tag/${src.tag}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/flux-led/default.nix b/pkgs/development/python-modules/flux-led/default.nix index bd69a1f647ac..f9e65c5e3d6f 100644 --- a/pkgs/development/python-modules/flux-led/default.nix +++ b/pkgs/development/python-modules/flux-led/default.nix @@ -48,7 +48,7 @@ buildPythonPackage rec { homepage = "https://github.com/Danielhiversen/flux_led"; changelog = "https://github.com/Danielhiversen/flux_led/releases/tag/${version}"; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; mainProgram = "flux_led"; }; diff --git a/pkgs/development/python-modules/forbiddenfruit/default.nix b/pkgs/development/python-modules/forbiddenfruit/default.nix index cb1c8d7a24ef..408e1c6378e4 100644 --- a/pkgs/development/python-modules/forbiddenfruit/default.nix +++ b/pkgs/development/python-modules/forbiddenfruit/default.nix @@ -33,6 +33,6 @@ buildPythonPackage rec { mit gpl3Plus ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/funk/default.nix b/pkgs/development/python-modules/funk/default.nix index 110fb233b152..c97f432617ec 100644 --- a/pkgs/development/python-modules/funk/default.nix +++ b/pkgs/development/python-modules/funk/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { homepage = "https://github.com/mwilliamson/funk"; changelog = "https://github.com/mwilliamson/funk/blob/${src.tag}/NEWS"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gawd/default.nix b/pkgs/development/python-modules/gawd/default.nix index be3191ac6bb8..c61eb13f7ecb 100644 --- a/pkgs/development/python-modules/gawd/default.nix +++ b/pkgs/development/python-modules/gawd/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { mainProgram = "gawd"; homepage = "https://github.com/pooya-rostami/gawd"; license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gbinder-python/default.nix b/pkgs/development/python-modules/gbinder-python/default.nix index 35a811c9398e..d63c86c78f6d 100644 --- a/pkgs/development/python-modules/gbinder-python/default.nix +++ b/pkgs/development/python-modules/gbinder-python/default.nix @@ -43,6 +43,6 @@ buildPythonPackage rec { homepage = "https://github.com/erfanoabdi/gbinder-python"; license = lib.licenses.gpl3; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gcp-storage-emulator/default.nix b/pkgs/development/python-modules/gcp-storage-emulator/default.nix index 9d0434fa1779..c5fc7ed32c4a 100644 --- a/pkgs/development/python-modules/gcp-storage-emulator/default.nix +++ b/pkgs/development/python-modules/gcp-storage-emulator/default.nix @@ -51,7 +51,7 @@ buildPythonPackage rec { description = "Local emulator for Google Cloud Storage"; homepage = "https://github.com/oittaa/gcp-storage-emulator"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "gcp-storage-emulator"; }; } diff --git a/pkgs/development/python-modules/gentools/default.nix b/pkgs/development/python-modules/gentools/default.nix index 592e0e61c26a..14e68d043e95 100644 --- a/pkgs/development/python-modules/gentools/default.nix +++ b/pkgs/development/python-modules/gentools/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { homepage = "https://gentools.readthedocs.io/"; changelog = "https://github.com/ariebovenberg/gentools/blob/v${version}/CHANGELOG.rst"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/geopy/default.nix b/pkgs/development/python-modules/geopy/default.nix index f15a09d60526..314918de4625 100644 --- a/pkgs/development/python-modules/geopy/default.nix +++ b/pkgs/development/python-modules/geopy/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { description = "Python Geocoding Toolbox"; changelog = "https://github.com/geopy/geopy/releases/tag/${version}"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/getmac/default.nix b/pkgs/development/python-modules/getmac/default.nix index 3915b8ebf488..4ace186fccb5 100644 --- a/pkgs/development/python-modules/getmac/default.nix +++ b/pkgs/development/python-modules/getmac/default.nix @@ -54,7 +54,7 @@ buildPythonPackage rec { homepage = "https://github.com/GhostofGoes/getmac"; changelog = "https://github.com/GhostofGoes/getmac/blob/${src.tag}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "getmac"; }; } diff --git a/pkgs/development/python-modules/gistyc/default.nix b/pkgs/development/python-modules/gistyc/default.nix index e8a0631f7e1a..40b1177830cb 100644 --- a/pkgs/development/python-modules/gistyc/default.nix +++ b/pkgs/development/python-modules/gistyc/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { blocks. ''; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/git-url-parse/default.nix b/pkgs/development/python-modules/git-url-parse/default.nix index 5327a2cbbbe1..ac99c02958ea 100644 --- a/pkgs/development/python-modules/git-url-parse/default.nix +++ b/pkgs/development/python-modules/git-url-parse/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { homepage = "https://github.com/coala/git-url-parse"; changelog = "https://github.com/coala/git-url-parse/blob/${src.rev}/CHANGELOG.rst"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gitingest/default.nix b/pkgs/development/python-modules/gitingest/default.nix index 6b51ae2fb5a9..84b47d1e1a7b 100644 --- a/pkgs/development/python-modules/gitingest/default.nix +++ b/pkgs/development/python-modules/gitingest/default.nix @@ -102,7 +102,7 @@ buildPythonPackage rec { description = "Replace 'hub' with 'ingest' in any github url to get a prompt-friendly extract of a codebase"; homepage = "https://github.com/coderamp-labs/gitingest"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "gitingest"; }; } diff --git a/pkgs/development/python-modules/go2rtc-client/default.nix b/pkgs/development/python-modules/go2rtc-client/default.nix index e51eb685adc9..1638f63db509 100644 --- a/pkgs/development/python-modules/go2rtc-client/default.nix +++ b/pkgs/development/python-modules/go2rtc-client/default.nix @@ -62,6 +62,6 @@ buildPythonPackage rec { homepage = "https://github.com/home-assistant-libs/python-go2rtc-client"; changelog = "https://github.com/home-assistant-libs/python-go2rtc-client/releases/tag/${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gocardless-pro/default.nix b/pkgs/development/python-modules/gocardless-pro/default.nix index a4c998e8a63c..9bb514d5728d 100644 --- a/pkgs/development/python-modules/gocardless-pro/default.nix +++ b/pkgs/development/python-modules/gocardless-pro/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { homepage = "https://github.com/gocardless/gocardless-pro-python"; changelog = "https://github.com/gocardless/gocardless-pro-python/blob/${src.tag}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/gyp/default.nix b/pkgs/development/python-modules/gyp/default.nix index 533f37eb0b45..6a0cd4876e63 100644 --- a/pkgs/development/python-modules/gyp/default.nix +++ b/pkgs/development/python-modules/gyp/default.nix @@ -44,6 +44,6 @@ buildPythonPackage { mainProgram = "gyp"; homepage = "https://gyp.gsrc.io"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hatch-babel/default.nix b/pkgs/development/python-modules/hatch-babel/default.nix index cbc1947b44ef..83500ad98b66 100644 --- a/pkgs/development/python-modules/hatch-babel/default.nix +++ b/pkgs/development/python-modules/hatch-babel/default.nix @@ -33,6 +33,6 @@ buildPythonPackage rec { homepage = "https://github.com/NiklasRosenstein/hatch-babel"; changelog = "https://github.com/NiklasRosenstein/hatch-babel/blob/${src.tag}/.changelog/${src.tag}.toml"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hid/default.nix b/pkgs/development/python-modules/hid/default.nix index cf7a57c41e85..2dfdcc6b7f76 100644 --- a/pkgs/development/python-modules/hid/default.nix +++ b/pkgs/development/python-modules/hid/default.nix @@ -34,6 +34,6 @@ buildPythonPackage rec { description = "Hidapi bindings in ctypes"; homepage = "https://github.com/apmorton/pyhidapi"; license = with licenses; [ mit ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/housekeeping/default.nix b/pkgs/development/python-modules/housekeeping/default.nix index 51032fd41b89..2f1b6e4de3ff 100644 --- a/pkgs/development/python-modules/housekeeping/default.nix +++ b/pkgs/development/python-modules/housekeeping/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { description = "Reusable deprecation helpers for Python projects"; homepage = "https://github.com/beanbaginc/housekeeping"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/hyrule/default.nix b/pkgs/development/python-modules/hyrule/default.nix index ead2930ea4f5..5a44daba22fd 100644 --- a/pkgs/development/python-modules/hyrule/default.nix +++ b/pkgs/development/python-modules/hyrule/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { homepage = "https://github.com/hylang/hyrule"; changelog = "https://github.com/hylang/hyrule/releases/tag/${src.tag}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/import-expression/default.nix b/pkgs/development/python-modules/import-expression/default.nix index b21a74f845d8..8f0438979f59 100644 --- a/pkgs/development/python-modules/import-expression/default.nix +++ b/pkgs/development/python-modules/import-expression/default.nix @@ -36,7 +36,7 @@ buildPythonPackage rec { mit psfl ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "import-expression"; }; } diff --git a/pkgs/development/python-modules/jishaku/default.nix b/pkgs/development/python-modules/jishaku/default.nix index aad075020bda..3bb5b74c6b16 100644 --- a/pkgs/development/python-modules/jishaku/default.nix +++ b/pkgs/development/python-modules/jishaku/default.nix @@ -65,7 +65,7 @@ buildPythonPackage rec { description = "Debugging and testing cog for discord.py bots"; homepage = "https://jishaku.readthedocs.io/en/latest"; changelog = "https://github.com/Gorialis/jishaku/releases/tag/${src.tag}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "jishaku"; license = lib.licenses.mit; }; diff --git a/pkgs/development/python-modules/jsonschema/default.nix b/pkgs/development/python-modules/jsonschema/default.nix index 9eb7cdf30e5c..d41e74543f91 100644 --- a/pkgs/development/python-modules/jsonschema/default.nix +++ b/pkgs/development/python-modules/jsonschema/default.nix @@ -90,7 +90,7 @@ buildPythonPackage rec { homepage = "https://github.com/python-jsonschema/jsonschema"; changelog = "https://github.com/python-jsonschema/jsonschema/blob/v${version}/CHANGELOG.rst"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "jsonschema"; }; } diff --git a/pkgs/development/python-modules/kdl-py/default.nix b/pkgs/development/python-modules/kdl-py/default.nix index df409677cc92..783a382dde4a 100644 --- a/pkgs/development/python-modules/kdl-py/default.nix +++ b/pkgs/development/python-modules/kdl-py/default.nix @@ -31,7 +31,7 @@ buildPythonPackage rec { description = "Parser for the KDL language"; homepage = "https://github.com/tabatkins/kdlpy"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; mainProgram = "kdlreformat"; }; } diff --git a/pkgs/development/python-modules/keyutils/default.nix b/pkgs/development/python-modules/keyutils/default.nix index 1baa766af1ad..a2829d8613ef 100644 --- a/pkgs/development/python-modules/keyutils/default.nix +++ b/pkgs/development/python-modules/keyutils/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { description = "Set of python bindings for keyutils"; homepage = "https://github.com/sassoftware/python-keyutils"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/kgb/default.nix b/pkgs/development/python-modules/kgb/default.nix index cc7c98fc6399..4b1a565fe73b 100644 --- a/pkgs/development/python-modules/kgb/default.nix +++ b/pkgs/development/python-modules/kgb/default.nix @@ -28,6 +28,6 @@ buildPythonPackage rec { description = "Python function spy support for unit tests"; homepage = "https://github.com/beanbaginc/kgb"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix b/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix index 0db127edbc5c..7040ae313543 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint-postgres/default.nix @@ -63,7 +63,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytest-asyncio pytestCheckHook - (postgresql.withPackages (p: with p; [ pgvector ])) + (postgresql.withPackages (p: [ pgvector ])) postgresqlTestHook ]; diff --git a/pkgs/development/python-modules/lib4package/default.nix b/pkgs/development/python-modules/lib4package/default.nix index 15bb0faee9bd..3036d4aa6bc6 100644 --- a/pkgs/development/python-modules/lib4package/default.nix +++ b/pkgs/development/python-modules/lib4package/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { description = "Utility for handling package metadata to include in Software Bill of Materials (SBOMs)"; homepage = "https://github.com/anthonyharrison/lib4package"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/livereload/default.nix b/pkgs/development/python-modules/livereload/default.nix index 58efd89f946a..f1cc13b44e99 100644 --- a/pkgs/development/python-modules/livereload/default.nix +++ b/pkgs/development/python-modules/livereload/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { mainProgram = "livereload"; homepage = "https://github.com/lepture/python-livereload"; license = lib.licenses.bsd3; - maintainers = with lib; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/localimport/default.nix b/pkgs/development/python-modules/localimport/default.nix index c267b0c81725..6b913495a6f8 100644 --- a/pkgs/development/python-modules/localimport/default.nix +++ b/pkgs/development/python-modules/localimport/default.nix @@ -20,6 +20,6 @@ buildPythonPackage rec { homepage = "https://github.com/NiklasRosenstein/py-localimport"; description = "Isolated import of Python modules"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/m2r/default.nix b/pkgs/development/python-modules/m2r/default.nix index c4629efa8751..24e752dd8d55 100644 --- a/pkgs/development/python-modules/m2r/default.nix +++ b/pkgs/development/python-modules/m2r/default.nix @@ -43,7 +43,7 @@ buildPythonPackage rec { homepage = "https://github.com/miyakogi/m2r"; description = "Markdown to reStructuredText converter"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; # https://github.com/miyakogi/m2r/issues/66 broken = versionAtLeast mistune.version "2"; }; diff --git a/pkgs/development/python-modules/mako/default.nix b/pkgs/development/python-modules/mako/default.nix index 921bdefcae42..d5a4895cab57 100644 --- a/pkgs/development/python-modules/mako/default.nix +++ b/pkgs/development/python-modules/mako/default.nix @@ -68,6 +68,6 @@ buildPythonPackage rec { changelog = "https://docs.makotemplates.org/en/latest/changelog.html"; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mallard-ducktype/default.nix b/pkgs/development/python-modules/mallard-ducktype/default.nix index f13d66593ed5..791ebaa42316 100644 --- a/pkgs/development/python-modules/mallard-ducktype/default.nix +++ b/pkgs/development/python-modules/mallard-ducktype/default.nix @@ -33,6 +33,6 @@ buildPythonPackage rec { description = "Parser for the lightweight Ducktype syntax for Mallard"; homepage = "https://github.com/projectmallard/mallard-ducktype"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mammoth/default.nix b/pkgs/development/python-modules/mammoth/default.nix index b90aaa8a5a0a..b0f28ff68a1e 100644 --- a/pkgs/development/python-modules/mammoth/default.nix +++ b/pkgs/development/python-modules/mammoth/default.nix @@ -52,6 +52,6 @@ buildPythonPackage rec { homepage = "https://github.com/mwilliamson/python-mammoth"; changelog = "https://github.com/mwilliamson/python-mammoth/blob/${src.tag}/NEWS"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/markdown-inline-graphviz/default.nix b/pkgs/development/python-modules/markdown-inline-graphviz/default.nix index f6efdcd2581a..cf07c9249c83 100644 --- a/pkgs/development/python-modules/markdown-inline-graphviz/default.nix +++ b/pkgs/development/python-modules/markdown-inline-graphviz/default.nix @@ -39,6 +39,6 @@ buildPythonPackage rec { homepage = "https://github.com/cesaremorel/markdown-inline-graphviz/"; changelog = "https://github.com/cesaremorel/markdown-inline-graphviz/releases/tag/${src.tag}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/markitdown/default.nix b/pkgs/development/python-modules/markitdown/default.nix index ff25bba8b1f1..90b62a28ba0c 100644 --- a/pkgs/development/python-modules/markitdown/default.nix +++ b/pkgs/development/python-modules/markitdown/default.nix @@ -86,6 +86,6 @@ buildPythonPackage rec { description = "Python tool for converting files and office documents to Markdown"; homepage = "https://github.com/microsoft/markitdown"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/marko/default.nix b/pkgs/development/python-modules/marko/default.nix index 3f25358b2608..70ab8cbb3b43 100644 --- a/pkgs/development/python-modules/marko/default.nix +++ b/pkgs/development/python-modules/marko/default.nix @@ -52,6 +52,6 @@ buildPythonPackage rec { description = "Markdown parser with high extensibility"; homepage = "https://github.com/frostming/marko"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/markupsafe/default.nix b/pkgs/development/python-modules/markupsafe/default.nix index 96cee74b4ab8..7e82d24685e4 100644 --- a/pkgs/development/python-modules/markupsafe/default.nix +++ b/pkgs/development/python-modules/markupsafe/default.nix @@ -53,6 +53,6 @@ buildPythonPackage rec { description = "Implements a XML/HTML/XHTML Markup safe string"; homepage = "https://palletsprojects.com/p/markupsafe/"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mayavi/default.nix b/pkgs/development/python-modules/mayavi/default.nix index 09fb1b4d0260..9371ffb923e3 100644 --- a/pkgs/development/python-modules/mayavi/default.nix +++ b/pkgs/development/python-modules/mayavi/default.nix @@ -60,7 +60,7 @@ buildPythonPackage rec { description = "3D visualization of scientific data in Python"; homepage = "https://github.com/enthought/mayavi"; license = licenses.bsdOriginal; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "mayavi2"; # segfault broken = pythonAtLeast "3.13"; diff --git a/pkgs/development/python-modules/mean-average-precision/default.nix b/pkgs/development/python-modules/mean-average-precision/default.nix index 62df3a73b1aa..f5670eca20d6 100644 --- a/pkgs/development/python-modules/mean-average-precision/default.nix +++ b/pkgs/development/python-modules/mean-average-precision/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { homepage = "https://github.com/bes-dev/mean_average_precision"; changelog = "https://github.com/bes-dev/mean_average_precision/blob/${version}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix b/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix index 2b9a264748fd..ab4ea0e2ed72 100644 --- a/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix +++ b/pkgs/development/python-modules/microsoft-security-utilities-secret-masker/default.nix @@ -30,6 +30,6 @@ buildPythonPackage rec { description = "Tool for detecting and masking secrets"; homepage = "https://pypi.org/project/microsoft-security-utilities-secret-masker/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-backlinks/default.nix b/pkgs/development/python-modules/mkdocs-backlinks/default.nix index 7f022675e0a0..b7eb6e5323d7 100644 --- a/pkgs/development/python-modules/mkdocs-backlinks/default.nix +++ b/pkgs/development/python-modules/mkdocs-backlinks/default.nix @@ -39,6 +39,6 @@ buildPythonPackage rec { description = "Plugin for adding backlinks to mkdocs"; homepage = "https://github.com/danodic-dev/mkdocs-backlinks/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-build-plantuml/default.nix b/pkgs/development/python-modules/mkdocs-build-plantuml/default.nix index dab90f15c710..45f3fbbb767c 100644 --- a/pkgs/development/python-modules/mkdocs-build-plantuml/default.nix +++ b/pkgs/development/python-modules/mkdocs-build-plantuml/default.nix @@ -42,6 +42,6 @@ buildPythonPackage rec { description = "MkDocs plugin to help generate your plantuml images locally or remotely as files (NOT inline)"; homepage = "https://github.com/christo-ph/mkdocs_build_plantuml"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-drawio-file/default.nix b/pkgs/development/python-modules/mkdocs-drawio-file/default.nix index 44d6442ae200..8197b065e48e 100644 --- a/pkgs/development/python-modules/mkdocs-drawio-file/default.nix +++ b/pkgs/development/python-modules/mkdocs-drawio-file/default.nix @@ -48,6 +48,6 @@ buildPythonPackage rec { description = "Embedding files of Diagrams.net (Draw.io) into MkDocs"; homepage = "https://github.com/onixpro/mkdocs-drawio-file/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-graphviz/default.nix b/pkgs/development/python-modules/mkdocs-graphviz/default.nix index 5455fc9821b2..21d6a40b81d3 100644 --- a/pkgs/development/python-modules/mkdocs-graphviz/default.nix +++ b/pkgs/development/python-modules/mkdocs-graphviz/default.nix @@ -42,6 +42,6 @@ buildPythonPackage rec { description = "Configurable Python markdown extension for graphviz and Mkdocs"; homepage = "https://gitlab.com/rod2ik/mkdocs-graphviz"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-markmap/default.nix b/pkgs/development/python-modules/mkdocs-markmap/default.nix index 46f805805ebd..f0d5ecc93bf2 100644 --- a/pkgs/development/python-modules/mkdocs-markmap/default.nix +++ b/pkgs/development/python-modules/mkdocs-markmap/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { description = "MkDocs plugin and extension to create mindmaps from markdown using markmap"; homepage = "https://github.com/markmap/mkdocs_markmap"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mkdocs-puml/default.nix b/pkgs/development/python-modules/mkdocs-puml/default.nix index acefa6dcaa60..89334729b850 100644 --- a/pkgs/development/python-modules/mkdocs-puml/default.nix +++ b/pkgs/development/python-modules/mkdocs-puml/default.nix @@ -56,6 +56,6 @@ buildPythonPackage rec { description = "Brings PlantUML to MkDocs"; homepage = "https://github.com/MikhailKravets/mkdocs_puml"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/mnist/default.nix b/pkgs/development/python-modules/mnist/default.nix index 9474f170a3de..a9fdd0ebf2b5 100644 --- a/pkgs/development/python-modules/mnist/default.nix +++ b/pkgs/development/python-modules/mnist/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { description = "Python utilities to download and parse the MNIST dataset"; homepage = "https://github.com/datapythonista/mnist"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/monkeytype/default.nix b/pkgs/development/python-modules/monkeytype/default.nix index e06b53a38077..195e5e72f434 100644 --- a/pkgs/development/python-modules/monkeytype/default.nix +++ b/pkgs/development/python-modules/monkeytype/default.nix @@ -53,6 +53,6 @@ buildPythonPackage rec { homepage = "https://github.com/Instagram/MonkeyType/"; changelog = "https://github.com/Instagram/MonkeyType/blob/${src.rev}/CHANGES.rst"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/msldap-bad/default.nix b/pkgs/development/python-modules/msldap-bad/default.nix index f1d2ac94660c..cda5f09b3190 100644 --- a/pkgs/development/python-modules/msldap-bad/default.nix +++ b/pkgs/development/python-modules/msldap-bad/default.nix @@ -52,6 +52,6 @@ buildPythonPackage rec { homepage = "https://github.com/CravateRouge/msldap-bAD"; changelog = "https://github.com/CravateRouge/asyauth-bAD/releases/tag/${src.tag}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/msprime/default.nix b/pkgs/development/python-modules/msprime/default.nix index e2b7b8cbab75..7cafa528dd24 100644 --- a/pkgs/development/python-modules/msprime/default.nix +++ b/pkgs/development/python-modules/msprime/default.nix @@ -83,6 +83,6 @@ buildPythonPackage rec { homepage = "https://github.com/tskit-dev/msprime"; changelog = "https://github.com/tskit-dev/msprime/blob/${version}/CHANGELOG.md"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/munkres/default.nix b/pkgs/development/python-modules/munkres/default.nix index 36866f6b78a7..8be25085c047 100644 --- a/pkgs/development/python-modules/munkres/default.nix +++ b/pkgs/development/python-modules/munkres/default.nix @@ -34,6 +34,6 @@ buildPythonPackage rec { homepage = "http://bmc.github.com/munkres/"; description = "Munkres algorithm for the Assignment Problem"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/music-assistant-client/default.nix b/pkgs/development/python-modules/music-assistant-client/default.nix index 250fa71cb7de..b39665c664d6 100644 --- a/pkgs/development/python-modules/music-assistant-client/default.nix +++ b/pkgs/development/python-modules/music-assistant-client/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { homepage = "https://github.com/music-assistant/client"; changelog = "https://github.com/music-assistant/client/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/music-assistant-models/default.nix b/pkgs/development/python-modules/music-assistant-models/default.nix index dd95b30999ba..ccd232e1842d 100644 --- a/pkgs/development/python-modules/music-assistant-models/default.nix +++ b/pkgs/development/python-modules/music-assistant-models/default.nix @@ -60,6 +60,6 @@ buildPythonPackage rec { homepage = "https://github.com/music-assistant/models"; changelog = "https://github.com/music-assistant/models/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/musicbrainzngs/default.nix b/pkgs/development/python-modules/musicbrainzngs/default.nix index facb63de6f08..e7bc56d4808a 100644 --- a/pkgs/development/python-modules/musicbrainzngs/default.nix +++ b/pkgs/development/python-modules/musicbrainzngs/default.nix @@ -28,6 +28,6 @@ buildPythonPackage rec { homepage = "https://python-musicbrainzngs.readthedocs.org/"; description = "Python bindings for musicbrainz NGS webservice"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nengo/default.nix b/pkgs/development/python-modules/nengo/default.nix index d33846b646b3..740975b03b2f 100644 --- a/pkgs/development/python-modules/nengo/default.nix +++ b/pkgs/development/python-modules/nengo/default.nix @@ -42,6 +42,6 @@ buildPythonPackage rec { description = "Python library for creating and simulating large-scale brain models"; homepage = "https://nengo.ai/"; license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/newick/default.nix b/pkgs/development/python-modules/newick/default.nix index 7a0687c537c8..ec0b78467093 100644 --- a/pkgs/development/python-modules/newick/default.nix +++ b/pkgs/development/python-modules/newick/default.nix @@ -34,6 +34,6 @@ buildPythonPackage rec { description = "Python package to read and write the Newick format"; homepage = "https://github.com/dlce-eva/python-newick"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/newspaper3k/default.nix b/pkgs/development/python-modules/newspaper3k/default.nix index 0131830209dd..8fb7dfa26463 100644 --- a/pkgs/development/python-modules/newspaper3k/default.nix +++ b/pkgs/development/python-modules/newspaper3k/default.nix @@ -39,6 +39,6 @@ buildPythonPackage rec { description = "Simplified python article discovery & extraction"; homepage = "https://pypi.org/project/newspaper3k"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/nodepy-runtime/default.nix b/pkgs/development/python-modules/nodepy-runtime/default.nix index 57c68dccc6e1..840ce04f1dcc 100644 --- a/pkgs/development/python-modules/nodepy-runtime/default.nix +++ b/pkgs/development/python-modules/nodepy-runtime/default.nix @@ -42,6 +42,6 @@ buildPythonPackage rec { extra. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/objprint/default.nix b/pkgs/development/python-modules/objprint/default.nix index 144c7f5113a2..ab4401907f11 100644 --- a/pkgs/development/python-modules/objprint/default.nix +++ b/pkgs/development/python-modules/objprint/default.nix @@ -29,6 +29,6 @@ buildPythonPackage rec { homepage = "https://github.com/gaogaotiantian/objprint"; changelog = "https://github.com/gaogaotiantian/objprint/releases/tag/${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/paddlex/default.nix b/pkgs/development/python-modules/paddlex/default.nix index f4b06db06179..731d46ce7c02 100644 --- a/pkgs/development/python-modules/paddlex/default.nix +++ b/pkgs/development/python-modules/paddlex/default.nix @@ -94,7 +94,7 @@ buildPythonPackage rec { license = lib.licenses.asl20; description = "All-in-One Development Tool based on PaddlePaddle"; changelog = "https://github.com/PaddlePaddle/PaddleX/releases/tag/${src.tag}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = [ "x86_64-linux" "aarch64-linux" diff --git a/pkgs/development/python-modules/paypalrestsdk/default.nix b/pkgs/development/python-modules/paypalrestsdk/default.nix index ed728e0fe1e8..a458fda76e4e 100644 --- a/pkgs/development/python-modules/paypalrestsdk/default.nix +++ b/pkgs/development/python-modules/paypalrestsdk/default.nix @@ -34,7 +34,7 @@ buildPythonPackage rec { pythonImportsCheck = [ "paypalrestsdk" ]; - meta = with lib; { + meta = { description = "Python APIs to create, process and manage payment"; homepage = "https://github.com/paypal/PayPal-Python-SDK"; changelog = "https://github.com/paypal/PayPal-Python-SDK/blob/master/CHANGELOG.md"; diff --git a/pkgs/development/python-modules/pbkdf2/default.nix b/pkgs/development/python-modules/pbkdf2/default.nix index acfc09e9f30e..d663be3337cd 100644 --- a/pkgs/development/python-modules/pbkdf2/default.nix +++ b/pkgs/development/python-modules/pbkdf2/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { # ImportError: No module named test doCheck = false; - meta = with lib; { - maintainers = with maintainers; [ ]; + meta = { + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/peppercorn/default.nix b/pkgs/development/python-modules/peppercorn/default.nix index a45f778e398d..f6e74f90df22 100644 --- a/pkgs/development/python-modules/peppercorn/default.nix +++ b/pkgs/development/python-modules/peppercorn/default.nix @@ -17,7 +17,7 @@ buildPythonPackage rec { meta = with lib; { description = "Library for converting a token stream into a data structure for use in web form posts"; homepage = "https://docs.pylonsproject.org/projects/peppercorn/en/latest/"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; }; } diff --git a/pkgs/development/python-modules/pg8000/default.nix b/pkgs/development/python-modules/pg8000/default.nix index 094ee63ca9a1..22dc8a2811fc 100644 --- a/pkgs/development/python-modules/pg8000/default.nix +++ b/pkgs/development/python-modules/pg8000/default.nix @@ -45,7 +45,7 @@ buildPythonPackage rec { homepage = "https://github.com/tlocke/pg8000"; changelog = "https://github.com/tlocke/pg8000#release-notes"; license = with licenses; [ bsd3 ]; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; }; } diff --git a/pkgs/development/python-modules/piccata/default.nix b/pkgs/development/python-modules/piccata/default.nix index afb29a24bb1c..fcb2bad54b58 100644 --- a/pkgs/development/python-modules/piccata/default.nix +++ b/pkgs/development/python-modules/piccata/default.nix @@ -33,6 +33,6 @@ buildPythonPackage rec { description = "Simple CoAP (RFC7252) toolkit"; homepage = "https://github.com/NordicSemiconductor/piccata"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pilkit/default.nix b/pkgs/development/python-modules/pilkit/default.nix index 1bca24f6e730..71fe0d6bf552 100644 --- a/pkgs/development/python-modules/pilkit/default.nix +++ b/pkgs/development/python-modules/pilkit/default.nix @@ -45,6 +45,6 @@ buildPythonPackage rec { description = "Collection of utilities and processors for the Python Imaging Library"; homepage = "https://github.com/matthewwithanm/pilkit/"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pip-install-test/default.nix b/pkgs/development/python-modules/pip-install-test/default.nix index 57636a7dbf9d..3f033a1e1e08 100644 --- a/pkgs/development/python-modules/pip-install-test/default.nix +++ b/pkgs/development/python-modules/pip-install-test/default.nix @@ -20,6 +20,6 @@ buildPythonPackage rec { description = "Minimal stub package to test success of pip install"; homepage = "https://pypi.org/project/pip-install-test"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pivy/default.nix b/pkgs/development/python-modules/pivy/default.nix index a817681896aa..2e0c1da896c4 100644 --- a/pkgs/development/python-modules/pivy/default.nix +++ b/pkgs/development/python-modules/pivy/default.nix @@ -48,6 +48,6 @@ buildPythonPackage rec { homepage = "https://github.com/coin3d/pivy/"; description = "Python binding for Coin"; license = lib.licenses.bsd0; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plaster/default.nix b/pkgs/development/python-modules/plaster/default.nix index b01e94bc1d57..88e564ac852f 100644 --- a/pkgs/development/python-modules/plaster/default.nix +++ b/pkgs/development/python-modules/plaster/default.nix @@ -25,6 +25,6 @@ buildPythonPackage rec { description = "Loader interface around multiple config file formats"; homepage = "https://pypi.org/project/plaster/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/playsound/default.nix b/pkgs/development/python-modules/playsound/default.nix index 54537341ba38..fd06a196cea8 100644 --- a/pkgs/development/python-modules/playsound/default.nix +++ b/pkgs/development/python-modules/playsound/default.nix @@ -25,6 +25,6 @@ buildPythonPackage rec { description = "Pure Python, cross platform, single function module with no dependencies for playing sounds"; license = licenses.mit; platforms = platforms.all; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plexapi/default.nix b/pkgs/development/python-modules/plexapi/default.nix index 479357fa3f15..75dfcdd13712 100644 --- a/pkgs/development/python-modules/plexapi/default.nix +++ b/pkgs/development/python-modules/plexapi/default.nix @@ -41,6 +41,6 @@ buildPythonPackage rec { homepage = "https://github.com/pkkid/python-plexapi"; changelog = "https://github.com/pkkid/python-plexapi/releases/tag/${version}"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plexauth/default.nix b/pkgs/development/python-modules/plexauth/default.nix index 7e4767c76c60..9a8b40517c23 100644 --- a/pkgs/development/python-modules/plexauth/default.nix +++ b/pkgs/development/python-modules/plexauth/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { homepage = "https://github.com/jjlawren/python-plexauth/"; description = "Handles the authorization flow to obtain tokens from Plex.tv via external redirection"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plexwebsocket/default.nix b/pkgs/development/python-modules/plexwebsocket/default.nix index c07bac70ccc9..a9dd67f82556 100644 --- a/pkgs/development/python-modules/plexwebsocket/default.nix +++ b/pkgs/development/python-modules/plexwebsocket/default.nix @@ -32,6 +32,6 @@ buildPythonPackage rec { homepage = "https://github.com/jjlawren/python-plexwebsocket/"; changelog = "https://github.com/jjlawren/python-plexwebsocket/releases/tag/v${version}"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/plotille/default.nix b/pkgs/development/python-modules/plotille/default.nix index d2f2255c2f29..95be1cb0579e 100644 --- a/pkgs/development/python-modules/plotille/default.nix +++ b/pkgs/development/python-modules/plotille/default.nix @@ -61,6 +61,6 @@ buildPythonPackage rec { description = "Plot in the terminal using braille dots"; homepage = "https://github.com/tammoippen/plotille"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pocket/default.nix b/pkgs/development/python-modules/pocket/default.nix index 5a03ee035bb8..2c65e29dd980 100644 --- a/pkgs/development/python-modules/pocket/default.nix +++ b/pkgs/development/python-modules/pocket/default.nix @@ -21,6 +21,6 @@ buildPythonPackage rec { description = "Wrapper for the pocket API"; homepage = "https://github.com/tapanpandita/pocket"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pooch/default.nix b/pkgs/development/python-modules/pooch/default.nix index 081ce5c48a37..e60d1d34d2df 100644 --- a/pkgs/development/python-modules/pooch/default.nix +++ b/pkgs/development/python-modules/pooch/default.nix @@ -75,6 +75,6 @@ buildPythonPackage rec { description = "Friend to fetch your data files"; homepage = "https://github.com/fatiando/pooch"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/precisely/default.nix b/pkgs/development/python-modules/precisely/default.nix index 7c306edb40c7..0682aa4a1dff 100644 --- a/pkgs/development/python-modules/precisely/default.nix +++ b/pkgs/development/python-modules/precisely/default.nix @@ -32,6 +32,6 @@ buildPythonPackage rec { description = "Matcher library for Python"; homepage = "https://github.com/mwilliamson/python-precisely"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/primp/default.nix b/pkgs/development/python-modules/primp/default.nix index 0140719e10a3..4dee6ca54c99 100644 --- a/pkgs/development/python-modules/primp/default.nix +++ b/pkgs/development/python-modules/primp/default.nix @@ -127,6 +127,6 @@ buildPythonPackage rec { description = "Python Requests IMPersonate, the fastest Python HTTP client that can impersonate web browsers"; homepage = "https://github.com/deedy5/primp"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/progressbar/default.nix b/pkgs/development/python-modules/progressbar/default.nix index b40ab23100ea..a0d3fa8b2431 100644 --- a/pkgs/development/python-modules/progressbar/default.nix +++ b/pkgs/development/python-modules/progressbar/default.nix @@ -21,6 +21,6 @@ buildPythonPackage rec { homepage = "https://pypi.python.org/pypi/progressbar"; description = "Text progressbar library for python"; license = licenses.lgpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/protobuf/3.nix b/pkgs/development/python-modules/protobuf/3.nix index c1d1e8cfe05e..93b753b53d39 100644 --- a/pkgs/development/python-modules/protobuf/3.nix +++ b/pkgs/development/python-modules/protobuf/3.nix @@ -88,6 +88,6 @@ buildPythonPackage { description = "Protocol Buffers are Google's data interchange format"; homepage = "https://developers.google.com/protocol-buffers/"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/protobuf/4.nix b/pkgs/development/python-modules/protobuf/4.nix index 5369f68bf2e8..b99cdb868a3c 100644 --- a/pkgs/development/python-modules/protobuf/4.nix +++ b/pkgs/development/python-modules/protobuf/4.nix @@ -130,7 +130,7 @@ buildPythonPackage { description = "Protocol Buffers are Google's data interchange format"; homepage = "https://developers.google.com/protocol-buffers/"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; broken = lib.versionAtLeast protobuf.version "26"; }; } diff --git a/pkgs/development/python-modules/pure-eval/default.nix b/pkgs/development/python-modules/pure-eval/default.nix index 926cb058cec8..1906b2d7cb26 100644 --- a/pkgs/development/python-modules/pure-eval/default.nix +++ b/pkgs/development/python-modules/pure-eval/default.nix @@ -34,6 +34,6 @@ buildPythonPackage rec { description = "Safely evaluate AST nodes without side effects"; homepage = "https://github.com/alexmojaki/pure_eval"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pwdlib/default.nix b/pkgs/development/python-modules/pwdlib/default.nix index db85f55a3357..d698cd66401c 100644 --- a/pkgs/development/python-modules/pwdlib/default.nix +++ b/pkgs/development/python-modules/pwdlib/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { changelog = "https://github.com/frankie567/pwdlib/releases/tag/v${version}"; homepage = "https://github.com/frankie567/pwdlib"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyasynchat/default.nix b/pkgs/development/python-modules/pyasynchat/default.nix index dd5a1df8f3ed..9fa8590bf209 100644 --- a/pkgs/development/python-modules/pyasynchat/default.nix +++ b/pkgs/development/python-modules/pyasynchat/default.nix @@ -51,6 +51,6 @@ buildPythonPackage rec { description = "Make asynchat available for Python 3.12 onwards"; homepage = "https://github.com/simonrob/pyasynchat"; license = lib.licenses.psfl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyclip/default.nix b/pkgs/development/python-modules/pyclip/default.nix index df12d1415cdc..eff297ecf47e 100644 --- a/pkgs/development/python-modules/pyclip/default.nix +++ b/pkgs/development/python-modules/pyclip/default.nix @@ -48,6 +48,6 @@ buildPythonPackage rec { mainProgram = "pyclip"; homepage = "https://github.com/spyoungtech/pyclip"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pycparser/default.nix b/pkgs/development/python-modules/pycparser/default.nix index 2cd7f4e5445f..fb2e5cbda0e0 100644 --- a/pkgs/development/python-modules/pycparser/default.nix +++ b/pkgs/development/python-modules/pycparser/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { description = "C parser in Python"; homepage = "https://github.com/eliben/pycparser"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pycuda/default.nix b/pkgs/development/python-modules/pycuda/default.nix index f0740908d6ea..d1b096689302 100644 --- a/pkgs/development/python-modules/pycuda/default.nix +++ b/pkgs/development/python-modules/pycuda/default.nix @@ -76,6 +76,6 @@ buildPythonPackage rec { homepage = "https://github.com/inducer/pycuda/"; description = "CUDA integration for Python"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pydash/default.nix b/pkgs/development/python-modules/pydash/default.nix index 9ebf69ddc33c..f722a6785e5c 100644 --- a/pkgs/development/python-modules/pydash/default.nix +++ b/pkgs/development/python-modules/pydash/default.nix @@ -50,6 +50,6 @@ buildPythonPackage rec { homepage = "https://pydash.readthedocs.io"; changelog = "https://github.com/dgilland/pydash/blob/v${version}/CHANGELOG.rst"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pydiffx/default.nix b/pkgs/development/python-modules/pydiffx/default.nix index 9e98c6b17fc0..940f08682275 100644 --- a/pkgs/development/python-modules/pydiffx/default.nix +++ b/pkgs/development/python-modules/pydiffx/default.nix @@ -42,6 +42,6 @@ buildPythonPackage rec { description = "DiffX file format and utilities"; homepage = "https://github.com/beanbaginc/diffx"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyeiscp/default.nix b/pkgs/development/python-modules/pyeiscp/default.nix index ea6138f3ed28..c951f0b9ff86 100644 --- a/pkgs/development/python-modules/pyeiscp/default.nix +++ b/pkgs/development/python-modules/pyeiscp/default.nix @@ -36,6 +36,6 @@ buildPythonPackage { description = "Python asyncio module to interface with Anthem AVM and MRX receivers"; homepage = "https://github.com/winterscar/python-eiscp"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyepsg/default.nix b/pkgs/development/python-modules/pyepsg/default.nix index 47cf101d674b..72a2463712dc 100644 --- a/pkgs/development/python-modules/pyepsg/default.nix +++ b/pkgs/development/python-modules/pyepsg/default.nix @@ -23,6 +23,6 @@ buildPythonPackage rec { description = "Simple Python interface to epsg.io"; license = licenses.lgpl3; homepage = "https://pyepsg.readthedocs.io/en/latest/"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyface/default.nix b/pkgs/development/python-modules/pyface/default.nix index 51d7b089fa72..4389c2e165b8 100644 --- a/pkgs/development/python-modules/pyface/default.nix +++ b/pkgs/development/python-modules/pyface/default.nix @@ -37,7 +37,7 @@ buildPythonPackage rec { description = "Traits-capable windowing framework"; homepage = "https://github.com/enthought/pyface"; changelog = "https://github.com/enthought/pyface/releases/tag/${version}"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.bsdOriginal; }; } diff --git a/pkgs/development/python-modules/pyfakefs/default.nix b/pkgs/development/python-modules/pyfakefs/default.nix index 82b7874d2667..5dc6459b2eb8 100644 --- a/pkgs/development/python-modules/pyfakefs/default.nix +++ b/pkgs/development/python-modules/pyfakefs/default.nix @@ -51,6 +51,6 @@ buildPythonPackage rec { homepage = "https://pyfakefs.org/"; changelog = "https://github.com/jmcgeheeiv/pyfakefs/blob/v${version}/CHANGES.md"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyforked-daapd/default.nix b/pkgs/development/python-modules/pyforked-daapd/default.nix index 040759dbcfe7..472642cd43a2 100644 --- a/pkgs/development/python-modules/pyforked-daapd/default.nix +++ b/pkgs/development/python-modules/pyforked-daapd/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { homepage = "https://github.com/uvjustin/pyforked-daapd"; changelog = "https://github.com/uvjustin/pyforked-daapd/blob/v${version}/CHANGES.txt"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pygelf/default.nix b/pkgs/development/python-modules/pygelf/default.nix index c4a2ef485ceb..339aca863d84 100644 --- a/pkgs/development/python-modules/pygelf/default.nix +++ b/pkgs/development/python-modules/pygelf/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { description = "Python logging handlers with GELF (Graylog Extended Log Format) support"; homepage = "https://github.com/keeprocking/pygelf"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pygments-style-github/default.nix b/pkgs/development/python-modules/pygments-style-github/default.nix index ffacae132031..bf3134645202 100644 --- a/pkgs/development/python-modules/pygments-style-github/default.nix +++ b/pkgs/development/python-modules/pygments-style-github/default.nix @@ -26,6 +26,6 @@ buildPythonPackage rec { description = "Port of the github color scheme for pygments"; homepage = "https://github.com/hugomaiavieira/pygments-style-github"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pymarshal/default.nix b/pkgs/development/python-modules/pymarshal/default.nix index b95074abb86b..955ba3ab056d 100644 --- a/pkgs/development/python-modules/pymarshal/default.nix +++ b/pkgs/development/python-modules/pymarshal/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { meta = { description = "Python data serialization library"; homepage = "https://github.com/stargateaudio/pymarshal"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; license = lib.licenses.bsd2; }; } diff --git a/pkgs/development/python-modules/pymatting/default.nix b/pkgs/development/python-modules/pymatting/default.nix index 74fe384e059d..bef86bb4b0e9 100644 --- a/pkgs/development/python-modules/pymatting/default.nix +++ b/pkgs/development/python-modules/pymatting/default.nix @@ -57,6 +57,6 @@ buildPythonPackage rec { homepage = "https://github.com/pymatting/pymatting"; changelog = "https://github.com/pymatting/pymatting/blob/v${version}/CHANGELOG.md"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pynzb/default.nix b/pkgs/development/python-modules/pynzb/default.nix index 9c6b592e0ac7..565c104096f2 100644 --- a/pkgs/development/python-modules/pynzb/default.nix +++ b/pkgs/development/python-modules/pynzb/default.nix @@ -26,6 +26,6 @@ buildPythonPackage rec { homepage = "https://github.com/ericflo/pynzb"; description = "Unified API for parsing NZB files"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyorc/default.nix b/pkgs/development/python-modules/pyorc/default.nix index eaaa94f6a7cf..6bf2936eb817 100644 --- a/pkgs/development/python-modules/pyorc/default.nix +++ b/pkgs/development/python-modules/pyorc/default.nix @@ -68,6 +68,6 @@ buildPythonPackage rec { description = "Python module for Apache ORC file format"; homepage = "https://github.com/noirello/pyorc"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pypika/default.nix b/pkgs/development/python-modules/pypika/default.nix index 699f4e08cdab..92c043fe8d4e 100644 --- a/pkgs/development/python-modules/pypika/default.nix +++ b/pkgs/development/python-modules/pypika/default.nix @@ -28,6 +28,6 @@ buildPythonPackage rec { description = "Python SQL query builder"; homepage = "https://github.com/kayak/pypika"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyqt-builder/default.nix b/pkgs/development/python-modules/pyqt-builder/default.nix index 442339d6e528..4d2c214a579c 100644 --- a/pkgs/development/python-modules/pyqt-builder/default.nix +++ b/pkgs/development/python-modules/pyqt-builder/default.nix @@ -38,6 +38,6 @@ buildPythonPackage rec { description = "PEP 517 compliant build system for PyQt"; homepage = "https://github.com/Python-PyQt/PyQt-builder"; license = licenses.gpl3Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyqtdarktheme/default.nix b/pkgs/development/python-modules/pyqtdarktheme/default.nix index 872e22d6ef1a..2f9b290a10ab 100644 --- a/pkgs/development/python-modules/pyqtdarktheme/default.nix +++ b/pkgs/development/python-modules/pyqtdarktheme/default.nix @@ -58,6 +58,6 @@ buildPythonPackage rec { description = "Flat dark theme for PySide and PyQt"; homepage = "https://pyqtdarktheme.readthedocs.io/en/stable"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid-beaker/default.nix b/pkgs/development/python-modules/pyramid-beaker/default.nix index 054ac4b8b17a..4bec91496e21 100644 --- a/pkgs/development/python-modules/pyramid-beaker/default.nix +++ b/pkgs/development/python-modules/pyramid-beaker/default.nix @@ -30,11 +30,11 @@ buildPythonPackage rec { pyramid ]; - meta = with lib; { + meta = { description = "Beaker session factory backend for Pyramid"; homepage = "https://docs.pylonsproject.org/projects/pyramid_beaker/en/latest/"; # idk, see https://github.com/Pylons/pyramid_beaker/blob/master/LICENSE.txt # license = licenses.mpl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid-chameleon/default.nix b/pkgs/development/python-modules/pyramid-chameleon/default.nix index 90c1c8a1344d..05d692f1c262 100644 --- a/pkgs/development/python-modules/pyramid-chameleon/default.nix +++ b/pkgs/development/python-modules/pyramid-chameleon/default.nix @@ -47,6 +47,6 @@ buildPythonPackage rec { description = "Chameleon template compiler for pyramid"; homepage = "https://github.com/Pylons/pyramid_chameleon"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid-exclog/default.nix b/pkgs/development/python-modules/pyramid-exclog/default.nix index aeace75fd630..be97087ec4fc 100644 --- a/pkgs/development/python-modules/pyramid-exclog/default.nix +++ b/pkgs/development/python-modules/pyramid-exclog/default.nix @@ -24,6 +24,6 @@ buildPythonPackage rec { description = "Package which logs to a Python logger when an exception is raised by a Pyramid application"; homepage = "https://docs.pylonsproject.org/"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid-jinja2/default.nix b/pkgs/development/python-modules/pyramid-jinja2/default.nix index 3290d7321f23..e9f82a762a4b 100644 --- a/pkgs/development/python-modules/pyramid-jinja2/default.nix +++ b/pkgs/development/python-modules/pyramid-jinja2/default.nix @@ -51,6 +51,6 @@ buildPythonPackage rec { description = "Jinja2 template bindings for the Pyramid web framework"; homepage = "https://github.com/Pylons/pyramid_jinja2"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyramid/default.nix b/pkgs/development/python-modules/pyramid/default.nix index 5f41e53d2e89..631f23ba8152 100644 --- a/pkgs/development/python-modules/pyramid/default.nix +++ b/pkgs/development/python-modules/pyramid/default.nix @@ -69,6 +69,6 @@ buildPythonPackage rec { homepage = "https://trypyramid.com/"; changelog = "https://github.com/Pylons/pyramid/blob/${version}/CHANGES.rst"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyroaring/default.nix b/pkgs/development/python-modules/pyroaring/default.nix index a0ee27e8a5d4..25195278efe9 100644 --- a/pkgs/development/python-modules/pyroaring/default.nix +++ b/pkgs/development/python-modules/pyroaring/default.nix @@ -42,6 +42,6 @@ buildPythonPackage rec { homepage = "https://github.com/Ezibenroc/PyRoaringBitMap"; changelog = "https://github.com/Ezibenroc/PyRoaringBitMap/releases/tag/${src.tag}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyrss2gen/default.nix b/pkgs/development/python-modules/pyrss2gen/default.nix index 89cdf037896b..b91b4a27eb24 100644 --- a/pkgs/development/python-modules/pyrss2gen/default.nix +++ b/pkgs/development/python-modules/pyrss2gen/default.nix @@ -22,6 +22,6 @@ buildPythonPackage rec { homepage = "http://www.dalkescientific.om/Python/PyRSS2Gen.html"; description = "Library for generating RSS 2.0 feeds"; license = licenses.bsd2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyside2-tools/default.nix b/pkgs/development/python-modules/pyside2-tools/default.nix index ff4e9809bcdd..367b44f48208 100644 --- a/pkgs/development/python-modules/pyside2-tools/default.nix +++ b/pkgs/development/python-modules/pyside2-tools/default.nix @@ -64,6 +64,6 @@ stdenv.mkDerivation { description = "PySide2 development tools"; license = licenses.gpl2; homepage = "https://wiki.qt.io/Qt_for_Python"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyside2/default.nix b/pkgs/development/python-modules/pyside2/default.nix index bae24f891b33..ae6d1b373c52 100644 --- a/pkgs/development/python-modules/pyside2/default.nix +++ b/pkgs/development/python-modules/pyside2/default.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation rec { description = "LGPL-licensed Python bindings for Qt"; license = licenses.lgpl21; homepage = "https://wiki.qt.io/Qt_for_Python"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.all; broken = stdenv.hostPlatform.isDarwin; }; diff --git a/pkgs/development/python-modules/pyside6/default.nix b/pkgs/development/python-modules/pyside6/default.nix index b74bfeea4e90..bcd90f6b0475 100644 --- a/pkgs/development/python-modules/pyside6/default.nix +++ b/pkgs/development/python-modules/pyside6/default.nix @@ -133,7 +133,7 @@ stdenv.mkDerivation (finalAttrs: { ]; homepage = "https://wiki.qt.io/Qt_for_Python"; changelog = "https://code.qt.io/cgit/pyside/pyside-setup.git/tree/doc/changelogs/changes-${finalAttrs.version}?h=v${finalAttrs.version}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/python-modules/pyslim/default.nix b/pkgs/development/python-modules/pyslim/default.nix index 250f4e5b8a32..83c0c10f394c 100644 --- a/pkgs/development/python-modules/pyslim/default.nix +++ b/pkgs/development/python-modules/pyslim/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { description = "Tools for dealing with tree sequences coming to and from SLiM"; homepage = "https://github.com/tskit-dev/pyslim"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyspelling/default.nix b/pkgs/development/python-modules/pyspelling/default.nix index a89224b46325..f5674995960f 100644 --- a/pkgs/development/python-modules/pyspelling/default.nix +++ b/pkgs/development/python-modules/pyspelling/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { description = "Spell checker"; homepage = "https://pypi.org/project/pyspelling"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyspinel/default.nix b/pkgs/development/python-modules/pyspinel/default.nix index 1c6de8c5b3c3..c603e2a47907 100644 --- a/pkgs/development/python-modules/pyspinel/default.nix +++ b/pkgs/development/python-modules/pyspinel/default.nix @@ -31,6 +31,6 @@ buildPythonPackage { description = "Interface to the OpenThread Network Co-Processor (NCP)"; homepage = "https://github.com/openthread/pyspinel"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pysuezv2/default.nix b/pkgs/development/python-modules/pysuezv2/default.nix index 9e6cc7f54987..00dc4bc79f1e 100644 --- a/pkgs/development/python-modules/pysuezv2/default.nix +++ b/pkgs/development/python-modules/pysuezv2/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { homepage = "https://github.com/jb101010-2/pySuez"; changelog = "https://github.com/jb101010-2/pySuez/releases/tag/${version}"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-kafka/default.nix b/pkgs/development/python-modules/pytest-kafka/default.nix index 7f85938f00b6..1da9b7d6b6dd 100644 --- a/pkgs/development/python-modules/pytest-kafka/default.nix +++ b/pkgs/development/python-modules/pytest-kafka/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { description = "Pytest fixture factories for Zookeeper, Kafka server and Kafka consumer"; homepage = "https://gitlab.com/karolinepauls/pytest-kafka"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytest-shared-session-scope/default.nix b/pkgs/development/python-modules/pytest-shared-session-scope/default.nix index 0098b51330ba..d0960e9ac565 100644 --- a/pkgs/development/python-modules/pytest-shared-session-scope/default.nix +++ b/pkgs/development/python-modules/pytest-shared-session-scope/default.nix @@ -44,6 +44,6 @@ buildPythonPackage rec { description = "Pytest session-scoped fixture that works with xdist"; homepage = "https://pypi.org/project/pytest-shared-session-scope/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-mpv-jsonipc/default.nix b/pkgs/development/python-modules/python-mpv-jsonipc/default.nix index 8178fe6e8cbb..fcba99bc5f24 100644 --- a/pkgs/development/python-modules/python-mpv-jsonipc/default.nix +++ b/pkgs/development/python-modules/python-mpv-jsonipc/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { homepage = "https://github.com/iwalton3/python-mpv-jsonipc"; description = "Python API to MPV using JSON IPC"; license = licenses.gpl3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/python-youtube/default.nix b/pkgs/development/python-modules/python-youtube/default.nix index 52e10747b98b..d216e7219b40 100644 --- a/pkgs/development/python-modules/python-youtube/default.nix +++ b/pkgs/development/python-modules/python-youtube/default.nix @@ -50,6 +50,6 @@ buildPythonPackage rec { homepage = "https://github.com/sns-sdks/python-youtube"; changelog = "https://github.com/sns-sdks/python-youtube/blob/${src.tag}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pythonocc-core/default.nix b/pkgs/development/python-modules/pythonocc-core/default.nix index 8a589a36f726..ffe4a1e1c813 100644 --- a/pkgs/development/python-modules/pythonocc-core/default.nix +++ b/pkgs/development/python-modules/pythonocc-core/default.nix @@ -66,6 +66,6 @@ stdenv.mkDerivation rec { changelog = "https://github.com/tpaviot/pythonocc-core/releases/tag/${version}"; license = licenses.lgpl3; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytools/default.nix b/pkgs/development/python-modules/pytools/default.nix index 33c8cc87e749..f902b7bc07a9 100644 --- a/pkgs/development/python-modules/pytools/default.nix +++ b/pkgs/development/python-modules/pytools/default.nix @@ -50,6 +50,6 @@ buildPythonPackage rec { homepage = "https://github.com/inducer/pytools/"; changelog = "https://github.com/inducer/pytools/releases/tag/v${version}"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pytorch-bench/default.nix b/pkgs/development/python-modules/pytorch-bench/default.nix index 015bdde64e02..3b8e1551947b 100644 --- a/pkgs/development/python-modules/pytorch-bench/default.nix +++ b/pkgs/development/python-modules/pytorch-bench/default.nix @@ -44,6 +44,6 @@ buildPythonPackage { description = "Benchmarking tool for torch"; homepage = "https://github.com/MaximeGloesener/torch-benchmark"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/pyxdg/default.nix b/pkgs/development/python-modules/pyxdg/default.nix index 4b5be4303e8b..a9f2fa227bd6 100644 --- a/pkgs/development/python-modules/pyxdg/default.nix +++ b/pkgs/development/python-modules/pyxdg/default.nix @@ -26,6 +26,6 @@ buildPythonPackage rec { homepage = "http://freedesktop.org/wiki/Software/pyxdg"; description = "Contains implementations of freedesktop.org standards"; license = licenses.lgpl2; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/raven/default.nix b/pkgs/development/python-modules/raven/default.nix index d6f52aeb5fab..1e8dde519a34 100644 --- a/pkgs/development/python-modules/raven/default.nix +++ b/pkgs/development/python-modules/raven/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { mainProgram = "raven"; homepage = "https://github.com/getsentry/raven-python"; license = [ lib.licenses.bsd3 ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rbtools/default.nix b/pkgs/development/python-modules/rbtools/default.nix index e39600d2eb93..61e67de684d5 100644 --- a/pkgs/development/python-modules/rbtools/default.nix +++ b/pkgs/development/python-modules/rbtools/default.nix @@ -82,6 +82,6 @@ buildPythonPackage rec { description = "RBTools is a set of command line tools for working with Review Board and RBCommons"; mainProgram = "rbt"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/repoze-lru/default.nix b/pkgs/development/python-modules/repoze-lru/default.nix index 7e1caafaedc3..41455a3e3b6b 100644 --- a/pkgs/development/python-modules/repoze-lru/default.nix +++ b/pkgs/development/python-modules/repoze-lru/default.nix @@ -38,6 +38,6 @@ buildPythonPackage rec { homepage = "http://www.repoze.org/"; changelog = "https://github.com/repoze/repoze.lru/blob/${version}/CHANGES.rst"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix b/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix index 17bb5a08a129..c0a132ef5443 100644 --- a/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix +++ b/pkgs/development/python-modules/repoze-sphinx-autointerface/default.nix @@ -47,7 +47,7 @@ buildPythonPackage rec { description = "Auto-generate Sphinx API docs from Zope interfaces"; changelog = "https://github.com/repoze/repoze.sphinx.autointerface/blob/${version}/CHANGES.rst"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; # https://github.com/repoze/repoze.sphinx.autointerface/issues/21 broken = versionAtLeast sphinx.version "7.2"; }; diff --git a/pkgs/development/python-modules/reqif/default.nix b/pkgs/development/python-modules/reqif/default.nix index 308e6bc15233..3e43d1f83763 100644 --- a/pkgs/development/python-modules/reqif/default.nix +++ b/pkgs/development/python-modules/reqif/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { homepage = "https://github.com/strictdoc-project/reqif"; changelog = "https://github.com/strictdoc-project/reqif/releases/tag/${src.tag}"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rfc3987-syntax/default.nix b/pkgs/development/python-modules/rfc3987-syntax/default.nix index 6de67fae9bde..8f9b2f5e0680 100644 --- a/pkgs/development/python-modules/rfc3987-syntax/default.nix +++ b/pkgs/development/python-modules/rfc3987-syntax/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { description = "Helper functions to syntactically validate strings according to RFC 3987"; homepage = "https://github.com/willynilly/rfc3987-syntax"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/rich-toolkit/default.nix b/pkgs/development/python-modules/rich-toolkit/default.nix index c5792e35d017..901a0681dfba 100644 --- a/pkgs/development/python-modules/rich-toolkit/default.nix +++ b/pkgs/development/python-modules/rich-toolkit/default.nix @@ -48,6 +48,6 @@ buildPythonPackage rec { description = "Rich toolkit for building command-line applications"; homepage = "https://github.com/patrick91/rich-toolkit/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sbom2dot/default.nix b/pkgs/development/python-modules/sbom2dot/default.nix index b483d67e9e18..bcebac600a05 100644 --- a/pkgs/development/python-modules/sbom2dot/default.nix +++ b/pkgs/development/python-modules/sbom2dot/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { homepage = "https://github.com/anthonyharrison/sbom2dot"; license = lib.licenses.asl20; mainProgram = "sbom2dot"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sbom4files/default.nix b/pkgs/development/python-modules/sbom4files/default.nix index 674b59934cd7..c5655d03a27f 100644 --- a/pkgs/development/python-modules/sbom4files/default.nix +++ b/pkgs/development/python-modules/sbom4files/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { description = "SBOM generator for files within a directory"; homepage = "https://github.com/anthonyharrison/sbom4files"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/scikit-survival/default.nix b/pkgs/development/python-modules/scikit-survival/default.nix index ced28b72d77a..8b7ba4bcce2c 100644 --- a/pkgs/development/python-modules/scikit-survival/default.nix +++ b/pkgs/development/python-modules/scikit-survival/default.nix @@ -96,6 +96,6 @@ buildPythonPackage rec { homepage = "https://github.com/sebp/scikit-survival"; changelog = "https://github.com/sebp/scikit-survival/releases/tag/v${version}"; license = lib.licenses.gpl3Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/shiboken2/default.nix b/pkgs/development/python-modules/shiboken2/default.nix index 46850f4f80c0..f8d1eb12fb21 100644 --- a/pkgs/development/python-modules/shiboken2/default.nix +++ b/pkgs/development/python-modules/shiboken2/default.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation { lgpl21 ]; homepage = "https://wiki.qt.io/Qt_for_Python"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; broken = python.pythonAtLeast "3.13"; }; } diff --git a/pkgs/development/python-modules/shiboken6/default.nix b/pkgs/development/python-modules/shiboken6/default.nix index 778a88a397b4..b55f3aa58c36 100644 --- a/pkgs/development/python-modules/shiboken6/default.nix +++ b/pkgs/development/python-modules/shiboken6/default.nix @@ -67,7 +67,7 @@ stdenv'.mkDerivation (finalAttrs: { ]; homepage = "https://wiki.qt.io/Qt_for_Python"; changelog = "https://code.qt.io/cgit/pyside/pyside-setup.git/tree/doc/changelogs/changes-${finalAttrs.version}?h=v${finalAttrs.version}"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; }) diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index c5059665cd78..e979ed01b1bd 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { description = "Creates C++ bindings for Python modules"; homepage = "https://riverbankcomputing.com/"; license = licenses.gpl3Only; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sismic/default.nix b/pkgs/development/python-modules/sismic/default.nix index fcd9a4edf8b9..7dc0507c98ce 100644 --- a/pkgs/development/python-modules/sismic/default.nix +++ b/pkgs/development/python-modules/sismic/default.nix @@ -54,6 +54,6 @@ buildPythonPackage rec { description = "Sismic Interactive Statechart Model Interpreter and Checker"; homepage = "https://github.com/AlexandreDecan/sismic"; license = lib.licenses.lgpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/slugid/default.nix b/pkgs/development/python-modules/slugid/default.nix index 3e9a885a6023..173a93544869 100644 --- a/pkgs/development/python-modules/slugid/default.nix +++ b/pkgs/development/python-modules/slugid/default.nix @@ -24,6 +24,6 @@ buildPythonPackage rec { description = "URL-safe base64 UUID encoder for generating 22 character slugs"; homepage = "https://github.com/taskcluster/slugid.py"; license = licenses.mpl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/snuggs/default.nix b/pkgs/development/python-modules/snuggs/default.nix index 7871fd5a708e..33c8b90249fd 100644 --- a/pkgs/development/python-modules/snuggs/default.nix +++ b/pkgs/development/python-modules/snuggs/default.nix @@ -47,6 +47,6 @@ buildPythonPackage rec { description = "S-expressions for Numpy"; license = licenses.mit; homepage = "https://github.com/mapbox/snuggs"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/social-auth-app-django/default.nix b/pkgs/development/python-modules/social-auth-app-django/default.nix index a819b8a46831..614c65fe8963 100644 --- a/pkgs/development/python-modules/social-auth-app-django/default.nix +++ b/pkgs/development/python-modules/social-auth-app-django/default.nix @@ -45,6 +45,6 @@ buildPythonPackage rec { homepage = "https://github.com/python-social-auth/social-app-django"; changelog = "https://github.com/python-social-auth/social-app-django/blob/${src.tag}/CHANGELOG.md"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/social-auth-core/default.nix b/pkgs/development/python-modules/social-auth-core/default.nix index 2ea49b464d6e..3da2e57c455f 100644 --- a/pkgs/development/python-modules/social-auth-core/default.nix +++ b/pkgs/development/python-modules/social-auth-core/default.nix @@ -81,6 +81,6 @@ buildPythonPackage rec { homepage = "https://github.com/python-social-auth/social-core"; changelog = "https://github.com/python-social-auth/social-core/blob/${src.tag}/CHANGELOG.md"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sotabenchapi/default.nix b/pkgs/development/python-modules/sotabenchapi/default.nix index 305cc88839e9..2c3527ef4fd2 100644 --- a/pkgs/development/python-modules/sotabenchapi/default.nix +++ b/pkgs/development/python-modules/sotabenchapi/default.nix @@ -47,6 +47,6 @@ buildPythonPackage { description = "Easily benchmark Machine Learning models on selected tasks and datasets"; homepage = "https://pypi.org/project/sotabenchapi/"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-autoapi/default.nix b/pkgs/development/python-modules/sphinx-autoapi/default.nix index a2b0e5afb539..ca3b91b871fd 100644 --- a/pkgs/development/python-modules/sphinx-autoapi/default.nix +++ b/pkgs/development/python-modules/sphinx-autoapi/default.nix @@ -67,6 +67,6 @@ buildPythonPackage rec { import the project being documented. ''; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-remove-toctrees/default.nix b/pkgs/development/python-modules/sphinx-remove-toctrees/default.nix index 7f381ff997bd..05ab588decbb 100644 --- a/pkgs/development/python-modules/sphinx-remove-toctrees/default.nix +++ b/pkgs/development/python-modules/sphinx-remove-toctrees/default.nix @@ -55,6 +55,6 @@ buildPythonPackage rec { description = "Reduce your documentation build size by selectively removing toctrees from pages"; homepage = "https://pypi.org/project/sphinx-remove-toctrees/"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinx-reredirects/default.nix b/pkgs/development/python-modules/sphinx-reredirects/default.nix index 877676192611..d98feefa695f 100644 --- a/pkgs/development/python-modules/sphinx-reredirects/default.nix +++ b/pkgs/development/python-modules/sphinx-reredirects/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { bsd3 mit ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix b/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix index bb601c10845a..d852f1766bea 100644 --- a/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix +++ b/pkgs/development/python-modules/sphinxcontrib-mscgen/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { description = "Sphinx extension using mscgen to render diagrams"; homepage = "https://github.com/sphinx-contrib/mscgen"; license = licenses.bola11; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/spyder-kernels/default.nix b/pkgs/development/python-modules/spyder-kernels/default.nix index 6a0f1f5f95ce..1a38657d5a1d 100644 --- a/pkgs/development/python-modules/spyder-kernels/default.nix +++ b/pkgs/development/python-modules/spyder-kernels/default.nix @@ -99,6 +99,6 @@ buildPythonPackage rec { downloadPage = "https://github.com/spyder-ide/spyder-kernels/releases"; changelog = "https://github.com/spyder-ide/spyder-kernels/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/spyder/default.nix b/pkgs/development/python-modules/spyder/default.nix index bf9ce323d734..34b1a155ab71 100644 --- a/pkgs/development/python-modules/spyder/default.nix +++ b/pkgs/development/python-modules/spyder/default.nix @@ -155,7 +155,7 @@ buildPythonPackage rec { downloadPage = "https://github.com/spyder-ide/spyder/releases"; changelog = "https://github.com/spyder-ide/spyder/blob/v${version}/changelogs/Spyder-6.md"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; } diff --git a/pkgs/development/python-modules/standard-sunau/default.nix b/pkgs/development/python-modules/standard-sunau/default.nix index e2ee88284e70..86f131e49d50 100644 --- a/pkgs/development/python-modules/standard-sunau/default.nix +++ b/pkgs/development/python-modules/standard-sunau/default.nix @@ -36,6 +36,6 @@ buildPythonPackage rec { description = "Standard library sunau redistribution"; homepage = "https://github.com/youknowone/python-deadlib/tree/main/sunau"; license = lib.licenses.psfl; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/statsd/default.nix b/pkgs/development/python-modules/statsd/default.nix index d6cdb3ef4d65..83487f2b1655 100644 --- a/pkgs/development/python-modules/statsd/default.nix +++ b/pkgs/development/python-modules/statsd/default.nix @@ -29,7 +29,7 @@ buildPythonPackage rec { enabledTestPaths = [ "statsd/tests.py" ]; meta = with lib; { - maintainers = with maintainers; [ ]; + maintainers = [ ]; description = "Simple statsd client"; license = licenses.mit; homepage = "https://github.com/jsocol/pystatsd"; diff --git a/pkgs/development/python-modules/submitit/default.nix b/pkgs/development/python-modules/submitit/default.nix index 1b552e87ecf6..baa8e0c68ee3 100644 --- a/pkgs/development/python-modules/submitit/default.nix +++ b/pkgs/development/python-modules/submitit/default.nix @@ -57,6 +57,6 @@ buildPythonPackage rec { description = "Python 3.8+ toolbox for submitting jobs to Slurm"; homepage = "https://github.com/facebookincubator/submitit"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-auth/default.nix b/pkgs/development/python-modules/swh-auth/default.nix index c1ca7e78feb6..10980def4a73 100644 --- a/pkgs/development/python-modules/swh-auth/default.nix +++ b/pkgs/development/python-modules/swh-auth/default.nix @@ -61,6 +61,6 @@ buildPythonPackage rec { description = "Set of utility libraries related to user authentication in applications and services based on the use of Keycloak and OpenID Connect"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-auth"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-core/default.nix b/pkgs/development/python-modules/swh-core/default.nix index c561a587b261..abe4979eb1f1 100644 --- a/pkgs/development/python-modules/swh-core/default.nix +++ b/pkgs/development/python-modules/swh-core/default.nix @@ -115,6 +115,6 @@ buildPythonPackage rec { homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-core"; license = lib.licenses.gpl3Only; mainProgram = "swh"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-export/default.nix b/pkgs/development/python-modules/swh-export/default.nix index 6af37b4972f5..bdb3b5cd7673 100644 --- a/pkgs/development/python-modules/swh-export/default.nix +++ b/pkgs/development/python-modules/swh-export/default.nix @@ -85,6 +85,6 @@ buildPythonPackage rec { description = "Software Heritage dataset tools"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-export"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-journal/default.nix b/pkgs/development/python-modules/swh-journal/default.nix index 912bdf6b9d36..e06e021615b9 100644 --- a/pkgs/development/python-modules/swh-journal/default.nix +++ b/pkgs/development/python-modules/swh-journal/default.nix @@ -49,6 +49,6 @@ buildPythonPackage rec { description = "Persistent logger of changes to the archive, with publish-subscribe support"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-journal"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-model/default.nix b/pkgs/development/python-modules/swh-model/default.nix index f21af2e87311..cde19300c236 100644 --- a/pkgs/development/python-modules/swh-model/default.nix +++ b/pkgs/development/python-modules/swh-model/default.nix @@ -79,6 +79,6 @@ buildPythonPackage rec { description = "Implementation of the Data model of the Software Heritage project, used to archive source code artifacts"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-model"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-objstorage/default.nix b/pkgs/development/python-modules/swh-objstorage/default.nix index d851dccf67ab..5dda6b224fa5 100644 --- a/pkgs/development/python-modules/swh-objstorage/default.nix +++ b/pkgs/development/python-modules/swh-objstorage/default.nix @@ -113,6 +113,6 @@ buildPythonPackage rec { description = "Content-addressable object storage for the Software Heritage project"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-objstorage"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-perfecthash/default.nix b/pkgs/development/python-modules/swh-perfecthash/default.nix index fd682f64810a..ec3e2fa0e908 100644 --- a/pkgs/development/python-modules/swh-perfecthash/default.nix +++ b/pkgs/development/python-modules/swh-perfecthash/default.nix @@ -57,6 +57,6 @@ buildPythonPackage rec { description = "Perfect hash table for software heritage object storage"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-perfecthash"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-scanner/default.nix b/pkgs/development/python-modules/swh-scanner/default.nix index 4354fed2cb34..03fef49e9878 100644 --- a/pkgs/development/python-modules/swh-scanner/default.nix +++ b/pkgs/development/python-modules/swh-scanner/default.nix @@ -84,6 +84,6 @@ buildPythonPackage rec { description = "Implementation of the Data model of the Software Heritage project, used to archive source code artifacts"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-model"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-scheduler/default.nix b/pkgs/development/python-modules/swh-scheduler/default.nix index 58ea17672678..ba2f4e10d1b3 100644 --- a/pkgs/development/python-modules/swh-scheduler/default.nix +++ b/pkgs/development/python-modules/swh-scheduler/default.nix @@ -83,6 +83,6 @@ buildPythonPackage rec { description = "Job scheduler for the Software Heritage project"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-scheduler"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-storage/default.nix b/pkgs/development/python-modules/swh-storage/default.nix index 74b326af1e21..74e312d07606 100644 --- a/pkgs/development/python-modules/swh-storage/default.nix +++ b/pkgs/development/python-modules/swh-storage/default.nix @@ -96,6 +96,6 @@ buildPythonPackage rec { description = "Abstraction layer over the archive, allowing to access all stored source code artifacts as well as their metadata"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-storage"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/swh-web-client/default.nix b/pkgs/development/python-modules/swh-web-client/default.nix index 1a69d6a1f2f4..b7ec8be2d090 100644 --- a/pkgs/development/python-modules/swh-web-client/default.nix +++ b/pkgs/development/python-modules/swh-web-client/default.nix @@ -61,6 +61,6 @@ buildPythonPackage rec { description = "Client for Software Heritage Web applications, via their APIs"; homepage = "https://gitlab.softwareheritage.org/swh/devel/swh-web-client"; license = lib.licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tappy/default.nix b/pkgs/development/python-modules/tappy/default.nix index 16dadf91462b..40efe1ff5117 100644 --- a/pkgs/development/python-modules/tappy/default.nix +++ b/pkgs/development/python-modules/tappy/default.nix @@ -45,6 +45,6 @@ buildPythonPackage { changelog = "https://tappy.readthedocs.io/en/latest/releases.html"; mainProgram = "tappy"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tempman/default.nix b/pkgs/development/python-modules/tempman/default.nix index 2d2ea55d00bb..1cc8ddbf9bec 100644 --- a/pkgs/development/python-modules/tempman/default.nix +++ b/pkgs/development/python-modules/tempman/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { description = "Create and clean up temporary directories"; homepage = "https://github.com/mwilliamson/python-tempman"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/textx/default.nix b/pkgs/development/python-modules/textx/default.nix index 0e54101b44e4..81867385d04c 100644 --- a/pkgs/development/python-modules/textx/default.nix +++ b/pkgs/development/python-modules/textx/default.nix @@ -62,7 +62,7 @@ let mainProgram = "textx"; homepage = "https://github.com/textx/textx/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }; @@ -82,7 +82,7 @@ let textx-types-dsl ]; - meta = with lib; { + meta = { inherit (textx.meta) license maintainers; description = "Sample textX language for testing"; homepage = textx.meta.homepage + "tree/${version}/" + pathToSourceRoot; @@ -105,7 +105,7 @@ let click ]; - meta = with lib; { + meta = { inherit (textx.meta) license maintainers; description = "Sample textX language for testing"; homepage = textx.meta.homepage + "tree/${version}/" + pathToSourceRoot; @@ -125,7 +125,7 @@ let build-system = [ flit-core ]; dependencies = [ textx ]; - meta = with lib; { + meta = { inherit (textx.meta) license maintainers; description = "Sample textX language for testing"; homepage = textx.meta.homepage + "tree/${version}/" + pathToSourceRoot; @@ -145,7 +145,7 @@ let build-system = [ flit-core ]; dependencies = [ textx ]; - meta = with lib; { + meta = { inherit (textx.meta) license maintainers; description = "Sample textX language for testing"; homepage = textx.meta.homepage + "tree/${version}/" + pathToSourceRoot; @@ -165,7 +165,7 @@ let build-system = [ flit-core ]; dependencies = [ textx ]; - meta = with lib; { + meta = { inherit (textx.meta) license maintainers; description = "Sample textX sub-command for testing"; homepage = textx.meta.homepage + "tree/${version}/" + pathToSourceRoot; diff --git a/pkgs/development/python-modules/tinyhtml5/default.nix b/pkgs/development/python-modules/tinyhtml5/default.nix index d3ca1f0183a0..3907abc36054 100644 --- a/pkgs/development/python-modules/tinyhtml5/default.nix +++ b/pkgs/development/python-modules/tinyhtml5/default.nix @@ -40,6 +40,6 @@ buildPythonPackage rec { description = "Tiny HTML5 parser"; homepage = "https://github.com/CourtBouillon/tinyhtml5"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/torchbench/default.nix b/pkgs/development/python-modules/torchbench/default.nix index 85ffda667072..74b0734d4428 100644 --- a/pkgs/development/python-modules/torchbench/default.nix +++ b/pkgs/development/python-modules/torchbench/default.nix @@ -53,6 +53,6 @@ buildPythonPackage { description = "Easily benchmark machine learning models in PyTorch"; homepage = "https://github.com/paperswithcode/torchbench"; license = lib.licenses.asl20; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/torchprofile/default.nix b/pkgs/development/python-modules/torchprofile/default.nix index 4f7e51374aef..976b14605a9f 100644 --- a/pkgs/development/python-modules/torchprofile/default.nix +++ b/pkgs/development/python-modules/torchprofile/default.nix @@ -43,6 +43,6 @@ buildPythonPackage rec { description = "General and accurate MACs / FLOPs profiler for PyTorch models"; homepage = "https://github.com/zhijian-liu/torchprofile"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/traitsui/default.nix b/pkgs/development/python-modules/traitsui/default.nix index f1b7e3d0823f..7c2b1808e229 100644 --- a/pkgs/development/python-modules/traitsui/default.nix +++ b/pkgs/development/python-modules/traitsui/default.nix @@ -37,6 +37,6 @@ buildPythonPackage rec { homepage = "https://github.com/enthought/traitsui"; changelog = "https://github.com/enthought/traitsui/releases/tag/${version}"; license = licenses.bsdOriginal; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/translationstring/default.nix b/pkgs/development/python-modules/translationstring/default.nix index 662e5d4d816e..a6d0742b4eed 100644 --- a/pkgs/development/python-modules/translationstring/default.nix +++ b/pkgs/development/python-modules/translationstring/default.nix @@ -18,6 +18,6 @@ buildPythonPackage rec { homepage = "https://pylonsproject.org/"; description = "Utility library for i18n relied on by various Repoze and Pyramid packages"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/trx-python/default.nix b/pkgs/development/python-modules/trx-python/default.nix index 09c3ccab9fe6..0fa7c684d7f0 100644 --- a/pkgs/development/python-modules/trx-python/default.nix +++ b/pkgs/development/python-modules/trx-python/default.nix @@ -60,6 +60,6 @@ buildPythonPackage rec { homepage = "https://github.com/tee-ar-ex/trx-python"; changelog = "https://github.com/tee-ar-ex/trx-python/releases/tag/${version}"; license = lib.licenses.bsd2; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/tskit/default.nix b/pkgs/development/python-modules/tskit/default.nix index 2ae3bd9faa8d..5581e342db57 100644 --- a/pkgs/development/python-modules/tskit/default.nix +++ b/pkgs/development/python-modules/tskit/default.nix @@ -46,6 +46,6 @@ buildPythonPackage rec { mainProgram = "tskit"; homepage = "https://github.com/tskit-dev/tskit"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/undetected-chromedriver/default.nix b/pkgs/development/python-modules/undetected-chromedriver/default.nix index 7a96528c4f83..bbee7672478b 100644 --- a/pkgs/development/python-modules/undetected-chromedriver/default.nix +++ b/pkgs/development/python-modules/undetected-chromedriver/default.nix @@ -49,6 +49,6 @@ buildPythonPackage { description = "Python library for the custom Selenium ChromeDriver that passes all bot mitigation systems"; homepage = "https://github.com/ultrafunkamsterdam/undetected-chromedriver"; license = licenses.gpl3Only; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/unidecode/default.nix b/pkgs/development/python-modules/unidecode/default.nix index 8b017a243aca..546ba2381d0a 100644 --- a/pkgs/development/python-modules/unidecode/default.nix +++ b/pkgs/development/python-modules/unidecode/default.nix @@ -38,6 +38,6 @@ buildPythonPackage rec { homepage = "https://github.com/avian2/unidecode"; changelog = "https://github.com/avian2/unidecode/blob/unidecode-${version}/ChangeLog"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/unifi-ap/default.nix b/pkgs/development/python-modules/unifi-ap/default.nix index ffca152adf94..fa9ae0c915b9 100644 --- a/pkgs/development/python-modules/unifi-ap/default.nix +++ b/pkgs/development/python-modules/unifi-ap/default.nix @@ -39,6 +39,6 @@ buildPythonPackage rec { description = "Python API for UniFi accesspoints"; homepage = "https://github.com/tofuSCHNITZEL/unifi_ap"; license = lib.licenses.mit; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/venusian/default.nix b/pkgs/development/python-modules/venusian/default.nix index d4008c979e49..0eca47a17c1f 100644 --- a/pkgs/development/python-modules/venusian/default.nix +++ b/pkgs/development/python-modules/venusian/default.nix @@ -35,6 +35,6 @@ buildPythonPackage rec { description = "Library for deferring decorator actions"; homepage = "https://pylonsproject.org/"; license = licenses.bsd0; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/waitress/default.nix b/pkgs/development/python-modules/waitress/default.nix index 3b6973490026..5849f5d76604 100644 --- a/pkgs/development/python-modules/waitress/default.nix +++ b/pkgs/development/python-modules/waitress/default.nix @@ -41,6 +41,6 @@ buildPythonPackage rec { description = "Waitress WSGI server"; mainProgram = "waitress-serve"; license = licenses.zpl21; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/wavefile/default.nix b/pkgs/development/python-modules/wavefile/default.nix index 3634732ca7e3..ec23f081e2a1 100644 --- a/pkgs/development/python-modules/wavefile/default.nix +++ b/pkgs/development/python-modules/wavefile/default.nix @@ -53,7 +53,7 @@ buildPythonPackage rec { description = "Pythonic libsndfile wrapper to read and write audio files"; homepage = "https://github.com/vokimon/python-wavefile"; changelog = "https://github.com/vokimon/python-wavefile#version-history"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.gpl3Plus; }; } diff --git a/pkgs/development/python-modules/webdavclient3/default.nix b/pkgs/development/python-modules/webdavclient3/default.nix index 2358b08a9f5e..e826dd8153ee 100644 --- a/pkgs/development/python-modules/webdavclient3/default.nix +++ b/pkgs/development/python-modules/webdavclient3/default.nix @@ -49,7 +49,7 @@ buildPythonPackage rec { description = "Easy to use WebDAV Client for Python 3.x"; homepage = "https://github.com/ezhov-evgeny/webdav-client-python-3"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; mainProgram = "wdc"; }; } diff --git a/pkgs/development/python-modules/wsgiproxy2/default.nix b/pkgs/development/python-modules/wsgiproxy2/default.nix index d3fb8a3296cc..b00109680b71 100644 --- a/pkgs/development/python-modules/wsgiproxy2/default.nix +++ b/pkgs/development/python-modules/wsgiproxy2/default.nix @@ -31,6 +31,6 @@ buildPythonPackage rec { description = "HTTP proxying tools for WSGI apps"; homepage = "https://wsgiproxy2.readthedocs.io/"; license = licenses.mit; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/x3dh/default.nix b/pkgs/development/python-modules/x3dh/default.nix index 1c2e2d6e1c16..009cb14564dd 100644 --- a/pkgs/development/python-modules/x3dh/default.nix +++ b/pkgs/development/python-modules/x3dh/default.nix @@ -50,6 +50,6 @@ buildPythonPackage rec { changelog = "https://github.com/Syndace/python-x3dh/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mit; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xeddsa/default.nix b/pkgs/development/python-modules/xeddsa/default.nix index ea6e648f3b94..a1b2185f7e64 100644 --- a/pkgs/development/python-modules/xeddsa/default.nix +++ b/pkgs/development/python-modules/xeddsa/default.nix @@ -47,6 +47,6 @@ buildPythonPackage rec { changelog = "https://github.com/Syndace/python-xeddsa/blob/v${version}/CHANGELOG.md"; license = lib.licenses.mit; teams = with lib.teams; [ ngi ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/xhtml2pdf/default.nix b/pkgs/development/python-modules/xhtml2pdf/default.nix index a9b0787943bb..f87241d4622a 100644 --- a/pkgs/development/python-modules/xhtml2pdf/default.nix +++ b/pkgs/development/python-modules/xhtml2pdf/default.nix @@ -65,6 +65,6 @@ buildPythonPackage rec { homepage = "https://github.com/xhtml2pdf/xhtml2pdf"; license = lib.licenses.asl20; mainProgram = "xhtml2pdf"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-copy/default.nix b/pkgs/development/python-modules/zope-copy/default.nix index 7e75966b7082..d92b4b1ebc1a 100644 --- a/pkgs/development/python-modules/zope-copy/default.nix +++ b/pkgs/development/python-modules/zope-copy/default.nix @@ -54,6 +54,6 @@ buildPythonPackage rec { homepage = "https://github.com/zopefoundation/zope.copy"; changelog = "https://github.com/zopefoundation/zope.copy/blob/${src.tag}/CHANGES.rst"; license = lib.licenses.zpl21; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-deprecation/default.nix b/pkgs/development/python-modules/zope-deprecation/default.nix index cd96c14011e9..d2f6adc39c59 100644 --- a/pkgs/development/python-modules/zope-deprecation/default.nix +++ b/pkgs/development/python-modules/zope-deprecation/default.nix @@ -38,6 +38,6 @@ buildPythonPackage rec { description = "Zope Deprecation Infrastructure"; changelog = "https://github.com/zopefoundation/zope.deprecation/blob/${version}/CHANGES.rst"; license = lib.licenses.zpl21; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python-modules/zope-security/default.nix b/pkgs/development/python-modules/zope-security/default.nix index 0e7d69093da0..a102151ee2e5 100644 --- a/pkgs/development/python-modules/zope-security/default.nix +++ b/pkgs/development/python-modules/zope-security/default.nix @@ -77,6 +77,6 @@ buildPythonPackage rec { homepage = "https://github.com/zopefoundation/zope.security"; changelog = "https://github.com/zopefoundation/zope.security/blob/${src.tag}/CHANGES.rst"; license = lib.licenses.zpl21; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/python2-modules/markupsafe/default.nix b/pkgs/development/python2-modules/markupsafe/default.nix index fa8b8554c060..3687ea68d9cc 100644 --- a/pkgs/development/python2-modules/markupsafe/default.nix +++ b/pkgs/development/python2-modules/markupsafe/default.nix @@ -18,7 +18,7 @@ buildPythonPackage rec { description = "Implements a XML/HTML/XHTML Markup safe string"; homepage = "http://dev.pocoo.org"; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index c1bd7fb54744..0b4ec5fc52c1 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -522,7 +522,7 @@ let xorg.libXdmcp ]; GeneralizedWendland = [ pkgs.gsl ]; - ggiraph = with pkgs; [ pkgs.libpng.dev ]; + ggiraph = [ pkgs.libpng.dev ]; git2r = with pkgs; [ zlib.dev openssl.dev diff --git a/pkgs/development/tools/build-managers/rebar3/rebar-deps.nix b/pkgs/development/tools/build-managers/rebar3/rebar-deps.nix index 18fa145d4295..f853ef7af6ef 100644 --- a/pkgs/development/tools/build-managers/rebar3/rebar-deps.nix +++ b/pkgs/development/tools/build-managers/rebar3/rebar-deps.nix @@ -11,7 +11,7 @@ in }: let self = packages // (overrides self packages); - packages = with self; { + packages = { meck = builder { name = "meck"; version = "0.8.13"; diff --git a/pkgs/development/tools/ocaml/camlp4/default.nix b/pkgs/development/tools/ocaml/camlp4/default.nix index d6b5ee620eb7..1b6674f1c7ce 100644 --- a/pkgs/development/tools/ocaml/camlp4/default.nix +++ b/pkgs/development/tools/ocaml/camlp4/default.nix @@ -145,7 +145,7 @@ else dontStrip = true; - meta = with lib; { + meta = { description = "Software system for writing extensible parsers for programming languages"; homepage = "https://github.com/ocaml/camlp4"; platforms = ocaml.meta.platforms or [ ]; diff --git a/pkgs/development/tools/selenium/chromedriver/binary.nix b/pkgs/development/tools/selenium/chromedriver/binary.nix index cdc438ad6b95..48b03a6cb2b4 100644 --- a/pkgs/development/tools/selenium/chromedriver/binary.nix +++ b/pkgs/development/tools/selenium/chromedriver/binary.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation { ''; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.bsd3; - maintainers = with maintainers; [ ]; + maintainers = [ ]; # Note from primeos: By updating Chromium I also update Google Chrome and # ChromeDriver. platforms = platforms.darwin; diff --git a/pkgs/games/cutechess/default.nix b/pkgs/games/cutechess/default.nix index 6e8c3b2b4f5c..059c330f1a99 100644 --- a/pkgs/games/cutechess/default.nix +++ b/pkgs/games/cutechess/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation (finalAttrs: { description = "GUI, CLI, and library for playing chess"; homepage = "https://cutechess.com/"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; (linux ++ windows); mainProgram = "cutechess"; }; diff --git a/pkgs/games/npush/default.nix b/pkgs/games/npush/default.nix index f6fd0d5efe86..137f8d041165 100644 --- a/pkgs/games/npush/default.nix +++ b/pkgs/games/npush/default.nix @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { description = "Sokoban-like game"; mainProgram = "npush"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = with platforms; unix; }; } diff --git a/pkgs/games/warsow/default.nix b/pkgs/games/warsow/default.nix index b7f96d0272ca..453f12074d5b 100644 --- a/pkgs/games/warsow/default.nix +++ b/pkgs/games/warsow/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { ''; homepage = "http://www.warsow.net"; license = licenses.unfreeRedistributable; - maintainers = with maintainers; [ + maintainers = [ ]; platforms = warsow-engine.meta.platforms; }; diff --git a/pkgs/games/warsow/engine.nix b/pkgs/games/warsow/engine.nix index 8a7113aae559..9a759d58986c 100644 --- a/pkgs/games/warsow/engine.nix +++ b/pkgs/games/warsow/engine.nix @@ -86,7 +86,7 @@ stdenv.mkDerivation { description = "Multiplayer FPS game designed for competitive gaming (engine only)"; homepage = "http://www.warsow.net"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ + maintainers = [ ]; platforms = platforms.linux; broken = stdenv.hostPlatform.isAarch64; diff --git a/pkgs/kde/third-party/dynamic-workspaces/default.nix b/pkgs/kde/third-party/dynamic-workspaces/default.nix index 701c371dbf6e..d625ee285ccb 100644 --- a/pkgs/kde/third-party/dynamic-workspaces/default.nix +++ b/pkgs/kde/third-party/dynamic-workspaces/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { description = "KWin script that automatically adds/removes virtual desktops"; homepage = "https://github.com/maurges/dynamic_workspaces"; license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.all; }; } diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 7536614cbf82..7146a7e61b61 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -127,7 +127,7 @@ in description = "Soothing pastel theme for Tmux"; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; }; @@ -1017,7 +1017,7 @@ in postInstall = '' wrapProgram $out/share/tmux-plugins/t-smart-tmux-session-manager/bin/t \ --prefix PATH : ${ - with pkgs; + lib.makeBinPath ([ pkgs.fzf pkgs.zoxide diff --git a/pkgs/os-specific/linux/device-tree/raspberrypi.nix b/pkgs/os-specific/linux/device-tree/raspberrypi.nix index d7617f64cfc6..0e80cfad8605 100644 --- a/pkgs/os-specific/linux/device-tree/raspberrypi.nix +++ b/pkgs/os-specific/linux/device-tree/raspberrypi.nix @@ -35,7 +35,7 @@ stdenvNoCC.mkDerivation { # Compatible overlays that may be used overlays = "${raspberrypifw}/share/raspberrypi/boot/overlays"; }; - meta = with lib; { + meta = { inherit (raspberrypifw.meta) homepage license; description = "DTBs for the Raspberry Pi"; }; diff --git a/pkgs/os-specific/linux/evdi/default.nix b/pkgs/os-specific/linux/evdi/default.nix index 8eee4255cdc0..0782834818e4 100644 --- a/pkgs/os-specific/linux/evdi/default.nix +++ b/pkgs/os-specific/linux/evdi/default.nix @@ -80,7 +80,7 @@ stdenv.mkDerivation (finalAttrs: { lgpl21Only gpl2Only ]; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/os-specific/linux/iputils/default.nix b/pkgs/os-specific/linux/iputils/default.nix index bbd957a4f46b..a8bab01405aa 100644 --- a/pkgs/os-specific/linux/iputils/default.nix +++ b/pkgs/os-specific/linux/iputils/default.nix @@ -95,6 +95,6 @@ stdenv.mkDerivation rec { bsd3 ]; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/servers/deconz/default.nix b/pkgs/servers/deconz/default.nix index f2ad6d918cb9..6482c367d8ef 100644 --- a/pkgs/servers/deconz/default.nix +++ b/pkgs/servers/deconz/default.nix @@ -90,7 +90,7 @@ stdenv.mkDerivation rec { description = "Manage Zigbee network with ConBee, ConBee II or RaspBee hardware"; homepage = "https://www.dresden-elektronik.com/wireless/software/deconz.html"; license = licenses.unfree; - platforms = with platforms; [ "x86_64-linux" ]; + platforms = [ "x86_64-linux" ]; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; maintainers = with maintainers; [ bjornfor ]; mainProgram = "deCONZ"; diff --git a/pkgs/servers/etcd/3_4/default.nix b/pkgs/servers/etcd/3_4/default.nix index aa2e14127c0d..19e6a6c62411 100644 --- a/pkgs/servers/etcd/3_4/default.nix +++ b/pkgs/servers/etcd/3_4/default.nix @@ -41,6 +41,6 @@ buildGoModule rec { downloadPage = "https://github.com/etcd-io/etcd/"; license = lib.licenses.asl20; homepage = "https://etcd.io/"; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix b/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix index 1966878e9159..04fbba9c5ef1 100644 --- a/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix +++ b/pkgs/servers/home-assistant/custom-components/solis-sensor/package.nix @@ -29,6 +29,6 @@ buildHomeAssistantComponent rec { changelog = "https://github.com/hultenvp/solis-sensor/releases/tag/v${version}"; homepage = "https://github.com/hultenvp/solis-sensor"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/servers/monitoring/prometheus/shelly-exporter.nix b/pkgs/servers/monitoring/prometheus/shelly-exporter.nix index b568ce760fe5..7f3ddbafce99 100644 --- a/pkgs/servers/monitoring/prometheus/shelly-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/shelly-exporter.nix @@ -25,6 +25,6 @@ buildGoModule rec { mainProgram = "shelly_exporter"; homepage = "https://github.com/aexel90/shelly_exporter"; license = licenses.asl20; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/servers/pulseaudio/hsphfpd.nix b/pkgs/servers/pulseaudio/hsphfpd.nix index 042d711a091a..53893cf4b58a 100644 --- a/pkgs/servers/pulseaudio/hsphfpd.nix +++ b/pkgs/servers/pulseaudio/hsphfpd.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation { description = "Bluetooth HSP/HFP daemon"; homepage = "https://github.com/pali/hsphfpd-prototype"; license = licenses.artistic1; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/servers/varnish/digest.nix b/pkgs/servers/varnish/digest.nix index 21a307b0b4ba..6a0603ec6f37 100644 --- a/pkgs/servers/varnish/digest.nix +++ b/pkgs/servers/varnish/digest.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = with lib; { + meta = { description = "Digest and HMAC vmod"; homepage = "https://github.com/varnish/libvmod-digest"; inherit (varnish.meta) license platforms teams; diff --git a/pkgs/servers/varnish/dynamic.nix b/pkgs/servers/varnish/dynamic.nix index 3c5d6c17f688..51563fa4012e 100644 --- a/pkgs/servers/varnish/dynamic.nix +++ b/pkgs/servers/varnish/dynamic.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation { ''; configureFlags = [ "VMOD_DIR=$(out)/lib/varnish/vmods" ]; - meta = with lib; { + meta = { description = "Dynamic director similar to the DNS director from Varnish 3"; homepage = "https://github.com/nigoroll/libvmod-dynamic"; inherit (varnish.meta) license platforms teams; diff --git a/pkgs/servers/varnish/modules.nix b/pkgs/servers/varnish/modules.nix index 3bc8b6850a4d..6d6f1cb81e56 100644 --- a/pkgs/servers/varnish/modules.nix +++ b/pkgs/servers/varnish/modules.nix @@ -43,7 +43,7 @@ let postInstall = "find $out -type f -exec remove-references-to -t ${varnish.dev} '{}' +"; # varnish.dev captured only as __FILE__ in assert messages - meta = with lib; { + meta = { description = "Collection of Varnish Cache modules (vmods) by Varnish Software"; homepage = "https://github.com/varnish/varnish-modules"; inherit (varnish.meta) license platforms teams; diff --git a/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix b/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix index 2a5b87847c56..f85e9a498004 100644 --- a/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix +++ b/pkgs/tools/inputmethods/fcitx5/fcitx5-bamboo.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Vietnamese input method engine support for Fcitx"; homepage = "https://github.com/fcitx/fcitx5-bamboo"; license = lib.licenses.lgpl21Plus; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = lib.platforms.linux; }; }) diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix index 31e55c6e449c..26b2af5c9ff5 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-anthy/default.nix @@ -54,6 +54,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/fujiwarat/ibus-anthy"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix index 571f9f8b901d..c4c9196784a7 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-cangjie/default.nix @@ -72,6 +72,6 @@ stdenv.mkDerivation { homepage = "https://github.com/Cangjians/ibus-cangjie"; license = lib.licenses.gpl3Plus; platforms = lib.platforms.linux; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix index ec11ae65c8c7..8548c13dbff4 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-hangul/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { mainProgram = "ibus-setup-hangul"; homepage = "https://github.com/libhangul/ibus-hangul"; license = licenses.gpl2Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix index 046a7bb6de23..8c8237c650be 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-m17n/default.nix @@ -52,6 +52,6 @@ stdenv.mkDerivation rec { homepage = "https://github.com/ibus/ibus-m17n"; license = licenses.gpl2Plus; platforms = platforms.linux; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; } diff --git a/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix b/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix index 24dfc5a50081..1302ad7b7476 100644 --- a/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix +++ b/pkgs/tools/inputmethods/ibus-engines/ibus-typing-booster/default.nix @@ -56,7 +56,7 @@ stdenv.mkDerivation rec { license = licenses.gpl3Plus; description = "Completion input method for faster typing"; mainProgram = "emoji-picker"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.linux; isIbusEngine = true; }; diff --git a/pkgs/tools/misc/dialogbox/default.nix b/pkgs/tools/misc/dialogbox/default.nix index a440b4d9c858..a6f6f7d94d57 100644 --- a/pkgs/tools/misc/dialogbox/default.nix +++ b/pkgs/tools/misc/dialogbox/default.nix @@ -42,7 +42,7 @@ mkDerivation rec { homepage = "https://github.com/martynets/dialogbox/"; description = "Qt-based scriptable engine providing GUI dialog boxes"; license = licenses.gpl3Plus; - maintainers = with maintainers; [ ]; + maintainers = [ ]; platforms = platforms.unix; mainProgram = "dialogbox"; }; diff --git a/pkgs/tools/misc/logstash/contrib.nix b/pkgs/tools/misc/logstash/contrib.nix index a6469d830b76..1c9fabfa0571 100644 --- a/pkgs/tools/misc/logstash/contrib.nix +++ b/pkgs/tools/misc/logstash/contrib.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { runHook postInstall ''; - meta = with lib; { + meta = { description = "Community-maintained logstash plugins"; homepage = "https://github.com/elasticsearch/logstash-contrib"; license = lib.licenses.asl20; diff --git a/pkgs/tools/misc/steampipe-packages/steampipe-plugin-azure/default.nix b/pkgs/tools/misc/steampipe-packages/steampipe-plugin-azure/default.nix index 322a69bc72cb..85d48ce5fdd4 100644 --- a/pkgs/tools/misc/steampipe-packages/steampipe-plugin-azure/default.nix +++ b/pkgs/tools/misc/steampipe-packages/steampipe-plugin-azure/default.nix @@ -45,7 +45,7 @@ buildGoModule rec { homepage = "https://github.com/turbot/steampipe-plugin-azure"; license = lib.licenses.apsl20; longDescription = "Use SQL to instantly query Azure resources across regions and subscriptions."; - maintainers = with lib.maintainers; [ ]; + maintainers = [ ]; platforms = steampipe.meta.platforms; }; } diff --git a/pkgs/tools/networking/dd-agent/datadog-process-agent.nix b/pkgs/tools/networking/dd-agent/datadog-process-agent.nix index 9e43d2e7e04c..38bba29e7484 100644 --- a/pkgs/tools/networking/dd-agent/datadog-process-agent.nix +++ b/pkgs/tools/networking/dd-agent/datadog-process-agent.nix @@ -2,12 +2,11 @@ datadog-agent.overrideAttrs (attrs: { pname = "datadog-process-agent"; meta = - with lib; - attrs.meta - // { + + attrs.meta // { description = "Live process collector for the DataDog Agent v7"; mainProgram = "process-agent"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; }; subPackages = [ "cmd/process-agent" ]; postInstall = null; diff --git a/pkgs/tools/package-management/apk-tools/default.nix b/pkgs/tools/package-management/apk-tools/default.nix index c2a38d10bb78..c3857f8afd2e 100644 --- a/pkgs/tools/package-management/apk-tools/default.nix +++ b/pkgs/tools/package-management/apk-tools/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = "https://gitlab.alpinelinux.org/alpine/apk-tools"; description = "Alpine Package Keeper"; - maintainers = with maintainers; [ ]; + maintainers = [ ]; license = licenses.gpl2Only; platforms = platforms.linux; mainProgram = "apk"; diff --git a/pkgs/top-level/darwin-aliases.nix b/pkgs/top-level/darwin-aliases.nix index 690f9ca159fc..b91c4da89618 100644 --- a/pkgs/top-level/darwin-aliases.nix +++ b/pkgs/top-level/darwin-aliases.nix @@ -20,8 +20,6 @@ lib: self: super: pkgs: # pkgs is provided to allow packages to be moved out of the darwin attrset. -with self; - let # Removing recurseForDerivation prevents derivations of aliased attribute set # to appear while listing all the packages available. From 91a8fee3aaf79348aa2dc1552a29fc1b786c5133 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 1 Sep 2025 13:18:30 +0200 Subject: [PATCH 13/14] treewide: remove redundant parentheses Auto-fixed by nixf-diagnose. --- ci/default.nix | 1 - doc/doc-support/package.nix | 2 +- lib/customisation.nix | 2 +- .../modules/composed-types-valueMeta.nix | 12 +-- lib/tests/modules/freeform-attrsof-either.nix | 4 +- .../modules/freeform-deprecated-malicous.nix | 16 ++-- .../modules/functionTo/submodule-options.nix | 2 +- lib/tests/systems.nix | 4 +- nixos/lib/eval-config.nix | 4 +- nixos/lib/systemd-lib.nix | 5 +- nixos/lib/testing/network.nix | 6 +- nixos/modules/config/nix-remote-build.nix | 2 +- nixos/modules/config/xdg/terminal-exec.nix | 6 +- nixos/modules/hardware/video/nvidia.nix | 8 +- nixos/modules/i18n/input-method/fcitx5.nix | 2 +- nixos/modules/installer/cd-dvd/iso-image.nix | 4 +- nixos/modules/profiles/nix-builder-vm.nix | 8 +- nixos/modules/programs/coolercontrol.nix | 4 +- nixos/modules/programs/firefox.nix | 8 +- nixos/modules/programs/ssh.nix | 4 +- nixos/modules/programs/tsm-client.nix | 32 +++---- nixos/modules/programs/winbox.nix | 2 +- .../programs/zsh/zsh-syntax-highlighting.nix | 4 +- nixos/modules/security/please.nix | 4 +- nixos/modules/security/wrappers/default.nix | 4 +- nixos/modules/services/audio/alsa.nix | 8 +- nixos/modules/services/audio/gmediarender.nix | 27 +++--- nixos/modules/services/backup/borgbackup.nix | 13 ++- nixos/modules/services/backup/syncoid.nix | 86 +++++++++---------- .../modules/services/cluster/hadoop/yarn.nix | 4 +- .../services/cluster/kubernetes/default.nix | 14 ++- .../services/cluster/temporal/default.nix | 2 +- .../gitea-actions-runner.nix | 10 +-- .../services/databases/foundationdb.nix | 8 +- nixos/modules/services/databases/openldap.nix | 4 +- .../services/desktops/system76-scheduler.nix | 4 +- nixos/modules/services/development/athens.nix | 4 +- nixos/modules/services/hardware/display.nix | 4 +- nixos/modules/services/hardware/libinput.nix | 4 +- nixos/modules/services/logging/promtail.nix | 2 +- nixos/modules/services/mail/listmonk.nix | 4 +- nixos/modules/services/mail/public-inbox.nix | 4 +- nixos/modules/services/mail/roundcube.nix | 2 +- nixos/modules/services/mail/stalwart-mail.nix | 2 +- nixos/modules/services/matrix/conduit.nix | 4 +- nixos/modules/services/misc/autorandr.nix | 8 +- nixos/modules/services/misc/bepasty.nix | 4 +- nixos/modules/services/misc/portunus.nix | 4 +- nixos/modules/services/misc/redlib.nix | 4 +- nixos/modules/services/misc/snapper.nix | 4 +- nixos/modules/services/misc/synergy.nix | 2 +- .../modules/services/monitoring/graphite.nix | 4 +- .../monitoring/prometheus/exporters.nix | 6 +- .../monitoring/prometheus/exporters/json.nix | 4 +- .../monitoring/prometheus/exporters/nginx.nix | 4 +- .../prometheus/exporters/pgbouncer.nix | 4 +- .../prometheus/exporters/pihole.nix | 4 +- .../prometheus/exporters/rspamd.nix | 4 +- .../prometheus/exporters/unbound.nix | 4 +- nixos/modules/services/monitoring/thanos.nix | 10 +-- nixos/modules/services/networking/bind.nix | 2 +- nixos/modules/services/networking/cjdns.nix | 4 +- nixos/modules/services/networking/hans.nix | 4 +- .../services/networking/hylafax/options.nix | 2 +- nixos/modules/services/networking/inadyn.nix | 4 +- nixos/modules/services/networking/iodine.nix | 4 +- .../services/networking/nat-iptables.nix | 2 +- nixos/modules/services/networking/ncps.nix | 2 +- nixos/modules/services/networking/nylon.nix | 2 +- .../services/networking/pihole-ftl.nix | 2 +- nixos/modules/services/networking/spiped.nix | 4 +- .../strongswan-swanctl/param-lib.nix | 4 +- nixos/modules/services/networking/tinc.nix | 10 +-- nixos/modules/services/networking/xinetd.nix | 4 +- nixos/modules/services/search/opensearch.nix | 2 +- nixos/modules/services/search/quickwit.nix | 2 +- nixos/modules/services/security/esdm.nix | 4 +- nixos/modules/services/web-apps/dolibarr.nix | 4 +- nixos/modules/services/web-apps/mastodon.nix | 5 +- nixos/modules/services/web-apps/nextcloud.nix | 2 +- nixos/modules/services/web-apps/nifi.nix | 5 +- nixos/modules/services/web-apps/oncall.nix | 4 +- nixos/modules/services/web-apps/peertube.nix | 5 +- nixos/modules/services/web-apps/pixelfed.nix | 4 +- nixos/modules/services/web-apps/sftpgo.nix | 4 +- .../apache-httpd/vhost-options.nix | 4 +- .../services/web-servers/hitch/default.nix | 6 +- .../modules/services/web-servers/pomerium.nix | 4 +- nixos/modules/services/web-servers/ttyd.nix | 2 +- nixos/modules/services/x11/xserver.nix | 2 +- .../system/activation/activation-script.nix | 4 +- nixos/modules/system/boot/binfmt.nix | 4 +- nixos/modules/system/boot/clevis.nix | 4 +- nixos/modules/system/boot/luksroot.nix | 4 +- nixos/modules/system/boot/networkd.nix | 4 +- nixos/modules/system/boot/systemd.nix | 4 +- .../modules/system/boot/systemd/sysusers.nix | 4 +- nixos/modules/tasks/filesystems/zfs.nix | 2 +- nixos/modules/tasks/lvm.nix | 4 +- nixos/modules/tasks/network-interfaces.nix | 4 +- nixos/modules/virtualisation/incus.nix | 4 +- nixos/modules/virtualisation/vmware-host.nix | 2 +- nixos/tests/cosmic.nix | 2 +- nixos/tests/ec2.nix | 4 +- nixos/tests/elk.nix | 8 +- nixos/tests/installer.nix | 6 +- nixos/tests/iscsi-multipath-root.nix | 4 +- nixos/tests/iscsi-root.nix | 4 +- nixos/tests/kafka/base.nix | 8 +- nixos/tests/lomiri.nix | 28 +++--- nixos/tests/mod_perl.nix | 2 +- nixos/tests/nixops/default.nix | 4 +- nixos/tests/postgresql/postgresql.nix | 4 +- nixos/tests/qemu-vm-restrictnetwork.nix | 4 +- nixos/tests/spark/default.nix | 4 +- .../audio/bucklespring/default.nix | 2 +- pkgs/applications/audio/quodlibet/default.nix | 6 +- .../emacs-application-framework/package.nix | 2 +- .../editors/jetbrains/bin/linux.nix | 4 +- .../editors/neovim/tests/default.nix | 16 ++-- .../applications/editors/sublime/3/common.nix | 4 +- .../applications/editors/sublime/4/common.nix | 4 +- .../editors/vim/plugins/utils/vim-utils.nix | 2 +- .../vscode/extensions/updateSettings.nix | 2 +- pkgs/applications/emulators/wine/base.nix | 2 +- pkgs/applications/emulators/wine/sources.nix | 4 +- pkgs/applications/misc/copyq/default.nix | 4 +- pkgs/applications/misc/redshift/default.nix | 2 +- .../networking/browsers/chromium/common.nix | 2 +- .../networking/browsers/chromium/default.nix | 4 +- pkgs/applications/networking/gns3/default.nix | 4 +- .../office/libreoffice/default.nix | 4 +- .../science/electronics/bitscope/common.nix | 4 +- .../science/electronics/kicad/default.nix | 22 ++--- pkgs/applications/search/recoll/default.nix | 4 +- .../sublime-merge/common.nix | 4 +- .../video/anilibria-winmaclinux/default.nix | 4 +- pkgs/applications/video/kodi/wrapper.nix | 4 +- pkgs/applications/video/mplayer/default.nix | 2 +- .../virtualization/virtualbox/default.nix | 2 +- pkgs/build-support/kernel/make-initrd-ng.nix | 4 +- .../make-darwin-bundle/default.nix | 4 +- pkgs/build-support/nix-gitignore/default.nix | 2 +- .../build-rust-crate/test/brotli-crates.nix | 18 ++-- pkgs/build-support/src-only/tests.nix | 4 +- pkgs/build-support/writers/aliases.nix | 4 +- pkgs/by-name/_9/_9base/package.nix | 4 +- pkgs/by-name/ac/acpica-tools/package.nix | 4 +- pkgs/by-name/ap/aprx/package.nix | 4 +- pkgs/by-name/ar/aravis/package.nix | 2 +- pkgs/by-name/ar/archi/package.nix | 4 +- pkgs/by-name/au/auctex/package.nix | 4 +- pkgs/by-name/av/avizo/package.nix | 4 +- .../ay/ayatana-indicator-display/package.nix | 4 +- pkgs/by-name/ba/bazel_8/package.nix | 2 +- pkgs/by-name/be/bespokesynth/package.nix | 4 +- pkgs/by-name/be/beyond-identity/package.nix | 4 +- pkgs/by-name/bo/boehmgc/package.nix | 12 +-- pkgs/by-name/bo/bozohttpd/package.nix | 8 +- pkgs/by-name/cd/cddl/package.nix | 4 +- pkgs/by-name/ch/chez-racket/shared.nix | 4 +- pkgs/by-name/co/codd/package.nix | 4 +- pkgs/by-name/co/composefs/package.nix | 4 +- pkgs/by-name/co/connman/package.nix | 6 +- pkgs/by-name/cr/cryptopp/package.nix | 2 +- pkgs/by-name/da/davix/package.nix | 2 +- pkgs/by-name/dt/dtrx/package.nix | 4 +- pkgs/by-name/ec/eclipse-mat/package.nix | 4 +- pkgs/by-name/ec/ecryptfs/package.nix | 4 +- pkgs/by-name/en/envision/package.nix | 12 +-- pkgs/by-name/fa/fasthenry/package.nix | 2 +- pkgs/by-name/ff/fff/package.nix | 4 +- pkgs/by-name/fl/flashprog/package.nix | 4 +- pkgs/by-name/gn/gnss-sdr/package.nix | 4 +- pkgs/by-name/go/google-cloud-sdk/package.nix | 4 +- pkgs/by-name/gy/gyroflow/package.nix | 4 +- .../by-name/he/headphones-toolbox/package.nix | 4 +- pkgs/by-name/hy/hyperscan/package.nix | 2 +- pkgs/by-name/im/immersed/package.nix | 4 +- pkgs/by-name/ji/jitsi/package.nix | 4 +- pkgs/by-name/ki/kingstvis/package.nix | 4 +- pkgs/by-name/kv/kvmtool/package.nix | 4 +- pkgs/by-name/ld/ldid/package.nix | 4 +- pkgs/by-name/li/libev/package.nix | 2 +- pkgs/by-name/li/libnl/package.nix | 2 +- pkgs/by-name/li/libomxil-bellagio/package.nix | 2 +- pkgs/by-name/li/libusb1/package.nix | 3 +- pkgs/by-name/li/limo/package.nix | 2 +- pkgs/by-name/ma/mattermost/build-plugin.nix | 2 +- pkgs/by-name/me/mepo/package.nix | 4 +- pkgs/by-name/mu/mupdf/package.nix | 14 +-- pkgs/by-name/na/nanopb/runtime.nix | 4 +- pkgs/by-name/ne/neomutt/package.nix | 6 +- pkgs/by-name/ng/nghttp2/package.nix | 20 ++--- pkgs/by-name/no/notcurses/package.nix | 2 +- pkgs/by-name/oc/octoprint/package.nix | 4 +- pkgs/by-name/op/opencascade-occt/package.nix | 2 +- pkgs/by-name/op/openjpeg/package.nix | 2 +- pkgs/by-name/pa/part-db/package.nix | 4 +- pkgs/by-name/pc/pcsx2/package.nix | 4 +- pkgs/by-name/pd/pdm/package.nix | 2 +- pkgs/by-name/po/ponyc/package.nix | 4 +- pkgs/by-name/qu/qutebrowser/package.nix | 2 +- pkgs/by-name/re/redoflacs/package.nix | 4 +- pkgs/by-name/rn/rng-tools/package.nix | 10 +-- pkgs/by-name/sa/sage/sage-env.nix | 4 +- pkgs/by-name/sc/scopehal-apps/package.nix | 2 +- pkgs/by-name/sh/sharedown/package.nix | 4 +- pkgs/by-name/sl/sleek-grub-theme/package.nix | 4 +- pkgs/by-name/sl/slurm/package.nix | 2 +- pkgs/by-name/sm/smuxi/package.nix | 2 +- pkgs/by-name/su/sundials/package.nix | 8 +- pkgs/by-name/ta/tabby/package.nix | 4 +- pkgs/by-name/tr/truecrack/package.nix | 4 +- pkgs/by-name/uc/uclibc-ng/package.nix | 2 +- pkgs/by-name/ud/udig/package.nix | 6 +- pkgs/by-name/uh/uhd/package.nix | 6 +- pkgs/by-name/vl/vlc-bin/package.nix | 5 +- pkgs/by-name/vo/voicevox-core/package.nix | 4 +- pkgs/by-name/wi/windmill/package.nix | 4 +- pkgs/by-name/wo/wootility/package.nix | 4 +- pkgs/by-name/x2/x265/package.nix | 2 +- pkgs/by-name/ya/yambar/package.nix | 4 +- pkgs/by-name/yo/yosys/package.nix | 2 +- pkgs/by-name/zf/zfp/package.nix | 2 +- pkgs/by-name/zx/zxtune/package.nix | 4 +- pkgs/desktops/gnome/extensions/default.nix | 2 +- .../lomiri-telephony-service/default.nix | 4 +- pkgs/desktops/mate/atril/default.nix | 10 +-- pkgs/development/beam-modules/fetch-hex.nix | 4 +- .../beam-modules/fetch-rebar-deps.nix | 4 +- .../compilers/chicken/5/overrides.nix | 6 +- pkgs/development/compilers/dotnet/wrapper.nix | 6 +- .../compilers/factor-lang/0.100.nix | 4 +- .../compilers/factor-lang/0.99.nix | 4 +- .../compilers/gambit/gambit-support.nix | 2 +- pkgs/development/compilers/gcc/default.nix | 12 +-- .../compilers/gcc/patches/default.nix | 13 +-- .../compilers/ghc/9.0.2-binary.nix | 4 +- .../compilers/ghc/9.2.4-binary.nix | 4 +- .../compilers/ghc/9.6.3-binary.nix | 4 +- .../compilers/ghc/9.8.4-binary.nix | 4 +- .../compilers/ghc/common-hadrian.nix | 2 +- .../ghc/common-make-native-bignum.nix | 2 +- .../compilers/llvm/common/bolt/default.nix | 4 +- .../compilers/llvm/common/clang/default.nix | 4 +- .../llvm/common/compiler-rt/default.nix | 8 +- .../compilers/llvm/common/libclc/default.nix | 4 +- .../compilers/llvm/common/lld/default.nix | 4 +- .../compilers/llvm/common/llvm/default.nix | 4 +- .../compilers/llvm/common/mlir/default.nix | 4 +- .../compilers/llvm/common/openmp/default.nix | 4 +- .../compilers/llvm/common/tblgen.nix | 4 +- .../compilers/open-watcom/wrapper.nix | 2 +- pkgs/development/compilers/rust/default.nix | 4 +- pkgs/development/compilers/vala/default.nix | 2 +- .../compilers/yosys/plugins/symbiflow.nix | 4 +- .../coq-modules/ExtLib/default.nix | 6 +- .../coq-modules/mathcomp-analysis/default.nix | 4 +- .../coq-modules/metarocq/default.nix | 2 +- .../coq-modules/validsdp/default.nix | 4 +- .../vscoq-language-server/default.nix | 4 +- .../haskell-modules/configuration-nix.nix | 4 +- .../interpreters/lua-5/default.nix | 12 +-- .../interpreters/octave/default.nix | 2 +- pkgs/development/interpreters/php/8.2.nix | 4 +- pkgs/development/interpreters/php/8.3.nix | 4 +- .../interpreters/python/meta-package.nix | 4 +- .../python/python2/mk-python-derivation.nix | 6 +- .../libraries/agda/iowa-stdlib/default.nix | 4 +- pkgs/development/libraries/gcr/default.nix | 2 +- .../libraries/kerberos/heimdal.nix | 22 ++--- .../libraries/libmicrohttpd/0.9.77.nix | 4 +- .../libraries/libmicrohttpd/1.0.nix | 4 +- pkgs/development/libraries/opencv/4.x.nix | 2 +- .../libraries/qt-5/modules/qtbase.nix | 10 +-- .../libraries/qt-5/modules/qtwebengine.nix | 4 +- pkgs/development/libraries/qt-6/default.nix | 4 +- pkgs/development/lua-modules/overrides.nix | 8 +- .../ocaml-modules/elpi/default.nix | 4 +- .../ocaml-modules/junit/default.nix | 4 +- .../development/ocaml-modules/junit/ounit.nix | 4 +- pkgs/development/ocaml-modules/menhir/lib.nix | 4 +- .../python-modules/beaker/default.nix | 2 +- .../python-modules/cfscrape/default.nix | 4 +- .../python-modules/manim/default.nix | 4 +- .../python-modules/pexpect/default.nix | 4 +- .../python-modules/pyscreenshot/default.nix | 2 +- .../python-modules/qiskit-ignis/default.nix | 6 +- .../python-modules/sure/default.nix | 2 +- .../python-modules/tensorflow/default.nix | 2 +- .../python-modules/torch/source/src.nix | 5 +- .../python-modules/vivisect/default.nix | 2 +- .../python-modules/vllm/default.nix | 2 +- .../rocq-modules/rocq-elpi/default.nix | 2 +- pkgs/development/tools/ammonite/default.nix | 2 +- .../buildbot/worker.nix | 4 +- pkgs/development/tools/godot/3/mono/glue.nix | 4 +- pkgs/development/tools/godot/common.nix | 4 +- .../tools/haskell/ihaskell/wrapper.nix | 4 +- pkgs/development/web/nodejs/gyp-patches.nix | 20 ++--- pkgs/games/armagetronad/default.nix | 2 +- pkgs/games/quake2/yquake2/wrapper.nix | 4 +- .../documentation-highlighter/default.nix | 4 +- pkgs/misc/logging/beats/7.x.nix | 4 +- pkgs/misc/optee-os/default.nix | 4 +- pkgs/misc/tmux-plugins/default.nix | 12 +-- pkgs/os-specific/bsd/freebsd/default.nix | 4 +- pkgs/os-specific/bsd/freebsd/lib/default.nix | 6 +- .../bsd/freebsd/pkgs/localedef.nix | 4 +- .../linux/kernel/common-config.nix | 2 +- pkgs/os-specific/linux/kernel/zen-kernels.nix | 2 +- .../minimal-bootstrap/gnused/default.nix | 4 +- .../linux/minimal-bootstrap/gnused/mes.nix | 4 +- pkgs/os-specific/linux/mxu11x0/default.nix | 2 +- pkgs/os-specific/linux/zfs/generic.nix | 4 +- pkgs/pkgs-lib/formats.nix | 2 +- .../formats/java-properties/default.nix | 4 +- pkgs/servers/home-assistant/default.nix | 4 +- pkgs/servers/pulseaudio/qpaeq.nix | 16 ++-- pkgs/servers/rainloop/default.nix | 4 +- .../postgresql/ext/vectorchord/package.nix | 2 +- pkgs/stdenv/generic/check-meta.nix | 2 +- pkgs/stdenv/generic/make-derivation.nix | 4 +- pkgs/test/vim/default.nix | 4 +- pkgs/tools/misc/seaborn-data/default.nix | 4 +- .../modular/src/libflake-tests/package.nix | 4 +- .../modular/src/libstore-tests/package.nix | 4 +- pkgs/tools/system/netdata/default.nix | 2 +- .../typesetting/tex/texlive/build-tex-env.nix | 2 +- pkgs/top-level/coq-packages.nix | 8 +- pkgs/top-level/darwin-aliases.nix | 4 +- pkgs/top-level/python-aliases.nix | 4 +- pkgs/top-level/release-small.nix | 4 +- pkgs/top-level/stage.nix | 4 +- pkgs/top-level/variants.nix | 4 +- 336 files changed, 826 insertions(+), 829 deletions(-) diff --git a/ci/default.nix b/ci/default.nix index f6eaab88fcb0..7b7424f4f5be 100644 --- a/ci/default.nix +++ b/ci/default.nix @@ -96,7 +96,6 @@ let # Rule names can currently be looked up here: # https://github.com/nix-community/nixd/blob/main/libnixf/src/Basic/diagnostic.py # TODO: Remove the following and fix things. - "--ignore=parse-redundant-paren" "--ignore=sema-unused-def-lambda-noarg-formal" "--ignore=sema-unused-def-lambda-witharg-arg" "--ignore=sema-unused-def-lambda-witharg-formal" diff --git a/doc/doc-support/package.nix b/doc/doc-support/package.nix index 8e5651864d48..18830462b870 100644 --- a/doc/doc-support/package.nix +++ b/doc/doc-support/package.nix @@ -35,7 +35,7 @@ stdenvNoCC.mkDerivation ( decl: let declStr = toString decl; - root = toString (../..); + root = toString ../..; subpath = lib.removePrefix "/" (lib.removePrefix root declStr); in if lib.hasPrefix root declStr then diff --git a/lib/customisation.nix b/lib/customisation.nix index 19c77633e6e3..5fb39fdfe1d2 100644 --- a/lib/customisation.nix +++ b/lib/customisation.nix @@ -396,7 +396,7 @@ rec { outputs = drv.outputs or [ "out" ]; commonAttrs = - drv // (listToAttrs outputsList) // ({ all = map (x: x.value) outputsList; }) // passthru; + drv // (listToAttrs outputsList) // { all = map (x: x.value) outputsList; } // passthru; outputToAttrListElement = outputName: { name = outputName; diff --git a/lib/tests/modules/composed-types-valueMeta.nix b/lib/tests/modules/composed-types-valueMeta.nix index 734917f8b67d..fc2279b69301 100644 --- a/lib/tests/modules/composed-types-valueMeta.nix +++ b/lib/tests/modules/composed-types-valueMeta.nix @@ -26,29 +26,29 @@ in { imports = [ # Module A - ({ + { options.attrsOfModule = attrsOfModule; options.mergedAttrsOfModule = attrsOfModule; options.listOfModule = listOfModule; options.mergedListOfModule = listOfModule; - }) + } # Module B - ({ + { options.mergedAttrsOfModule = attrsOfModule; options.mergedListOfModule = listOfModule; - }) + } # Values # It is important that the value is defined in a separate module # Without valueMeta the actual value and sub-options wouldn't be accessible via: # options.attrsOfModule.type.getSubOptions - ({ + { attrsOfModule = { foo.bar = 42; }; mergedAttrsOfModule = { foo.bar = 42; }; - }) + } ( { options, ... }: { diff --git a/lib/tests/modules/freeform-attrsof-either.nix b/lib/tests/modules/freeform-attrsof-either.nix index 3d6ea05a88ef..c92020306b45 100644 --- a/lib/tests/modules/freeform-attrsof-either.nix +++ b/lib/tests/modules/freeform-attrsof-either.nix @@ -4,9 +4,9 @@ let in { options.number = mkOption { - type = types.submodule ({ + type = types.submodule { freeformType = types.attrsOf (types.either types.int types.int); - }); + }; default = { int = 42; }; # should not emit a warning diff --git a/lib/tests/modules/freeform-deprecated-malicous.nix b/lib/tests/modules/freeform-deprecated-malicous.nix index 47d5bd2f69dd..8d9bbdf06f82 100644 --- a/lib/tests/modules/freeform-deprecated-malicous.nix +++ b/lib/tests/modules/freeform-deprecated-malicous.nix @@ -4,31 +4,31 @@ let in { options.either = mkOption { - type = types.submodule ({ + type = types.submodule { freeformType = (types.either types.int types.int); - }); + }; }; options.eitherBehindNullor = mkOption { - type = types.submodule ({ + type = types.submodule { freeformType = types.nullOr (types.either types.int types.int); - }); + }; }; options.oneOf = mkOption { - type = types.submodule ({ + type = types.submodule { freeformType = ( types.oneOf [ types.int types.int ] ); - }); + }; }; options.number = mkOption { - type = types.submodule ({ + type = types.submodule { freeformType = (types.number); # either int float - }); + }; }; } diff --git a/lib/tests/modules/functionTo/submodule-options.nix b/lib/tests/modules/functionTo/submodule-options.nix index 5d490e07281d..4d821db1763e 100644 --- a/lib/tests/modules/functionTo/submodule-options.nix +++ b/lib/tests/modules/functionTo/submodule-options.nix @@ -56,7 +56,7 @@ in default = lib.concatStringsSep " " ( lib.concatLists ( lib.mapAttrsToList (k: v: if k == "_module" then [ ] else [ (lib.showOption v.loc) ]) ( - (options.fun.type.getSubOptions [ "fun" ]) + options.fun.type.getSubOptions [ "fun" ] ) ) ); diff --git a/lib/tests/systems.nix b/lib/tests/systems.nix index 642339e792fd..872523d47b4a 100644 --- a/lib/tests/systems.nix +++ b/lib/tests/systems.nix @@ -157,9 +157,7 @@ lib.runTests ( "x86_64-genode" ]; testredox = mseteq redox [ "x86_64-redox" ]; - testgnu = mseteq gnu ( - linux # ++ kfreebsd ++ ... - ); + testgnu = mseteq gnu linux; # ++ kfreebsd ++ ... testillumos = mseteq illumos [ "x86_64-solaris" ]; testlinux = mseteq linux [ "aarch64-linux" diff --git a/nixos/lib/eval-config.nix b/nixos/lib/eval-config.nix index 928c8000d64f..4c7b0ba9ed1d 100644 --- a/nixos/lib/eval-config.nix +++ b/nixos/lib/eval-config.nix @@ -104,7 +104,7 @@ let in locatedModules ++ legacyModules; - noUserModules = evalModulesMinimal ({ + noUserModules = evalModulesMinimal { inherit prefix specialArgs; modules = baseModules @@ -113,7 +113,7 @@ let pkgsModule modulesModule ]; - }); + }; # Extra arguments that are useful for constructing a similar configuration. modulesModule = { diff --git a/nixos/lib/systemd-lib.nix b/nixos/lib/systemd-lib.nix index 03d0705b3e92..63b965f21d69 100644 --- a/nixos/lib/systemd-lib.nix +++ b/nixos/lib/systemd-lib.nix @@ -361,12 +361,13 @@ rec { }: let typeDir = - ({ + { system = "system"; initrd = "system"; user = "user"; nspawn = "nspawn"; - }).${type}; + } + .${type}; in pkgs.runCommand "${type}-units" { diff --git a/nixos/lib/testing/network.nix b/nixos/lib/testing/network.nix index 5caea2710754..1188e9bec505 100644 --- a/nixos/lib/testing/network.nix +++ b/nixos/lib/testing/network.nix @@ -104,9 +104,9 @@ let optionalString ( config.networking.primaryIPAddress != "" ) "${config.networking.primaryIPAddress} ${hostnames}" - + optionalString (config.networking.primaryIPv6Address != "") ( - "${config.networking.primaryIPv6Address} ${hostnames}" - ) + + optionalString ( + config.networking.primaryIPv6Address != "" + ) "${config.networking.primaryIPv6Address} ${hostnames}" ); virtualisation.qemu.options = qemuOptions; diff --git a/nixos/modules/config/nix-remote-build.nix b/nixos/modules/config/nix-remote-build.nix index 9a276aa29d07..928ed0c2c9b6 100644 --- a/nixos/modules/config/nix-remote-build.nix +++ b/nixos/modules/config/nix-remote-build.nix @@ -241,7 +241,7 @@ in Invalid machine specifications: '' + " " - + (concatStringsSep "\n " (map (m: m.hostName) (filter (badMachine) cfg.buildMachines))); + + (concatStringsSep "\n " (map (m: m.hostName) (filter badMachine cfg.buildMachines))); } ]; diff --git a/nixos/modules/config/xdg/terminal-exec.nix b/nixos/modules/config/xdg/terminal-exec.nix index 0c8381bc2cde..764a1ee6c087 100644 --- a/nixos/modules/config/xdg/terminal-exec.nix +++ b/nixos/modules/config/xdg/terminal-exec.nix @@ -54,9 +54,9 @@ in etc = lib.mapAttrs' ( desktop: terminals: # map desktop name such as GNOME to `xdg/gnome-xdg-terminals.list`, default to `xdg/xdg-terminals.list` - lib.nameValuePair ( - "xdg/${if desktop == "default" then "" else "${lib.toLower desktop}-"}xdg-terminals.list" - ) { text = lib.concatLines terminals; } + lib.nameValuePair "xdg/${ + if desktop == "default" then "" else "${lib.toLower desktop}-" + }xdg-terminals.list" { text = lib.concatLines terminals; } ) cfg.settings; }; }; diff --git a/nixos/modules/hardware/video/nvidia.nix b/nixos/modules/hardware/video/nvidia.nix index be4afcd63036..0f9dc1fb1bbf 100644 --- a/nixos/modules/hardware/video/nvidia.nix +++ b/nixos/modules/hardware/video/nvidia.nix @@ -333,7 +333,7 @@ in lib.mkIf cfg.enabled ( lib.mkMerge [ # Common - ({ + { assertions = [ { assertion = !(nvidiaEnabled && cfg.datacenter.enable); @@ -388,7 +388,7 @@ in extraPackages32 = [ nvidia_x11.lib32 ]; }; environment.systemPackages = [ nvidia_x11.bin ]; - }) + } # X11 (lib.mkIf nvidiaEnabled { @@ -709,7 +709,7 @@ in "L+ /run/nvidia-docker/extras/bin/nvidia-persistenced - - - - ${nvidia_x11.persistenced}/origBin/nvidia-persistenced"; services = lib.mkMerge [ - ({ + { nvidia-fabricmanager = { enable = true; description = "Start NVIDIA NVLink Management"; @@ -736,7 +736,7 @@ in LimitCORE = "infinity"; }; }; - }) + } (lib.mkIf cfg.nvidiaPersistenced { "nvidia-persistenced" = { description = "NVIDIA Persistence Daemon"; diff --git a/nixos/modules/i18n/input-method/fcitx5.nix b/nixos/modules/i18n/input-method/fcitx5.nix index 81e65517f515..989e5fbf8239 100644 --- a/nixos/modules/i18n/input-method/fcitx5.nix +++ b/nixos/modules/i18n/input-method/fcitx5.nix @@ -117,7 +117,7 @@ in ++ lib.optionals (cfg.quickPhraseFiles != { }) [ (pkgs.linkFarm "quickPhraseFiles" ( lib.mapAttrs' ( - name: value: lib.nameValuePair ("share/fcitx5/data/quickphrase.d/${name}.mb") value + name: value: lib.nameValuePair "share/fcitx5/data/quickphrase.d/${name}.mb" value ) cfg.quickPhraseFiles )) ]; diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix index ad8dc763570d..76a1517d9dae 100644 --- a/nixos/modules/installer/cd-dvd/iso-image.nix +++ b/nixos/modules/installer/cd-dvd/iso-image.nix @@ -950,7 +950,7 @@ in let cfgFiles = cfg: - lib.optionals cfg.isoImage.showConfiguration ([ + lib.optionals cfg.isoImage.showConfiguration [ { source = cfg.boot.kernelPackages.kernel + "/" + cfg.system.boot.loader.kernelFile; target = "/boot/" + cfg.boot.kernelPackages.kernel + "/" + cfg.system.boot.loader.kernelFile; @@ -959,7 +959,7 @@ in source = cfg.system.build.initialRamdisk + "/" + cfg.system.boot.loader.initrdFile; target = "/boot/" + cfg.system.build.initialRamdisk + "/" + cfg.system.boot.loader.initrdFile; } - ]) + ] ++ lib.concatLists ( lib.mapAttrsToList (_: { configuration, ... }: cfgFiles configuration) cfg.specialisation ); diff --git a/nixos/modules/profiles/nix-builder-vm.nix b/nixos/modules/profiles/nix-builder-vm.nix index d75b786a6958..3bb9953cf28c 100644 --- a/nixos/modules/profiles/nix-builder-vm.nix +++ b/nixos/modules/profiles/nix-builder-vm.nix @@ -212,18 +212,18 @@ in '' ); - run-builder = hostPkgs.writeShellScriptBin "run-builder" ('' + run-builder = hostPkgs.writeShellScriptBin "run-builder" '' set -euo pipefail KEYS="''${KEYS:-./keys}" KEYS="$(${hostPkgs.nix}/bin/nix-store --add "$KEYS")" ${lib.getExe config.system.build.vm} - ''); + ''; - script = hostPkgs.writeShellScriptBin "create-builder" ('' + script = hostPkgs.writeShellScriptBin "create-builder" '' set -euo pipefail export KEYS="''${KEYS:-./keys}" ${lib.getExe add-keys} ${lib.getExe run-builder} - ''); + ''; in script.overrideAttrs (old: { diff --git a/nixos/modules/programs/coolercontrol.nix b/nixos/modules/programs/coolercontrol.nix index a88611856860..03aa774ad846 100644 --- a/nixos/modules/programs/coolercontrol.nix +++ b/nixos/modules/programs/coolercontrol.nix @@ -29,7 +29,7 @@ in config = lib.mkIf cfg.enable ( lib.mkMerge [ # Common - ({ + { environment.systemPackages = with pkgs.coolercontrol; [ coolercontrol-gui ]; @@ -46,7 +46,7 @@ in coolercontrold.wantedBy = [ "multi-user.target" ]; }; }; - }) + } # Nvidia support (lib.mkIf cfg.nvidiaSupport { diff --git a/nixos/modules/programs/firefox.nix b/nixos/modules/programs/firefox.nix index d391b25892f4..70301b75d614 100644 --- a/nixos/modules/programs/firefox.nix +++ b/nixos/modules/programs/firefox.nix @@ -149,7 +149,7 @@ in languagePacks = lib.mkOption { # Available languages can be found in https://releases.mozilla.org/pub/firefox/releases/${cfg.package.version}/linux-x86_64/xpi/ type = lib.types.listOf ( - lib.types.enum ([ + lib.types.enum [ "ach" "af" "an" @@ -253,7 +253,7 @@ in "xh" "zh-CN" "zh-TW" - ]) + ] ); default = [ ]; description = '' @@ -285,7 +285,7 @@ in ''; }; - nativeMessagingHosts = ({ + nativeMessagingHosts = { packages = lib.mkOption { type = lib.types.listOf lib.types.package; default = [ ]; @@ -293,7 +293,7 @@ in Additional packages containing native messaging hosts that should be made available to Firefox extensions. ''; }; - }) + } // (builtins.mapAttrs (k: v: lib.mkEnableOption "${v.name} support") nmhOptions); }; diff --git a/nixos/modules/programs/ssh.nix b/nixos/modules/programs/ssh.nix index cbf1800e8e3b..63d2bd865758 100644 --- a/nixos/modules/programs/ssh.nix +++ b/nixos/modules/programs/ssh.nix @@ -382,8 +382,8 @@ in ExecStartPre = "${pkgs.coreutils}/bin/rm -f %t/ssh-agent"; ExecStart = "${cfg.package}/bin/ssh-agent " - + lib.optionalString (cfg.agentTimeout != null) ("-t ${cfg.agentTimeout} ") - + lib.optionalString (cfg.agentPKCS11Whitelist != null) ("-P ${cfg.agentPKCS11Whitelist} ") + + lib.optionalString (cfg.agentTimeout != null) "-t ${cfg.agentTimeout} " + + lib.optionalString (cfg.agentPKCS11Whitelist != null) "-P ${cfg.agentPKCS11Whitelist} " + "-a %t/ssh-agent"; StandardOutput = "null"; Type = "forking"; diff --git a/nixos/modules/programs/tsm-client.nix b/nixos/modules/programs/tsm-client.nix index 26623844513c..504b426c83f3 100644 --- a/nixos/modules/programs/tsm-client.nix +++ b/nixos/modules/programs/tsm-client.nix @@ -280,22 +280,22 @@ let # skip `null` value else [ - ( - " ${key}${ - if value == true then - "" - # just output key if value is `true` - else if isInt value then - " ${builtins.toString value}" - else if path.check value then - " \"${value}\"" - # enclose path in ".." - else if singleLineStr.check value then - " ${value}" - else - throw "assertion failed: cannot convert type" # should never happen - }" - ) + + " ${key}${ + if value == true then + "" + # just output key if value is `true` + else if isInt value then + " ${builtins.toString value}" + else if path.check value then + " \"${value}\"" + # enclose path in ".." + else if singleLineStr.check value then + " ${value}" + else + throw "assertion failed: cannot convert type" # should never happen + }" + ]; makeDsmSysStanza = diff --git a/nixos/modules/programs/winbox.nix b/nixos/modules/programs/winbox.nix index e0643030166b..78639f8d3ab9 100644 --- a/nixos/modules/programs/winbox.nix +++ b/nixos/modules/programs/winbox.nix @@ -10,7 +10,7 @@ let in { options.programs.winbox = { - enable = lib.mkEnableOption ("MikroTik Winbox"); + enable = lib.mkEnableOption "MikroTik Winbox"; package = lib.mkPackageOption pkgs "winbox" { }; openFirewall = lib.mkOption { diff --git a/nixos/modules/programs/zsh/zsh-syntax-highlighting.nix b/nixos/modules/programs/zsh/zsh-syntax-highlighting.nix index 07b4633bccd2..c9646d5cee06 100644 --- a/nixos/modules/programs/zsh/zsh-syntax-highlighting.nix +++ b/nixos/modules/programs/zsh/zsh-syntax-highlighting.nix @@ -37,7 +37,7 @@ in # https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md type = lib.types.listOf ( - lib.types.enum ([ + lib.types.enum [ "main" "brackets" "pattern" @@ -45,7 +45,7 @@ in "regexp" "root" "line" - ]) + ] ); description = '' diff --git a/nixos/modules/security/please.nix b/nixos/modules/security/please.nix index b67f0945521a..7afdf7445849 100644 --- a/nixos/modules/security/please.nix +++ b/nixos/modules/security/please.nix @@ -97,7 +97,7 @@ in etc."please.ini".source = ini.generate "please.ini" ( cfg.settings - // (rec { + // rec { # The "root" user is allowed to do anything by default and this cannot # be overridden. root_run_as_any = { @@ -113,7 +113,7 @@ in root_list_as_any = root_run_as_any // { type = "list"; }; - }) + } ); }; diff --git a/nixos/modules/security/wrappers/default.nix b/nixos/modules/security/wrappers/default.nix index edbed8120e24..8798047a6d06 100644 --- a/nixos/modules/security/wrappers/default.nix +++ b/nixos/modules/security/wrappers/default.nix @@ -294,11 +294,11 @@ in where = parentWrapperDir; what = "tmpfs"; type = "tmpfs"; - options = lib.concatStringsSep "," ([ + options = lib.concatStringsSep "," [ "nodev" "mode=755" "size=${config.security.wrapperDirSize}" - ]); + ]; } ]; diff --git a/nixos/modules/services/audio/alsa.nix b/nixos/modules/services/audio/alsa.nix index 1d611844bf26..c1ee7023aa1f 100644 --- a/nixos/modules/services/audio/alsa.nix +++ b/nixos/modules/services/audio/alsa.nix @@ -157,7 +157,7 @@ in controls = lib.mkOption { type = lib.types.attrsOf ( - lib.types.submodule ({ + lib.types.submodule { options.name = lib.mkOption { type = lib.types.nullOr lib.types.str; default = null; @@ -187,7 +187,7 @@ in The maximum volume in dB. ''; }; - }) + } ); default = { }; example = lib.literalExpression '' @@ -206,7 +206,7 @@ in cardAliases = lib.mkOption { type = lib.types.attrsOf ( - lib.types.submodule ({ + lib.types.submodule { options.driver = lib.mkOption { type = lib.types.str; description = '' @@ -220,7 +220,7 @@ in The ID of the sound card ''; }; - }) + } ); default = { }; example = lib.literalExpression '' diff --git a/nixos/modules/services/audio/gmediarender.nix b/nixos/modules/services/audio/gmediarender.nix index ce4223880086..43217b9d1f05 100644 --- a/nixos/modules/services/audio/gmediarender.nix +++ b/nixos/modules/services/audio/gmediarender.nix @@ -81,18 +81,21 @@ in SupplementaryGroups = [ "audio" ]; ExecStart = "${cfg.package}/bin/gmediarender " - + lib.optionalString (cfg.audioDevice != null) ( - "--gstout-audiodevice=${utils.escapeSystemdExecArg cfg.audioDevice} " - ) - + lib.optionalString (cfg.audioSink != null) ( - "--gstout-audiosink=${utils.escapeSystemdExecArg cfg.audioSink} " - ) - + lib.optionalString (cfg.friendlyName != null) ( - "--friendly-name=${utils.escapeSystemdExecArg cfg.friendlyName} " - ) - + lib.optionalString (cfg.initialVolume != 0) ("--initial-volume=${toString cfg.initialVolume} ") - + lib.optionalString (cfg.port != null) ("--port=${toString cfg.port} ") - + lib.optionalString (cfg.uuid != null) ("--uuid=${utils.escapeSystemdExecArg cfg.uuid} "); + + lib.optionalString ( + cfg.audioDevice != null + ) "--gstout-audiodevice=${utils.escapeSystemdExecArg cfg.audioDevice} " + + + lib.optionalString ( + cfg.audioSink != null + ) "--gstout-audiosink=${utils.escapeSystemdExecArg cfg.audioSink} " + + + lib.optionalString ( + cfg.friendlyName != null + ) "--friendly-name=${utils.escapeSystemdExecArg cfg.friendlyName} " + + + lib.optionalString (cfg.initialVolume != 0) "--initial-volume=${toString cfg.initialVolume} " + + lib.optionalString (cfg.port != null) "--port=${toString cfg.port} " + + lib.optionalString (cfg.uuid != null) "--uuid=${utils.escapeSystemdExecArg cfg.uuid} "; Restart = "always"; RuntimeDirectory = "gmediarender"; diff --git a/nixos/modules/services/backup/borgbackup.nix b/nixos/modules/services/backup/borgbackup.nix index 46ccf56ddf7f..adabb2ce0f8b 100644 --- a/nixos/modules/services/backup/borgbackup.nix +++ b/nixos/modules/services/backup/borgbackup.nix @@ -206,14 +206,13 @@ let { nativeBuildInputs = [ pkgs.makeWrapper ]; } - ( - '' - makeWrapper "${original}" "$out/bin/${name}" \ - ${lib.concatStringsSep " \\\n " ( - lib.mapAttrsToList (name: value: ''--set ${name} "${value}"'') set - )} - ''); + '' + makeWrapper "${original}" "$out/bin/${name}" \ + ${lib.concatStringsSep " \\\n " ( + lib.mapAttrsToList (name: value: ''--set ${name} "${value}"'') set + )} + ''; # Returns a singleton list, due to usage of lib.optional mkBorgWrapper = diff --git a/nixos/modules/services/backup/syncoid.nix b/nixos/modules/services/backup/syncoid.nix index 8b4c59155f4d..fa1abfe12e2e 100644 --- a/nixos/modules/services/backup/syncoid.nix +++ b/nixos/modules/services/backup/syncoid.nix @@ -31,39 +31,38 @@ let # datasets. buildAllowCommand = permissions: dataset: - ( - "-+${pkgs.writeShellScript "zfs-allow-${dataset}" '' - # Here we explicitly use the booted system to guarantee the stable API needed by ZFS - # Run a ZFS list on the dataset to check if it exists - if ${ - lib.escapeShellArgs [ - "/run/booted-system/sw/bin/zfs" - "list" - dataset - ] - } 2> /dev/null; then + "-+${pkgs.writeShellScript "zfs-allow-${dataset}" '' + # Here we explicitly use the booted system to guarantee the stable API needed by ZFS + + # Run a ZFS list on the dataset to check if it exists + if ${ + lib.escapeShellArgs [ + "/run/booted-system/sw/bin/zfs" + "list" + dataset + ] + } 2> /dev/null; then + ${lib.escapeShellArgs [ + "/run/booted-system/sw/bin/zfs" + "allow" + cfg.user + (lib.concatStringsSep "," permissions) + dataset + ]} + ${lib.optionalString ((builtins.dirOf dataset) != ".") '' + else ${lib.escapeShellArgs [ "/run/booted-system/sw/bin/zfs" "allow" cfg.user (lib.concatStringsSep "," permissions) - dataset + # Remove the last part of the path + (builtins.dirOf dataset) ]} - ${lib.optionalString ((builtins.dirOf dataset) != ".") '' - else - ${lib.escapeShellArgs [ - "/run/booted-system/sw/bin/zfs" - "allow" - cfg.user - (lib.concatStringsSep "," permissions) - # Remove the last part of the path - (builtins.dirOf dataset) - ]} - ''} - fi - ''}" - ); + ''} + fi + ''}"; # Function to build "zfs unallow" commands for the filesystems we've # delegated permissions to. Here we unallow both the target but also @@ -73,28 +72,27 @@ let # since the dataset should have been created at this point. buildUnallowCommand = permissions: dataset: - ( - "-+${pkgs.writeShellScript "zfs-unallow-${dataset}" '' - # Here we explicitly use the booted system to guarantee the stable API needed by ZFS - ${lib.escapeShellArgs [ + + "-+${pkgs.writeShellScript "zfs-unallow-${dataset}" '' + # Here we explicitly use the booted system to guarantee the stable API needed by ZFS + ${lib.escapeShellArgs [ + "/run/booted-system/sw/bin/zfs" + "unallow" + cfg.user + (lib.concatStringsSep "," permissions) + dataset + ]} + ${lib.optionalString ((builtins.dirOf dataset) != ".") ( + lib.escapeShellArgs [ "/run/booted-system/sw/bin/zfs" "unallow" cfg.user (lib.concatStringsSep "," permissions) - dataset - ]} - ${lib.optionalString ((builtins.dirOf dataset) != ".") ( - lib.escapeShellArgs [ - "/run/booted-system/sw/bin/zfs" - "unallow" - cfg.user - (lib.concatStringsSep "," permissions) - # Remove the last part of the path - (builtins.dirOf dataset) - ] - )} - ''}" - ); + # Remove the last part of the path + (builtins.dirOf dataset) + ] + )} + ''}"; in { diff --git a/nixos/modules/services/cluster/hadoop/yarn.nix b/nixos/modules/services/cluster/hadoop/yarn.nix index b21a4ca5c277..e46799e3870d 100644 --- a/nixos/modules/services/cluster/hadoop/yarn.nix +++ b/nixos/modules/services/cluster/hadoop/yarn.nix @@ -189,13 +189,13 @@ in services.hadoop.yarnSiteInternal = with cfg.yarn.nodemanager; lib.mkMerge [ - ({ + { "yarn.nodemanager.local-dirs" = lib.mkIf (localDir != null) (concatStringsSep "," localDir); "yarn.scheduler.maximum-allocation-vcores" = resource.maximumAllocationVCores; "yarn.scheduler.maximum-allocation-mb" = resource.maximumAllocationMB; "yarn.nodemanager.resource.cpu-vcores" = resource.cpuVCores; "yarn.nodemanager.resource.memory-mb" = resource.memoryMB; - }) + } (lib.mkIf useCGroups ( lib.warnIf (lib.versionOlder cfg.package.version "3.5.0") '' diff --git a/nixos/modules/services/cluster/kubernetes/default.nix b/nixos/modules/services/cluster/kubernetes/default.nix index 86e5e072aa06..b29c8ece7321 100644 --- a/nixos/modules/services/cluster/kubernetes/default.nix +++ b/nixos/modules/services/cluster/kubernetes/default.nix @@ -342,14 +342,12 @@ in # dns addon is enabled by default services.kubernetes.addons.dns.enable = lib.mkDefault true; - services.kubernetes.apiserverAddress = lib.mkDefault ( - "https://${ - if cfg.apiserver.advertiseAddress != null then - cfg.apiserver.advertiseAddress - else - "${cfg.masterAddress}:${toString cfg.apiserver.securePort}" - }" - ); + services.kubernetes.apiserverAddress = lib.mkDefault "https://${ + if cfg.apiserver.advertiseAddress != null then + cfg.apiserver.advertiseAddress + else + "${cfg.masterAddress}:${toString cfg.apiserver.securePort}" + }"; } ) ]; diff --git a/nixos/modules/services/cluster/temporal/default.nix b/nixos/modules/services/cluster/temporal/default.nix index 57a3e39157d3..329de0d379f2 100644 --- a/nixos/modules/services/cluster/temporal/default.nix +++ b/nixos/modules/services/cluster/temporal/default.nix @@ -137,7 +137,7 @@ in "@chown" ]; } - // (lib.optionalAttrs (usingDefaultDataDir) { + // (lib.optionalAttrs usingDefaultDataDir { StateDirectory = "temporal"; StateDirectoryMode = "0700"; }); diff --git a/nixos/modules/services/continuous-integration/gitea-actions-runner.nix b/nixos/modules/services/continuous-integration/gitea-actions-runner.nix index 8225d0ca2ebc..3f7643a941d0 100644 --- a/nixos/modules/services/continuous-integration/gitea-actions-runner.nix +++ b/nixos/modules/services/continuous-integration/gitea-actions-runner.nix @@ -200,10 +200,10 @@ in after = [ "network-online.target" ] - ++ optionals (wantsDocker) [ + ++ optionals wantsDocker [ "docker.service" ] - ++ optionals (wantsPodman) [ + ++ optionals wantsPodman [ "podman.service" ]; wantedBy = [ @@ -213,7 +213,7 @@ in optionalAttrs (instance.token != null) { TOKEN = "${instance.token}"; } - // optionalAttrs (wantsPodman) { + // optionalAttrs wantsPodman { DOCKER_HOST = "unix:///run/podman/podman.sock"; } // { @@ -266,10 +266,10 @@ in ]; ExecStart = "${cfg.package}/bin/act_runner daemon --config ${configFile}"; SupplementaryGroups = - optionals (wantsDocker) [ + optionals wantsDocker [ "docker" ] - ++ optionals (wantsPodman) [ + ++ optionals wantsPodman [ "podman" ]; } diff --git a/nixos/modules/services/databases/foundationdb.nix b/nixos/modules/services/databases/foundationdb.nix index c05bfc47bb77..dd55e0e0dd2b 100644 --- a/nixos/modules/services/databases/foundationdb.nix +++ b/nixos/modules/services/databases/foundationdb.nix @@ -230,7 +230,7 @@ in ''; type = lib.types.nullOr ( - lib.types.submodule ({ + lib.types.submodule { options = { certificate = lib.mkOption { type = lib.types.str; @@ -258,7 +258,7 @@ in ''; }; }; - }) + } ); }; @@ -274,7 +274,7 @@ in FoundationDB locality settings. ''; - type = lib.types.submodule ({ + type = lib.types.submodule { options = { machineId = lib.mkOption { default = null; @@ -316,7 +316,7 @@ in ''; }; }; - }); + }; }; extraReadWritePaths = lib.mkOption { diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix index 72593aff4c84..1fc1ede6313c 100644 --- a/nixos/modules/services/databases/openldap.nix +++ b/nixos/modules/services/databases/openldap.nix @@ -357,7 +357,7 @@ in ] ) contentsFiles) ++ [ "${openldap}/bin/slaptest -u -F ${configDir}" ]; - ExecStart = lib.escapeShellArgs ([ + ExecStart = lib.escapeShellArgs [ "${openldap}/libexec/slapd" "-d" "0" @@ -365,7 +365,7 @@ in configDir "-h" (lib.concatStringsSep " " cfg.urlList) - ]); + ]; Type = "notify"; # Fixes an error where openldap attempts to notify from a thread # outside the main process: diff --git a/nixos/modules/services/desktops/system76-scheduler.nix b/nixos/modules/services/desktops/system76-scheduler.nix index 1a8abe810cd8..379e4a78c9e3 100644 --- a/nixos/modules/services/desktops/system76-scheduler.nix +++ b/nixos/modules/services/desktops/system76-scheduler.nix @@ -136,9 +136,9 @@ let ++ (optional (a.nice != null) "nice=${toString a.nice}") ++ (optional (a.class != null) "sched=${prioToString a.class a.prio}") ++ (optional (a.ioClass != null) "io=${prioToString a.ioClass a.ioPrio}") - ++ (optional ((builtins.length a.matchers) != 0) ( + ++ (optional ((builtins.length a.matchers) != 0) "{\n${concatStringsSep "\n" (map (m: " ${indent}${m}") a.matchers)}\n${indent}}" - )) + ) ); in diff --git a/nixos/modules/services/development/athens.nix b/nixos/modules/services/development/athens.nix index 1f41a269e11b..984b4a9ecc52 100644 --- a/nixos/modules/services/development/athens.nix +++ b/nixos/modules/services/development/athens.nix @@ -7,7 +7,7 @@ let cfg = config.services.athens; - athensConfig = lib.flip lib.recursiveUpdate cfg.extraConfig ({ + athensConfig = lib.flip lib.recursiveUpdate cfg.extraConfig { GoBinary = "${cfg.goBinary}/bin/go"; GoEnv = cfg.goEnv; GoBinaryEnvVars = lib.mapAttrsToList (k: v: "${k}=${v}") cfg.goBinaryEnvVars; @@ -141,7 +141,7 @@ let }; }; }; - }); + }; configFile = lib.pipe athensConfig [ (lib.filterAttrsRecursive (_k: v: v != null)) diff --git a/nixos/modules/services/hardware/display.nix b/nixos/modules/services/hardware/display.nix index ae8da40630e1..043db0a5b0cd 100644 --- a/nixos/modules/services/hardware/display.nix +++ b/nixos/modules/services/hardware/display.nix @@ -132,7 +132,7 @@ in hardware.display.outputs = lib.mkOption { type = lib.types.attrsOf ( - lib.types.submodule ({ + lib.types.submodule { options = { edid = lib.mkOption { type = with lib.types; nullOr str; @@ -161,7 +161,7 @@ in ''; }; }; - }) + } ); description = '' Hardware/kernel-level configuration of specific outputs. diff --git a/nixos/modules/services/hardware/libinput.nix b/nixos/modules/services/hardware/libinput.nix index 47f5a8db327a..1cae86827d73 100644 --- a/nixos/modules/services/hardware/libinput.nix +++ b/nixos/modules/services/hardware/libinput.nix @@ -370,12 +370,12 @@ in ( option: lib.mkRenamedOptionModule - ([ + [ "services" "xserver" "libinput" option - ]) + ] [ "services" "libinput" diff --git a/nixos/modules/services/logging/promtail.nix b/nixos/modules/services/logging/promtail.nix index 89985a983304..f346070441b3 100644 --- a/nixos/modules/services/logging/promtail.nix +++ b/nixos/modules/services/logging/promtail.nix @@ -104,7 +104,7 @@ in MemoryDenyWriteExecute = true; PrivateUsers = true; - SupplementaryGroups = lib.optional (allowSystemdJournal) "systemd-journal"; + SupplementaryGroups = lib.optional allowSystemdJournal "systemd-journal"; } // (optionalAttrs (!pkgs.stdenv.hostPlatform.isAarch64) { # FIXME: figure out why this breaks on aarch64 diff --git a/nixos/modules/services/mail/listmonk.nix b/nixos/modules/services/mail/listmonk.nix index fdc06b884eb2..237cee42ca63 100644 --- a/nixos/modules/services/mail/listmonk.nix +++ b/nixos/modules/services/mail/listmonk.nix @@ -165,11 +165,11 @@ in # Default parameters from https://github.com/knadh/listmonk/blob/master/config.toml.sample services.listmonk.settings."app".address = lib.mkDefault "localhost:9000"; services.listmonk.settings."db" = lib.mkMerge [ - ({ + { max_open = lib.mkDefault 25; max_idle = lib.mkDefault 25; max_lifetime = lib.mkDefault "300s"; - }) + } (lib.mkIf cfg.database.createLocally { host = lib.mkDefault "/run/postgresql"; port = lib.mkDefault 5432; diff --git a/nixos/modules/services/mail/public-inbox.nix b/nixos/modules/services/mail/public-inbox.nix index 5df7dc05d23c..0933d2dd535d 100644 --- a/nixos/modules/services/mail/public-inbox.nix +++ b/nixos/modules/services/mail/public-inbox.nix @@ -605,7 +605,7 @@ in ]; } ) - ({ + { public-inbox-init = let PI_CONFIG = gitIni.generate "public-inbox.ini" ( @@ -674,7 +674,7 @@ in }; } ]; - }) + } ]; environment.systemPackages = [ cfg.package ]; }; diff --git a/nixos/modules/services/mail/roundcube.nix b/nixos/modules/services/mail/roundcube.nix index 324cdb1aadc5..2bae14f47813 100644 --- a/nixos/modules/services/mail/roundcube.nix +++ b/nixos/modules/services/mail/roundcube.nix @@ -129,7 +129,7 @@ in config = lib.mkIf cfg.enable { # backward compatibility: if password is set but not passwordFile, make one. services.roundcube.database.passwordFile = lib.mkIf (!localDB && cfg.database.password != "") ( - lib.mkDefault ("${pkgs.writeText "roundcube-password" cfg.database.password}") + lib.mkDefault "${pkgs.writeText "roundcube-password" cfg.database.password}" ); warnings = lib.optional (!localDB && cfg.database.password != "") diff --git a/nixos/modules/services/mail/stalwart-mail.nix b/nixos/modules/services/mail/stalwart-mail.nix index d9d6e119d9f3..34004da62ef7 100644 --- a/nixos/modules/services/mail/stalwart-mail.nix +++ b/nixos/modules/services/mail/stalwart-mail.nix @@ -133,7 +133,7 @@ in in { path = "/var/cache/stalwart-mail"; - resource = lib.mkIf (hasHttpListener) (lib.mkDefault "file://${cfg.package.webadmin}/webadmin.zip"); + resource = lib.mkIf hasHttpListener (lib.mkDefault "file://${cfg.package.webadmin}/webadmin.zip"); }; }; diff --git a/nixos/modules/services/matrix/conduit.nix b/nixos/modules/services/matrix/conduit.nix index 8cce1db5c9d0..3d33980f6c9e 100644 --- a/nixos/modules/services/matrix/conduit.nix +++ b/nixos/modules/services/matrix/conduit.nix @@ -143,10 +143,10 @@ in wantedBy = [ "multi-user.target" ]; wants = [ "network-online.target" ]; after = [ "network-online.target" ]; - environment = lib.mkMerge ([ + environment = lib.mkMerge [ { CONDUIT_CONFIG = configFile; } cfg.extraEnvironment - ]); + ]; serviceConfig = { DynamicUser = true; User = "conduit"; diff --git a/nixos/modules/services/misc/autorandr.nix b/nixos/modules/services/misc/autorandr.nix index 4eb59340fc9c..bf7fa7621a78 100644 --- a/nixos/modules/services/misc/autorandr.nix +++ b/nixos/modules/services/misc/autorandr.nix @@ -232,7 +232,7 @@ let profileToFiles = name: profile: with profile; - lib.mkMerge ([ + lib.mkMerge [ { "xdg/autorandr/${name}/setup".text = lib.concatStringsSep "\n" ( lib.mapAttrsToList fingerprintToString fingerprint @@ -244,7 +244,7 @@ let (lib.mapAttrs' (hookToFile "${name}/postswitch.d") hooks.postswitch) (lib.mapAttrs' (hookToFile "${name}/preswitch.d") hooks.preswitch) (lib.mapAttrs' (hookToFile "${name}/predetect.d") hooks.predetect) - ]); + ]; fingerprintToString = name: edid: "${name} ${edid}"; configToString = name: config: @@ -373,12 +373,12 @@ in environment = { systemPackages = [ pkgs.autorandr ]; - etc = lib.mkMerge ([ + etc = lib.mkMerge [ (lib.mapAttrs' (hookToFile "postswitch.d") cfg.hooks.postswitch) (lib.mapAttrs' (hookToFile "preswitch.d") cfg.hooks.preswitch) (lib.mapAttrs' (hookToFile "predetect.d") cfg.hooks.predetect) (lib.mkMerge (lib.mapAttrsToList profileToFiles cfg.profiles)) - ]); + ]; }; systemd.services.autorandr = { diff --git a/nixos/modules/services/misc/bepasty.nix b/nixos/modules/services/misc/bepasty.nix index b9ab598d93dd..28817693dd18 100644 --- a/nixos/modules/services/misc/bepasty.nix +++ b/nixos/modules/services/misc/bepasty.nix @@ -138,7 +138,7 @@ in # creates gunicorn systemd service for each configured server systemd.services = lib.mapAttrs' ( name: server: - lib.nameValuePair ("bepasty-server-${name}-gunicorn") ({ + lib.nameValuePair "bepasty-server-${name}-gunicorn" { description = "Bepasty Server ${name}"; wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; @@ -186,7 +186,7 @@ in -k gevent ''; }; - }) + } ) cfg.servers; users.users.${user} = { diff --git a/nixos/modules/services/misc/portunus.nix b/nixos/modules/services/misc/portunus.nix index 0b0718289c8a..700d1a6871bb 100644 --- a/nixos/modules/services/misc/portunus.nix +++ b/nixos/modules/services/misc/portunus.nix @@ -270,9 +270,9 @@ in PORTUNUS_SLAPD_USER = cfg.ldap.user; PORTUNUS_SLAPD_SCHEMA_DIR = "${cfg.ldap.package}/etc/schema"; } - // (lib.optionalAttrs (cfg.seedPath != null) ({ + // (lib.optionalAttrs (cfg.seedPath != null) { PORTUNUS_SEED_PATH = cfg.seedPath; - })) + }) // (lib.optionalAttrs cfg.ldap.tls ( let acmeDirectory = config.security.acme.certs."${cfg.domain}".directory; diff --git a/nixos/modules/services/misc/redlib.nix b/nixos/modules/services/misc/redlib.nix index e3158fbad43a..e5e00adfd6f5 100644 --- a/nixos/modules/services/misc/redlib.nix +++ b/nixos/modules/services/misc/redlib.nix @@ -20,10 +20,10 @@ let cfg = config.services.redlib; - args = concatStringsSep " " ([ + args = concatStringsSep " " [ "--port ${toString cfg.port}" "--address ${cfg.address}" - ]); + ]; boolToString' = b: if b then "on" else "off"; in diff --git a/nixos/modules/services/misc/snapper.nix b/nixos/modules/services/misc/snapper.nix index 8f189b22019d..f4a16f7a4894 100644 --- a/nixos/modules/services/misc/snapper.nix +++ b/nixos/modules/services/misc/snapper.nix @@ -265,11 +265,11 @@ in } // (lib.mapAttrs' ( name: subvolume: - lib.nameValuePair "snapper/configs/${name}" ({ + lib.nameValuePair "snapper/configs/${name}" { text = lib.generators.toKeyValue { inherit mkKeyValue; } ( lib.filterAttrs (k: v: v != defaultOf k) subvolume ); - }) + } ) cfg.configs) // (lib.optionalAttrs (cfg.filters != null) { "snapper/filters/default.txt".text = cfg.filters; }); }; diff --git a/nixos/modules/services/misc/synergy.nix b/nixos/modules/services/misc/synergy.nix index f4f2f22a8b48..e396ccad5494 100644 --- a/nixos/modules/services/misc/synergy.nix +++ b/nixos/modules/services/misc/synergy.nix @@ -129,7 +129,7 @@ in }${ lib.optionalString (cfgS.screenName != "") " -n ${cfgS.screenName}" }${lib.optionalString cfgS.tls.enable " --enable-crypto"}${ - lib.optionalString (cfgS.tls.cert != null) (" --tls-cert ${cfgS.tls.cert}") + lib.optionalString (cfgS.tls.cert != null) " --tls-cert ${cfgS.tls.cert}" }''; serviceConfig.Restart = "on-failure"; }; diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix index 8d73457764ff..bc42740bda44 100644 --- a/nixos/modules/services/monitoring/graphite.nix +++ b/nixos/modules/services/monitoring/graphite.nix @@ -354,7 +354,7 @@ in ]; }) - (lib.mkIf cfg.web.enable ({ + (lib.mkIf cfg.web.enable { systemd.services.graphiteWeb = { description = "Graphite Web Interface"; wantedBy = [ "multi-user.target" ]; @@ -415,7 +415,7 @@ in }; environment.systemPackages = [ pkgs.python3Packages.graphite-web ]; - })) + }) (lib.mkIf cfg.seyren.enable { systemd.services.seyren = { diff --git a/nixos/modules/services/monitoring/prometheus/exporters.nix b/nixos/modules/services/monitoring/prometheus/exporters.nix index 60e4e5ac4d15..a4fa24bdcd5a 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters.nix @@ -344,7 +344,7 @@ let "-m comment --comment ${name}-exporter -j nixos-fw-accept" ]); networking.firewall.extraInputRules = mkIf (conf.openFirewall && nftables) conf.firewallRules; - systemd.services."prometheus-${name}-exporter" = mkMerge ([ + systemd.services."prometheus-${name}-exporter" = mkMerge [ { wantedBy = [ "multi-user.target" ]; after = [ "network.target" ]; @@ -381,14 +381,14 @@ let serviceConfig.UMask = "0077"; } serviceOpts - ]); + ]; }; in { options.services.prometheus.exporters = mkOption { type = types.submodule { - options = (mkSubModules); + options = mkSubModules; imports = [ ../../../misc/assertions.nix (lib.mkRenamedOptionModule [ "unifi-poller" ] [ "unpoller" ]) diff --git a/nixos/modules/services/monitoring/prometheus/exporters/json.nix b/nixos/modules/services/monitoring/prometheus/exporters/json.nix index 46aed2ba4793..07fa980f5bac 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/json.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/json.nix @@ -49,9 +49,9 @@ in For more information, take a look at the official documentation (https://github.com/prometheus-community/json_exporter) of the json_exporter. '') - ({ + { options.warnings = options.warnings; options.assertions = options.assertions; - }) + } ]; } diff --git a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix index ec918e165f5a..089282436041 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/nginx.nix @@ -83,9 +83,9 @@ in (mkRemovedOptionModule [ "insecure" ] '' This option was replaced by 'prometheus.exporters.nginx.sslVerify'. '') - ({ + { options.warnings = options.warnings; options.assertions = options.assertions; - }) + } ]; } diff --git a/nixos/modules/services/monitoring/prometheus/exporters/pgbouncer.nix b/nixos/modules/services/monitoring/prometheus/exporters/pgbouncer.nix index f837174fde7a..4b9cc658bf4a 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/pgbouncer.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/pgbouncer.nix @@ -188,9 +188,9 @@ in into the cmdline of the exporter making the connection string effectively world-readable. '') - ({ + { options.warnings = options.warnings; options.assertions = options.assertions; - }) + } ]; } diff --git a/nixos/modules/services/monitoring/prometheus/exporters/pihole.nix b/nixos/modules/services/monitoring/prometheus/exporters/pihole.nix index f2d37c6b95e6..74e84ab11420 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/pihole.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/pihole.nix @@ -18,10 +18,10 @@ in { imports = [ (mkRemovedOptionModule [ "interval" ] "This option has been removed.") - ({ + { options.warnings = options.warnings; options.assertions = options.assertions; - }) + } ]; port = 9617; diff --git a/nixos/modules/services/monitoring/prometheus/exporters/rspamd.nix b/nixos/modules/services/monitoring/prometheus/exporters/rspamd.nix index 21e03154a88f..de8ba9d676ae 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/rspamd.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/rspamd.nix @@ -111,9 +111,9 @@ in For more information, take a look at the official documentation (https://github.com/prometheus-community/json_exporter) of the json_exporter. '') - ({ + { options.warnings = options.warnings; options.assertions = options.assertions; - }) + } ]; } diff --git a/nixos/modules/services/monitoring/prometheus/exporters/unbound.nix b/nixos/modules/services/monitoring/prometheus/exporters/unbound.nix index 73656b896085..aab30670830a 100644 --- a/nixos/modules/services/monitoring/prometheus/exporters/unbound.nix +++ b/nixos/modules/services/monitoring/prometheus/exporters/unbound.nix @@ -26,10 +26,10 @@ in (mkRemovedOptionModule [ "fetchType" ] "This option was removed, use the `unbound.host` option instead.") - ({ + { options.warnings = options.warnings; options.assertions = options.assertions; - }) + } ]; port = 9167; diff --git a/nixos/modules/services/monitoring/thanos.nix b/nixos/modules/services/monitoring/thanos.nix index 747342384385..550e00040817 100644 --- a/nixos/modules/services/monitoring/thanos.nix +++ b/nixos/modules/services/monitoring/thanos.nix @@ -774,10 +774,8 @@ in }; query-frontend = paramsToOptions params.query-frontend // { - enable = mkEnableOption ( - "the Thanos query frontend implements a service deployed in front of queriers to - improve query parallelization and caching." - ); + enable = mkEnableOption "the Thanos query frontend implements a service deployed in front of queriers to + improve query parallelization and caching."; arguments = mkArgumentsOption "query-frontend"; }; @@ -800,9 +798,7 @@ in }; receive = paramsToOptions params.receive // { - enable = mkEnableOption ( - "the Thanos receiver which accept Prometheus remote write API requests and write to local tsdb" - ); + enable = mkEnableOption "the Thanos receiver which accept Prometheus remote write API requests and write to local tsdb"; arguments = mkArgumentsOption "receive"; }; }; diff --git a/nixos/modules/services/networking/bind.nix b/nixos/modules/services/networking/bind.nix index e8c61ab3f846..bc8934eb8fa1 100644 --- a/nixos/modules/services/networking/bind.nix +++ b/nixos/modules/services/networking/bind.nix @@ -336,7 +336,7 @@ in ConfigurationDirectory = "bind"; ReadWritePaths = [ (lib.mapAttrsToList ( - name: config: if (lib.hasPrefix "/" config.file) then ("-${dirOf config.file}") else "" + name: config: if (lib.hasPrefix "/" config.file) then "-${dirOf config.file}" else "" ) cfg.zones) cfg.directory ]; diff --git a/nixos/modules/services/networking/cjdns.nix b/nixos/modules/services/networking/cjdns.nix index 43ea76d5d710..38cc7e35123f 100644 --- a/nixos/modules/services/networking/cjdns.nix +++ b/nixos/modules/services/networking/cjdns.nix @@ -170,7 +170,7 @@ in ''; }; connectTo = lib.mkOption { - type = lib.types.attrsOf (lib.types.submodule (connectToSubmodule)); + type = lib.types.attrsOf (lib.types.submodule connectToSubmodule); default = { }; example = lib.literalExpression '' { @@ -216,7 +216,7 @@ in }; connectTo = lib.mkOption { - type = lib.types.attrsOf (lib.types.submodule (connectToSubmodule)); + type = lib.types.attrsOf (lib.types.submodule connectToSubmodule); default = { }; example = lib.literalExpression '' { diff --git a/nixos/modules/services/networking/hans.nix b/nixos/modules/services/networking/hans.nix index 82cd3e8a00dd..a0445790ee38 100644 --- a/nixos/modules/services/networking/hans.nix +++ b/nixos/modules/services/networking/hans.nix @@ -37,7 +37,7 @@ in } ''; type = lib.types.attrsOf ( - lib.types.submodule ({ + lib.types.submodule { options = { server = lib.mkOption { type = lib.types.str; @@ -60,7 +60,7 @@ in }; }; - }) + } ); }; diff --git a/nixos/modules/services/networking/hylafax/options.nix b/nixos/modules/services/networking/hylafax/options.nix index d09ad9d463e4..ec7adf5af49f 100644 --- a/nixos/modules/services/networking/hylafax/options.nix +++ b/nixos/modules/services/networking/hylafax/options.nix @@ -54,7 +54,7 @@ let int listOf ; - innerType = coercedTo bool (x: if x then "Yes" else "No") (coercedTo int (toString) str); + innerType = coercedTo bool (x: if x then "Yes" else "No") (coercedTo int toString str); in attrsOf (coercedTo innerType lib.singleton (listOf innerType)); diff --git a/nixos/modules/services/networking/inadyn.nix b/nixos/modules/services/networking/inadyn.nix index 5507c7b0ebc6..384c6932aefa 100644 --- a/nixos/modules/services/networking/inadyn.nix +++ b/nixos/modules/services/networking/inadyn.nix @@ -89,9 +89,9 @@ in }; in { - enable = lib.mkEnableOption ('' + enable = lib.mkEnableOption '' synchronise your machine's IP address with a dynamic DNS provider using inadyn - ''); + ''; user = lib.mkOption { default = "inadyn"; type = lib.types.str; diff --git a/nixos/modules/services/networking/iodine.nix b/nixos/modules/services/networking/iodine.nix index ed3ff28cd5f4..763bce1a905d 100644 --- a/nixos/modules/services/networking/iodine.nix +++ b/nixos/modules/services/networking/iodine.nix @@ -56,7 +56,7 @@ in } ''; type = lib.types.attrsOf ( - lib.types.submodule ({ + lib.types.submodule { options = { server = lib.mkOption { type = lib.types.str; @@ -85,7 +85,7 @@ in description = "Path to a file containing the password."; }; }; - }) + } ); }; diff --git a/nixos/modules/services/networking/nat-iptables.nix b/nixos/modules/services/networking/nat-iptables.nix index 804dc0e0340c..16cd8c4686b5 100644 --- a/nixos/modules/services/networking/nat-iptables.nix +++ b/nixos/modules/services/networking/nat-iptables.nix @@ -219,7 +219,7 @@ in }; config = mkIf (!config.networking.nftables.enable) (mkMerge [ - ({ networking.firewall.extraCommands = mkBefore flushNat; }) + { networking.firewall.extraCommands = mkBefore flushNat; } (mkIf config.networking.nat.enable { networking.firewall = mkIf config.networking.firewall.enable { diff --git a/nixos/modules/services/networking/ncps.nix b/nixos/modules/services/networking/ncps.nix index b0e821fee5b1..ebc3af2cec0f 100644 --- a/nixos/modules/services/networking/ncps.nix +++ b/nixos/modules/services/networking/ncps.nix @@ -347,7 +347,7 @@ in ]; unitConfig.RequiresMountsFor = lib.concatStringsSep " " ( - [ "${cfg.cache.dataPath}" ] ++ lib.optional (isSqlite) dbDir + [ "${cfg.cache.dataPath}" ] ++ lib.optional isSqlite dbDir ); }; }; diff --git a/nixos/modules/services/networking/nylon.nix b/nixos/modules/services/networking/nylon.nix index b9d579a61c1e..e7e4e024f8a2 100644 --- a/nixos/modules/services/networking/nylon.nix +++ b/nixos/modules/services/networking/nylon.nix @@ -160,7 +160,7 @@ in ###### implementation - config = lib.mkIf (lib.length (enabledNylons) > 0) { + config = lib.mkIf (lib.length enabledNylons > 0) { users.users.nylon = { group = "nylon"; diff --git a/nixos/modules/services/networking/pihole-ftl.nix b/nixos/modules/services/networking/pihole-ftl.nix index 25c3634d145e..3840d6fefd12 100644 --- a/nixos/modules/services/networking/pihole-ftl.nix +++ b/nixos/modules/services/networking/pihole-ftl.nix @@ -186,7 +186,7 @@ in }; queryLogDeleter = { - enable = mkEnableOption ("Pi-hole FTL DNS query log deleter"); + enable = mkEnableOption "Pi-hole FTL DNS query log deleter"; age = mkOption { type = types.int; diff --git a/nixos/modules/services/networking/spiped.nix b/nixos/modules/services/networking/spiped.nix index 0be0b445ae6b..723e9296e85f 100644 --- a/nixos/modules/services/networking/spiped.nix +++ b/nixos/modules/services/networking/spiped.nix @@ -21,7 +21,7 @@ in config = mkOption { type = types.attrsOf ( - types.submodule ({ + types.submodule { options = { encrypt = mkOption { type = types.bool; @@ -138,7 +138,7 @@ in description = "Disable target address re-resolution."; }; }; - }) + } ); default = { }; diff --git a/nixos/modules/services/networking/strongswan-swanctl/param-lib.nix b/nixos/modules/services/networking/strongswan-swanctl/param-lib.nix index b8a46d5150bc..4614b4617a4f 100644 --- a/nixos/modules/services/networking/strongswan-swanctl/param-lib.nix +++ b/nixos/modules/services/networking/strongswan-swanctl/param-lib.nix @@ -45,13 +45,13 @@ rec { paramsToRenderedStrings = cfg: ps: filterEmptySets ( - (mapParamsRecursive ( + mapParamsRecursive ( path: name: param: let value = attrByPath path null cfg; in optionalAttrs (value != null) (param.render name value) - ) ps) + ) ps ); filterEmptySets = diff --git a/nixos/modules/services/networking/tinc.nix b/nixos/modules/services/networking/tinc.nix index a26b2af96cd7..e082214b5eca 100644 --- a/nixos/modules/services/networking/tinc.nix +++ b/nixos/modules/services/networking/tinc.nix @@ -376,11 +376,11 @@ in network: data: flip mapAttrs' data.hosts ( host: text: - nameValuePair ("tinc/${network}/hosts/${host}") ({ + nameValuePair "tinc/${network}/hosts/${host}" { mode = "0644"; user = "tinc-${network}"; inherit text; - }) + } ) // { "tinc/${network}/tinc.conf" = { @@ -399,7 +399,7 @@ in systemd.services = flip mapAttrs' cfg.networks ( network: data: - nameValuePair ("tinc.${network}") ( + nameValuePair "tinc.${network}" ( let version = getVersion data.package; in @@ -481,11 +481,11 @@ in users.users = flip mapAttrs' cfg.networks ( network: _: - nameValuePair ("tinc-${network}") ({ + nameValuePair "tinc-${network}" { description = "Tinc daemon user for ${network}"; isSystemUser = true; group = "tinc-${network}"; - }) + } ); users.groups = flip mapAttrs' cfg.networks (network: _: nameValuePair "tinc-${network}" { }); } diff --git a/nixos/modules/services/networking/xinetd.nix b/nixos/modules/services/networking/xinetd.nix index f5d4cbeffabb..71a258fbfee1 100644 --- a/nixos/modules/services/networking/xinetd.nix +++ b/nixos/modules/services/networking/xinetd.nix @@ -65,7 +65,7 @@ in type = with types; - listOf (submodule ({ + listOf (submodule { options = { @@ -130,7 +130,7 @@ in }; - })); + }); }; diff --git a/nixos/modules/services/search/opensearch.nix b/nixos/modules/services/search/opensearch.nix index eb2ec893698e..339ab0699c0e 100644 --- a/nixos/modules/services/search/opensearch.nix +++ b/nixos/modules/services/search/opensearch.nix @@ -263,7 +263,7 @@ in TimeoutStartSec = "infinity"; DynamicUser = usingDefaultUserAndGroup && usingDefaultDataDir; } - // (lib.optionalAttrs (usingDefaultDataDir) { + // (lib.optionalAttrs usingDefaultDataDir { StateDirectory = "opensearch"; StateDirectoryMode = "0700"; }); diff --git a/nixos/modules/services/search/quickwit.nix b/nixos/modules/services/search/quickwit.nix index 4fd74c1543e0..c87225aa3270 100644 --- a/nixos/modules/services/search/quickwit.nix +++ b/nixos/modules/services/search/quickwit.nix @@ -182,7 +182,7 @@ in "@chown" ]; } - // (lib.optionalAttrs (usingDefaultDataDir) { + // (lib.optionalAttrs usingDefaultDataDir { StateDirectory = "quickwit"; StateDirectoryMode = "0700"; }); diff --git a/nixos/modules/services/security/esdm.nix b/nixos/modules/services/security/esdm.nix index fbce62926275..398bd8a08917 100644 --- a/nixos/modules/services/security/esdm.nix +++ b/nixos/modules/services/security/esdm.nix @@ -42,10 +42,10 @@ in config = lib.mkIf cfg.enable ( lib.mkMerge [ - ({ + { systemd.packages = [ cfg.package ]; systemd.services."esdm-server".wantedBy = [ "basic.target" ]; - }) + } # It is necessary to set those options for these services to be started by systemd in NixOS (lib.mkIf cfg.enableLinuxCompatServices { systemd.targets."esdm-linux-compat".wantedBy = [ "basic.target" ]; diff --git a/nixos/modules/services/web-apps/dolibarr.nix b/nixos/modules/services/web-apps/dolibarr.nix index 86b8bd6bc892..1e22847063b2 100644 --- a/nixos/modules/services/web-apps/dolibarr.nix +++ b/nixos/modules/services/web-apps/dolibarr.nix @@ -295,7 +295,7 @@ in services.nginx.virtualHosts."${cfg.domain}" = mkIf (cfg.nginx != null) ( lib.mkMerge [ cfg.nginx - ({ + { root = lib.mkForce "${package}/htdocs"; locations."/".index = "index.php"; locations."~ [^/]\\.php(/|$)" = { @@ -304,7 +304,7 @@ in fastcgi_pass unix:${config.services.phpfpm.pools.dolibarr.socket}; ''; }; - }) + } ] ); diff --git a/nixos/modules/services/web-apps/mastodon.nix b/nixos/modules/services/web-apps/mastodon.nix index 8a197c947a6e..c1582b3ee9ff 100644 --- a/nixos/modules/services/web-apps/mastodon.nix +++ b/nixos/modules/services/web-apps/mastodon.nix @@ -131,10 +131,11 @@ let envFile = pkgs.writeText "mastodon.env" ( lib.concatMapStrings (s: s + "\n") ( - (lib.concatLists ( + lib.concatLists ( lib.mapAttrsToList (name: value: lib.optional (value != null) ''${name}="${toString value}"'') env - )) + ) ) + ); mastodonTootctl = diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index 36640ea8a953..cafa64b29e7a 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -283,7 +283,7 @@ let 'apps_paths' => [ ${lib.concatStrings (lib.mapAttrsToList mkAppStoreConfig appStores)} ], - ${lib.optionalString (showAppStoreSetting) "'appstoreenabled' => ${renderedAppStoreSetting},"} + ${lib.optionalString showAppStoreSetting "'appstoreenabled' => ${renderedAppStoreSetting},"} ${lib.optionalString cfg.caching.apcu "'memcache.local' => '\\OC\\Memcache\\APCu',"} ${lib.optionalString (c.dbname != null) "'dbname' => '${c.dbname}',"} ${lib.optionalString (c.dbhost != null) "'dbhost' => '${c.dbhost}',"} diff --git a/nixos/modules/services/web-apps/nifi.nix b/nixos/modules/services/web-apps/nifi.nix index f4c175a68aa2..7d40e15add13 100644 --- a/nixos/modules/services/web-apps/nifi.nix +++ b/nixos/modules/services/web-apps/nifi.nix @@ -19,10 +19,11 @@ let envFile = pkgs.writeText "nifi.env" ( lib.concatMapStrings (s: s + "\n") ( - (lib.concatLists ( + lib.concatLists ( lib.mapAttrsToList (name: value: lib.optional (value != null) ''${name}="${toString value}"'') env - )) + ) ) + ); nifiEnv = pkgs.writeShellScriptBin "nifi-env" '' diff --git a/nixos/modules/services/web-apps/oncall.nix b/nixos/modules/services/web-apps/oncall.nix index cd842606f278..98ddae259e7a 100644 --- a/nixos/modules/services/web-apps/oncall.nix +++ b/nixos/modules/services/web-apps/oncall.nix @@ -106,10 +106,10 @@ in # Disable debug, only needed for development services.oncall.settings = lib.mkMerge [ - ({ + { debug = lib.mkDefault false; auth.debug = lib.mkDefault false; - }) + } ]; services.uwsgi = { diff --git a/nixos/modules/services/web-apps/peertube.nix b/nixos/modules/services/web-apps/peertube.nix index c4213319e052..24258cdc7a4f 100644 --- a/nixos/modules/services/web-apps/peertube.nix +++ b/nixos/modules/services/web-apps/peertube.nix @@ -70,10 +70,11 @@ let envFile = pkgs.writeText "peertube.env" ( lib.concatMapStrings (s: s + "\n") ( - (lib.concatLists ( + lib.concatLists ( lib.mapAttrsToList (name: value: lib.optional (value != null) ''${name}="${toString value}"'') env - )) + ) ) + ); peertubeEnv = pkgs.writeShellScriptBin "peertube-env" '' diff --git a/nixos/modules/services/web-apps/pixelfed.nix b/nixos/modules/services/web-apps/pixelfed.nix index 0022cbe57ac6..95661ff3852e 100644 --- a/nixos/modules/services/web-apps/pixelfed.nix +++ b/nixos/modules/services/web-apps/pixelfed.nix @@ -243,7 +243,7 @@ in services.redis.servers.pixelfed.enable = lib.mkIf cfg.redis.createLocally true; services.pixelfed.settings = mkMerge [ - ({ + { APP_ENV = mkDefault "production"; APP_DEBUG = mkDefault false; # https://github.com/pixelfed/pixelfed/blob/dev/app/Console/Commands/Installer.php#L312-L316 @@ -270,7 +270,7 @@ in LOG_CHANNEL = mkDefault "stderr"; # TODO: find out the correct syntax? # TRUST_PROXIES = mkDefault "127.0.0.1/8, ::1/128"; - }) + } (mkIf (cfg.redis.createLocally) { BROADCAST_DRIVER = mkDefault "redis"; CACHE_DRIVER = mkDefault "redis"; diff --git a/nixos/modules/services/web-apps/sftpgo.nix b/nixos/modules/services/web-apps/sftpgo.nix index 2a76ccc17977..8f767b85162c 100644 --- a/nixos/modules/services/web-apps/sftpgo.nix +++ b/nixos/modules/services/web-apps/sftpgo.nix @@ -358,7 +358,7 @@ in }; serviceConfig = mkMerge [ - ({ + { Type = "simple"; User = cfg.user; Group = cfg.group; @@ -397,7 +397,7 @@ in "~@privileged" ]; UMask = "0077"; - }) + } (mkIf hasPrivilegedPorts { AmbientCapabilities = "CAP_NET_BIND_SERVICE"; }) diff --git a/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix b/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix index 43b24fdc4a96..1face1eae84b 100644 --- a/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix +++ b/nixos/modules/services/web-servers/apache-httpd/vhost-options.nix @@ -37,7 +37,7 @@ in listen = mkOption { type = with types; - listOf (submodule ({ + listOf (submodule { options = { port = mkOption { type = types.port; @@ -54,7 +54,7 @@ in description = "Whether to enable SSL (https) support."; }; }; - })); + }); default = [ ]; example = [ { diff --git a/nixos/modules/services/web-servers/hitch/default.nix b/nixos/modules/services/web-servers/hitch/default.nix index baec5a34eb56..63c490acf46e 100644 --- a/nixos/modules/services/web-servers/hitch/default.nix +++ b/nixos/modules/services/web-servers/hitch/default.nix @@ -11,11 +11,11 @@ let with lib; pkgs.writeText "hitch.conf" ( concatStringsSep "\n" [ - ("backend = \"${cfg.backend}\"") + "backend = \"${cfg.backend}\"" (concatMapStrings (s: "frontend = \"${s}\"\n") cfg.frontend) (concatMapStrings (s: "pem-file = \"${s}\"\n") cfg.pem-files) - ("ciphers = \"${cfg.ciphers}\"") - ("ocsp-dir = \"${ocspDir}\"") + "ciphers = \"${cfg.ciphers}\"" + "ocsp-dir = \"${ocspDir}\"" "user = \"${cfg.user}\"" "group = \"${cfg.group}\"" cfg.extraConfig diff --git a/nixos/modules/services/web-servers/pomerium.nix b/nixos/modules/services/web-servers/pomerium.nix index e4e9bc2e17a8..f5ed7cf84821 100644 --- a/nixos/modules/services/web-servers/pomerium.nix +++ b/nixos/modules/services/web-servers/pomerium.nix @@ -66,7 +66,7 @@ in cfgFile = if cfg.configFile != null then cfg.configFile else (format.generate "pomerium.yaml" cfg.settings); in - mkIf cfg.enable ({ + mkIf cfg.enable { systemd.services.pomerium = { description = "Pomerium authenticating reverse proxy"; wants = [ @@ -148,5 +148,5 @@ in ExecStart = "/run/current-system/systemd/bin/systemctl --no-block restart pomerium.service"; }; }; - }); + }; } diff --git a/nixos/modules/services/web-servers/ttyd.nix b/nixos/modules/services/web-servers/ttyd.nix index 01baa3b22fa3..eb3c2b918ec2 100644 --- a/nixos/modules/services/web-servers/ttyd.nix +++ b/nixos/modules/services/web-servers/ttyd.nix @@ -77,7 +77,7 @@ in options = { services.ttyd = { - enable = lib.mkEnableOption ("ttyd daemon"); + enable = lib.mkEnableOption "ttyd daemon"; port = mkOption { type = types.port; diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index e90d51b19ffe..9bb6f30e41db 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -770,7 +770,7 @@ in || config.services.displayManager.lemurs.enable ); in - mkIf (default) (mkDefault true); + mkIf default (mkDefault true); services.xserver.videoDrivers = mkIf (cfg.videoDriver != null) [ cfg.videoDriver ]; diff --git a/nixos/modules/system/activation/activation-script.nix b/nixos/modules/system/activation/activation-script.nix index dd3973c8073e..bd83dd72b436 100644 --- a/nixos/modules/system/activation/activation-script.nix +++ b/nixos/modules/system/activation/activation-script.nix @@ -68,7 +68,7 @@ let # Ensure a consistent umask. umask 0022 - ${textClosureMap id (withDrySnippets) (attrNames withDrySnippets)} + ${textClosureMap id withDrySnippets (attrNames withDrySnippets)} '' + optionalString (!onlyDry) '' @@ -220,7 +220,7 @@ in set' = mapAttrs (n: v: if isString v then noDepEntry v else v) set; withHeadlines = addAttributeName set'; in - textClosureMap id (withHeadlines) (attrNames withHeadlines) + textClosureMap id withHeadlines (attrNames withHeadlines) } exit $_status diff --git a/nixos/modules/system/boot/binfmt.nix b/nixos/modules/system/boot/binfmt.nix index 809195667626..5edd09290bbf 100644 --- a/nixos/modules/system/boot/binfmt.nix +++ b/nixos/modules/system/boot/binfmt.nix @@ -403,14 +403,14 @@ in ); systemd = lib.mkMerge [ - ({ + { tmpfiles.rules = [ "d /run/binfmt 0755 -" ] ++ lib.mapAttrsToList (name: interpreter: "L+ /run/binfmt/${name} - - - - ${interpreter}") ( lib.mapAttrs mkInterpreter config.boot.binfmt.registrations ); - }) + } (lib.mkIf (config.boot.binfmt.registrations != { }) { additionalUpstreamSystemUnits = [ diff --git a/nixos/modules/system/boot/clevis.nix b/nixos/modules/system/boot/clevis.nix index afd14f492f4d..6a90f0f4a54f 100644 --- a/nixos/modules/system/boot/clevis.nix +++ b/nixos/modules/system/boot/clevis.nix @@ -28,12 +28,12 @@ in description = "Encrypted devices that need to be unlocked at boot using Clevis"; default = { }; type = lib.types.attrsOf ( - lib.types.submodule ({ + lib.types.submodule { options.secretFile = lib.mkOption { description = "Clevis JWE file used to decrypt the device at boot, in concert with the chosen pin (one of TPM2, Tang server, or SSS)."; type = lib.types.path; }; - }) + } ); }; diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix index 9c9c56f53f90..e611d9040f8b 100644 --- a/nixos/modules/system/boot/luksroot.nix +++ b/nixos/modules/system/boot/luksroot.nix @@ -1249,7 +1249,7 @@ in devicesWithClevis = filterAttrs (device: _: (hasAttr device clevis.devices)) luks.devices; in mkIf (clevis.enable && systemd.enable) ( - (mapAttrs' ( + mapAttrs' ( name: _: nameValuePair "cryptsetup-clevis-${name}" { wantedBy = [ "systemd-cryptsetup@${utils.escapeSystemdPath name}.service" ]; @@ -1281,7 +1281,7 @@ in ExecStop = "${config.boot.initrd.systemd.package.util-linux}/bin/umount /clevis-${name}"; }; } - ) devicesWithClevis) + ) devicesWithClevis ); environment.systemPackages = [ pkgs.cryptsetup ]; diff --git a/nixos/modules/system/boot/networkd.nix b/nixos/modules/system/boot/networkd.nix index 3b36acfde286..2a197362211f 100644 --- a/nixos/modules/system/boot/networkd.nix +++ b/nixos/modules/system/boot/networkd.nix @@ -746,14 +746,14 @@ let "both" "any" ]) - (assertValueOneOf "ActivationPolicy" ([ + (assertValueOneOf "ActivationPolicy" [ "up" "always-up" "manual" "always-down" "down" "bound" - ])) + ]) ]; sectionNetwork = checkUnitConfig "Network" [ diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix index e010181eba13..9c12a21b3f25 100644 --- a/nixos/modules/system/boot/systemd.nix +++ b/nixos/modules/system/boot/systemd.nix @@ -595,7 +595,7 @@ in enabledUnits = filterAttrs (n: v: !elem n cfg.suppressedSystemUnits) cfg.units; in - ({ + { "systemd/system".source = generateUnits { type = "system"; units = enabledUnits; @@ -631,7 +631,7 @@ in "systemd/user-preset/00-nixos.preset".text = '' ignore * ''; - }); + }; services.dbus.enable = true; diff --git a/nixos/modules/system/boot/systemd/sysusers.nix b/nixos/modules/system/boot/systemd/sysusers.nix index 99c55467dce1..c2d8b7cc373e 100644 --- a/nixos/modules/system/boot/systemd/sysusers.nix +++ b/nixos/modules/system/boot/systemd/sysusers.nix @@ -183,9 +183,9 @@ in }; environment.etc = lib.mkMerge [ - ({ + { "sysusers.d".source = sysusersConfig; - }) + } # Statically create the symlinks to immutablePasswordFilesLocation when # using an immutable /etc because we will not be able to do it at diff --git a/nixos/modules/tasks/filesystems/zfs.nix b/nixos/modules/tasks/filesystems/zfs.nix index d070b5a4c0e0..e2a0bf3bd404 100644 --- a/nixos/modules/tasks/filesystems/zfs.nix +++ b/nixos/modules/tasks/filesystems/zfs.nix @@ -235,7 +235,7 @@ let tries=3 success=false while [[ $success != true ]] && [[ $tries -gt 0 ]]; do - ${systemd}/bin/systemd-ask-password ${lib.optionalString cfgZfs.useKeyringForCredentials ("--keyname=zfs-$ds")} --timeout=${toString cfgZfs.passwordTimeout} "Enter key for $ds:" | ${cfgZfs.package}/sbin/zfs load-key "$ds" \ + ${systemd}/bin/systemd-ask-password ${lib.optionalString cfgZfs.useKeyringForCredentials "--keyname=zfs-$ds"} --timeout=${toString cfgZfs.passwordTimeout} "Enter key for $ds:" | ${cfgZfs.package}/sbin/zfs load-key "$ds" \ && success=true \ || tries=$((tries - 1)) done diff --git a/nixos/modules/tasks/lvm.nix b/nixos/modules/tasks/lvm.nix index e507a8c0e121..326fdb36f093 100644 --- a/nixos/modules/tasks/lvm.nix +++ b/nixos/modules/tasks/lvm.nix @@ -49,10 +49,10 @@ in }; config = mkMerge [ - ({ + { # minimal configuration file to make lvmconfig/lvm2-activation-generator happy environment.etc."lvm/lvm.conf".text = "config {}"; - }) + } (mkIf cfg.enable { systemd.tmpfiles.packages = [ cfg.package.out ]; environment.systemPackages = [ cfg.package ]; diff --git a/nixos/modules/tasks/network-interfaces.nix b/nixos/modules/tasks/network-interfaces.nix index 4b7e788bc33b..a88eb8b0ca64 100644 --- a/nixos/modules/tasks/network-interfaces.nix +++ b/nixos/modules/tasks/network-interfaces.nix @@ -476,10 +476,10 @@ let ) ) - ({ + { options.warnings = options.warnings; options.assertions = options.assertions; - }) + } ]; }; diff --git a/nixos/modules/virtualisation/incus.nix b/nixos/modules/virtualisation/incus.nix index 3a97f3993ed2..47483b84872d 100644 --- a/nixos/modules/virtualisation/incus.nix +++ b/nixos/modules/virtualisation/incus.nix @@ -258,10 +258,10 @@ in }; }; - socketActivation = lib.mkEnableOption ('' + socketActivation = lib.mkEnableOption '' socket-activation for starting incus.service. Enabling this option will stop incus.service from starting automatically on boot. - ''); + ''; startTimeout = lib.mkOption { type = lib.types.ints.unsigned; diff --git a/nixos/modules/virtualisation/vmware-host.nix b/nixos/modules/virtualisation/vmware-host.nix index 0a560f7ea3c2..3240201de482 100644 --- a/nixos/modules/virtualisation/vmware-host.nix +++ b/nixos/modules/virtualisation/vmware-host.nix @@ -130,7 +130,7 @@ in # We want to place the tmpdirs for the wrappers to the parent dir. wrapperDir=$(mktemp --directory --tmpdir="${parentWrapperDir}" wrappers.XXXXXXXXXX) chmod a+rx "$wrapperDir" - ${lib.concatStringsSep "\n" (vmwareWrappers)} + ${lib.concatStringsSep "\n" vmwareWrappers} if [ -L ${wrapperDir} ]; then # Atomically replace the symlink # See https://axialcorps.com/2013/07/03/atomically-replacing-files-and-directories/ diff --git a/nixos/tests/cosmic.nix b/nixos/tests/cosmic.nix index 72171982ca5c..d6b67c692d9d 100644 --- a/nixos/tests/cosmic.nix +++ b/nixos/tests/cosmic.nix @@ -69,7 +69,7 @@ #testName: ${testName} '' + ( - if (enableAutologin) then + if enableAutologin then '' with subtest("cosmic-greeter initialisation"): machine.wait_for_unit("graphical.target", timeout=120) diff --git a/nixos/tests/ec2.nix b/nixos/tests/ec2.nix index b83d7e150207..4285a703eee1 100644 --- a/nixos/tests/ec2.nix +++ b/nixos/tests/ec2.nix @@ -33,7 +33,7 @@ let # Needed by nixos-rebuild due to the lack of network # access. Determined by trial and error. - system.extraDependencies = with pkgs; ([ + system.extraDependencies = with pkgs; [ # Needed for a nixos-rebuild. busybox cloud-utils @@ -53,7 +53,7 @@ let apacheHttpd.doc apacheHttpd.man valgrind.doc - ]); + ]; nixpkgs.pkgs = pkgs; } diff --git a/nixos/tests/elk.nix b/nixos/tests/elk.nix index 719480da2e72..48e505f24c7c 100644 --- a/nixos/tests/elk.nix +++ b/nixos/tests/elk.nix @@ -15,7 +15,7 @@ let mkElkTest = name: elk: - import ./make-test-python.nix ({ + import ./make-test-python.nix { inherit name; meta = with pkgs.lib.maintainers; { maintainers = [ @@ -49,7 +49,7 @@ let journalbeat = { enable = elk ? journalbeat; package = elk.journalbeat; - extraConfig = pkgs.lib.mkOptionDefault ('' + extraConfig = pkgs.lib.mkOptionDefault '' logging: to_syslog: true level: warning @@ -59,7 +59,7 @@ let journalbeat.inputs: - paths: [] seek: cursor - ''); + ''; }; filebeat = { @@ -276,7 +276,7 @@ let '! curl --silent --show-error --fail-with-body "${esUrl}/_cat/indices" | grep logstash | grep ^' ) ''; - }) { inherit pkgs system; }; + } { inherit pkgs system; }; in { # We currently only package upstream binaries. diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index e68b8eca5f21..f911c43b0a68 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -669,7 +669,7 @@ let virtualisation.diskImage = "./target.qcow2"; # and the same TPM options - virtualisation.qemu.options = mkIf (clevisTest) [ + virtualisation.qemu.options = mkIf clevisTest [ "-chardev socket,id=chrtpm,path=$NIX_BUILD_TOP/swtpm-sock" "-tpmdev emulator,id=tpm0,chardev=chrtpm" "-device tpm-tis,tpmdev=tpm0" @@ -1064,7 +1064,7 @@ let "echo -n password | zfs create" + " -o encryption=aes-256-gcm -o keyformat=passphrase rpool/root", '' - + optionalString (parentDataset) '' + + optionalString parentDataset '' "echo -n password | zpool create -O mountpoint=none -O encryption=on -O keyformat=passphrase rpool /dev/vda3", "zfs create -o mountpoint=legacy rpool/root", '' @@ -1079,7 +1079,7 @@ let optionalString (!parentDataset) '' boot.initrd.clevis.devices."rpool/root".secretFile = "/etc/nixos/clevis-secret.jwe"; '' - + optionalString (parentDataset) '' + + optionalString parentDataset '' boot.initrd.clevis.devices."rpool".secretFile = "/etc/nixos/clevis-secret.jwe"; '' + '' diff --git a/nixos/tests/iscsi-multipath-root.nix b/nixos/tests/iscsi-multipath-root.nix index 45b1baf40c61..860faa0a32c1 100644 --- a/nixos/tests/iscsi-multipath-root.nix +++ b/nixos/tests/iscsi-multipath-root.nix @@ -150,12 +150,12 @@ in boot.initrd.network.enable = true; boot.loader.grub.enable = false; - boot.kernelParams = lib.mkOverride 5 ([ + boot.kernelParams = lib.mkOverride 5 [ "boot.shell_on_fail" "console=tty1" "ip=192.168.1.1:::255.255.255.0::ens9:none" "ip=192.168.2.1:::255.255.255.0::ens10:none" - ]); + ]; # defaults to true, puts some code in the initrd that tries to mount an overlayfs on /nix/store virtualisation.writableStore = false; diff --git a/nixos/tests/iscsi-root.nix b/nixos/tests/iscsi-root.nix index 9d0b0765b311..c279a0d7e49e 100644 --- a/nixos/tests/iscsi-root.nix +++ b/nixos/tests/iscsi-root.nix @@ -124,11 +124,11 @@ in }: { boot.loader.grub.enable = false; - boot.kernelParams = lib.mkOverride 5 ([ + boot.kernelParams = lib.mkOverride 5 [ "boot.shell_on_fail" "console=tty1" "ip=${config.networking.primaryIPAddress}:::255.255.255.0::eth1:none" - ]); + ]; # defaults to true, puts some code in the initrd that tries to mount an overlayfs on /nix/store virtualisation.writableStore = false; diff --git a/nixos/tests/kafka/base.nix b/nixos/tests/kafka/base.nix index e2d9c9edfa8a..9591cc42d40a 100644 --- a/nixos/tests/kafka/base.nix +++ b/nixos/tests/kafka/base.nix @@ -9,7 +9,7 @@ let kafkaPackage, mode ? "kraft", }: - (import ../make-test-python.nix ({ + (import ../make-test-python.nix { inherit name; meta = with pkgs.lib.maintainers; { maintainers = [ nequissimus ]; @@ -20,7 +20,7 @@ let { ... }: { services.apache-kafka = mkMerge [ - ({ + { enable = true; package = kafkaPackage; settings = { @@ -30,7 +30,7 @@ let "/var/lib/kafka/logdir2" ]; }; - }) + } (mkIf (mode == "zookeeper") { settings = { "zookeeper.session.timeout.ms" = 600000; @@ -113,7 +113,7 @@ let + "--from-beginning --max-messages 1" ) ''; - })); + }); in with pkgs; diff --git a/nixos/tests/lomiri.nix b/nixos/tests/lomiri.nix index 0ac80f0dce38..f018cf269458 100644 --- a/nixos/tests/lomiri.nix +++ b/nixos/tests/lomiri.nix @@ -775,49 +775,49 @@ in ]; details = [ # messages normally has no contents - ({ + { name = "display"; left = 6; ocr = [ "Lock" ]; - }) - ({ + } + { name = "bluetooth"; left = 5; ocr = [ "Bluetooth" ]; - }) - ({ + } + { name = "network"; left = 4; ocr = [ "Flight" "Wi-Fi" ]; - }) - ({ + } + { name = "sound"; left = 3; ocr = [ "Silent" "Volume" ]; - }) - ({ + } + { name = "power"; left = 2; ocr = [ "Charge" "Battery" ]; - }) - ({ + } + { name = "datetime"; left = 1; ocr = [ "Time" "Date" ]; - }) - ({ + } + { name = "session"; left = 0; ocr = [ "Log Out" ]; @@ -827,6 +827,6 @@ in mouse_click(340, 220) # confirm logout machine.wait_until_fails("pgrep -u ${user} -f 'lomiri --mode=full-shell'") ''; - }) + } ]; } diff --git a/nixos/tests/mod_perl.nix b/nixos/tests/mod_perl.nix index 6bcca2b914f4..b7c24b799b0d 100644 --- a/nixos/tests/mod_perl.nix +++ b/nixos/tests/mod_perl.nix @@ -35,7 +35,7 @@ ''; startup = pkgs.writeScript "startup.pl" '' use lib "${inc}", - split ":","${with pkgs.perl.pkgs; makeFullPerlPath ([ mod_perl2 ])}"; + split ":","${with pkgs.perl.pkgs; makeFullPerlPath [ mod_perl2 ]}"; 1; ''; in diff --git a/nixos/tests/nixops/default.nix b/nixos/tests/nixops/default.nix index f389cd0d0b51..13b9d9dfbe07 100644 --- a/nixos/tests/nixops/default.nix +++ b/nixos/tests/nixops/default.nix @@ -23,7 +23,7 @@ let testLegacyNetwork = { nixopsPkg, ... }: - pkgs.testers.nixosTest ({ + pkgs.testers.nixosTest { name = "nixops-legacy-network"; nodes = { deployer = @@ -105,7 +105,7 @@ let deployer_do("cd ~/unicorn; nixops ssh server 'hello | figlet'") ''; - }); + }; inherit (import ../ssh-keys.nix pkgs) snakeOilPrivateKey snakeOilPublicKey; diff --git a/nixos/tests/postgresql/postgresql.nix b/nixos/tests/postgresql/postgresql.nix index ce3fb640ae92..77897143bbdd 100644 --- a/nixos/tests/postgresql/postgresql.nix +++ b/nixos/tests/postgresql/postgresql.nix @@ -15,7 +15,7 @@ let postgresql-clauses = makeEnsureTestFor package; }; - test-sql = pkgs.writeText "postgresql-test" ('' + test-sql = pkgs.writeText "postgresql-test" '' CREATE EXTENSION pgcrypto; -- just to check if lib loading works CREATE TABLE sth ( id int @@ -38,7 +38,7 @@ let } console.log(xs.reduce((acc, x) => acc + x, 0)); $$ LANGUAGE plv8; - ''); + ''; makeTestForWithBackupAll = package: backupAll: diff --git a/nixos/tests/qemu-vm-restrictnetwork.nix b/nixos/tests/qemu-vm-restrictnetwork.nix index 9249f0cc1269..bba3e61beecd 100644 --- a/nixos/tests/qemu-vm-restrictnetwork.nix +++ b/nixos/tests/qemu-vm-restrictnetwork.nix @@ -1,4 +1,4 @@ -import ./make-test-python.nix ({ +import ./make-test-python.nix { name = "qemu-vm-restrictnetwork"; nodes = { @@ -39,4 +39,4 @@ import ./make-test-python.nix ({ unrestricted.succeed("curl -s http://10.0.2.2:8000") restricted.fail("curl -s http://10.0.2.2:8000") ''; -}) +} diff --git a/nixos/tests/spark/default.nix b/nixos/tests/spark/default.nix index 9c6725d460e9..19355ef0dcb7 100644 --- a/nixos/tests/spark/default.nix +++ b/nixos/tests/spark/default.nix @@ -14,7 +14,7 @@ let }; testSparkCluster = { sparkPackage, ... }: - pkgs.testers.nixosTest ({ + pkgs.testers.nixosTest { name = "spark"; nodes = { @@ -56,6 +56,6 @@ let worker.succeed("spark-submit --version | systemd-cat") worker.succeed("spark-submit --master spark://master:7077 --executor-memory 512m --executor-cores 1 /spark_sample.py") ''; - }); + }; in tests diff --git a/pkgs/applications/audio/bucklespring/default.nix b/pkgs/applications/audio/bucklespring/default.nix index e014c75c7bdd..846ded340e16 100644 --- a/pkgs/applications/audio/bucklespring/default.nix +++ b/pkgs/applications/audio/bucklespring/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { openal alure ] - ++ optionals (legacy) [ + ++ optionals legacy [ libXtst libX11 ] diff --git a/pkgs/applications/audio/quodlibet/default.nix b/pkgs/applications/audio/quodlibet/default.nix index c92bb85a6cbd..8d6518a1e323 100644 --- a/pkgs/applications/audio/quodlibet/default.nix +++ b/pkgs/applications/audio/quodlibet/default.nix @@ -95,14 +95,14 @@ python3.pkgs.buildPythonApplication rec { libmodplug libsoup_3 ] - ++ lib.optionals (withXineBackend) [ xine-lib ] - ++ lib.optionals (withGstreamerBackend) ( + ++ lib.optionals withXineBackend [ xine-lib ] + ++ lib.optionals withGstreamerBackend ( with gst_all_1; [ gst-plugins-base gstreamer ] - ++ lib.optionals (withGstPlugins) [ + ++ lib.optionals withGstPlugins [ gst-libav gst-plugins-bad gst-plugins-good diff --git a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-application-framework/package.nix b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-application-framework/package.nix index 4b53e05ffa0d..6630a5e6b6ac 100644 --- a/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-application-framework/package.nix +++ b/pkgs/applications/editors/emacs/elisp-packages/manual-packages/emacs-application-framework/package.nix @@ -51,7 +51,7 @@ let ) ] ++ appOtherDeps; - otherPkgs = builtins.concatLists (otherPackageLists); + otherPkgs = builtins.concatLists otherPackageLists; appsDrv = symlinkJoin { name = "emacs-application-framework-apps"; diff --git a/pkgs/applications/editors/jetbrains/bin/linux.nix b/pkgs/applications/editors/jetbrains/bin/linux.nix index 3d8402e1da0f..14532161233b 100644 --- a/pkgs/applications/editors/jetbrains/bin/linux.nix +++ b/pkgs/applications/editors/jetbrains/bin/linux.nix @@ -94,14 +94,14 @@ lib.makeOverridable mkDerivation ( fi fi echo -Djna.library.path=${ - lib.makeLibraryPath ([ + lib.makeLibraryPath [ libsecret e2fsprogs libnotify # Required for Help -> Collect Logs # in at least rider and goland udev - ]) + ] } >> $vmopts_file ''; diff --git a/pkgs/applications/editors/neovim/tests/default.nix b/pkgs/applications/editors/neovim/tests/default.nix index 06818b5680b3..2f5f9c7b07f8 100644 --- a/pkgs/applications/editors/neovim/tests/default.nix +++ b/pkgs/applications/editors/neovim/tests/default.nix @@ -70,9 +70,9 @@ let (wrapNeovimUnstable neovim-unwrapped { luaRcContent = "this is an invalid lua statement to break the build"; }).overrideAttrs - ({ + { doCheck = true; - }); + }; nvimAutoDisableWrap = makeNeovimConfig { }; @@ -101,10 +101,10 @@ let runTest = neovim-drv: buildCommand: runCommandLocal "test-${neovim-drv.name}" - ({ + { nativeBuildInputs = [ ]; meta.platforms = neovim-drv.meta.platforms; - }) + } ( '' source ${nmt}/bash-lib/assertions.sh @@ -128,7 +128,7 @@ let } ); in -pkgs.recurseIntoAttrs (rec { +pkgs.recurseIntoAttrs rec { inherit nmt; @@ -213,14 +213,14 @@ pkgs.recurseIntoAttrs (rec { wrapRc = true; }); - nvim_with_runtimeDeps = pkgs.neovim.overrideAttrs ({ + nvim_with_runtimeDeps = pkgs.neovim.overrideAttrs { plugins = [ pkgs.vimPlugins.hex-nvim ]; autowrapRuntimeDeps = true; # legacy wrapper sets it to false wrapRc = true; - }); + }; nvim_with_ftplugin = let @@ -424,4 +424,4 @@ pkgs.recurseIntoAttrs (rec { ''; inherit (vimPlugins) corePlugins; -}) +} diff --git a/pkgs/applications/editors/sublime/3/common.nix b/pkgs/applications/editors/sublime/3/common.nix index b427f15aa508..68553f5b96bc 100644 --- a/pkgs/applications/editors/sublime/3/common.nix +++ b/pkgs/applications/editors/sublime/3/common.nix @@ -140,7 +140,7 @@ let ''; }; in -stdenv.mkDerivation ({ +stdenv.mkDerivation { inherit pname; version = buildVersion; @@ -182,4 +182,4 @@ stdenv.mkDerivation ({ "i686-linux" ]; }; -}) +} diff --git a/pkgs/applications/editors/sublime/4/common.nix b/pkgs/applications/editors/sublime/4/common.nix index 89f155373d16..de0e372f393b 100644 --- a/pkgs/applications/editors/sublime/4/common.nix +++ b/pkgs/applications/editors/sublime/4/common.nix @@ -136,7 +136,7 @@ let }; }; in -stdenv.mkDerivation (rec { +stdenv.mkDerivation rec { pname = pnameBase; version = buildVersion; @@ -217,4 +217,4 @@ stdenv.mkDerivation (rec { "x86_64-linux" ]; }; -}) +} diff --git a/pkgs/applications/editors/vim/plugins/utils/vim-utils.nix b/pkgs/applications/editors/vim/plugins/utils/vim-utils.nix index 0f6aa0f404fe..7a416a2b15df 100644 --- a/pkgs/applications/editors/vim/plugins/utils/vim-utils.nix +++ b/pkgs/applications/editors/vim/plugins/utils/vim-utils.nix @@ -472,7 +472,7 @@ rec { let nativePluginsConfigs = lib.attrsets.attrValues packages; nonNativePlugins = (lib.optionals (plug != null) plug.plugins); - nativePlugins = lib.concatMap (requiredPluginsForPackage) nativePluginsConfigs; + nativePlugins = lib.concatMap requiredPluginsForPackage nativePluginsConfigs; in nativePlugins ++ nonNativePlugins; diff --git a/pkgs/applications/editors/vscode/extensions/updateSettings.nix b/pkgs/applications/editors/vscode/extensions/updateSettings.nix index 843bcf4fd270..bff445c31537 100644 --- a/pkgs/applications/editors/vscode/extensions/updateSettings.nix +++ b/pkgs/applications/editors/vscode/extensions/updateSettings.nix @@ -28,7 +28,7 @@ let symlinkFromUserSettingCmd = lib.optionalString symlinkFromUserSetting ''&& mkdir -p "${userSettingsFolder}" && ln -sfv "$(pwd)/${vscodeSettingsFile}" "${userSettingsFolder}/" ''; in -writeShellScriptBin ''vscodeNixUpdate-${lib.removeSuffix ".json" (fileName)}'' ( +writeShellScriptBin ''vscodeNixUpdate-${lib.removeSuffix ".json" fileName}'' ( lib.optionalString (settings != { }) ( if createIfDoesNotExists then '' diff --git a/pkgs/applications/emulators/wine/base.nix b/pkgs/applications/emulators/wine/base.nix index 5323b2e0a88a..9ac68c4ffcea 100644 --- a/pkgs/applications/emulators/wine/base.nix +++ b/pkgs/applications/emulators/wine/base.nix @@ -169,7 +169,7 @@ stdenv.mkDerivation ( pkgs.libdrm ] ++ lib.optionals stdenv.hostPlatform.isDarwin darwinFrameworks - ++ lib.optionals (x11Support) ( + ++ lib.optionals x11Support ( with pkgs.xorg; [ libX11 diff --git a/pkgs/applications/emulators/wine/sources.nix b/pkgs/applications/emulators/wine/sources.nix index c8ca0ec983ab..fada543b6e9d 100644 --- a/pkgs/applications/emulators/wine/sources.nix +++ b/pkgs/applications/emulators/wine/sources.nix @@ -116,7 +116,7 @@ rec { ] ++ patches-binutils-2_44-fix-wine-older-than-10_2; - updateScript = writeShellScript "update-wine-stable" ('' + updateScript = writeShellScript "update-wine-stable" '' ${updateScriptPreamble} major=''${UPDATE_NIX_OLD_VERSION%%.*} latest_stable=$(get_latest_wine_version "$major.0") @@ -128,7 +128,7 @@ rec { fi do_update - ''); + ''; }; unstable = fetchurl rec { diff --git a/pkgs/applications/misc/copyq/default.nix b/pkgs/applications/misc/copyq/default.nix index b6d0aea35080..5d97c06610a3 100644 --- a/pkgs/applications/misc/copyq/default.nix +++ b/pkgs/applications/misc/copyq/default.nix @@ -17,7 +17,7 @@ kdePackages, }: -stdenv.mkDerivation (rec { +stdenv.mkDerivation rec { pname = "CopyQ"; version = "11.0.0"; @@ -63,4 +63,4 @@ stdenv.mkDerivation (rec { platforms = lib.platforms.linux; mainProgram = "copyq"; }; -}) +} diff --git a/pkgs/applications/misc/redshift/default.nix b/pkgs/applications/misc/redshift/default.nix index 8bce3e55b9da..6ac94dc2906b 100644 --- a/pkgs/applications/misc/redshift/default.nix +++ b/pkgs/applications/misc/redshift/default.nix @@ -178,7 +178,7 @@ rec { longDescription = "Gammastep" + lib.removePrefix "Redshift" redshift.meta.longDescription; homepage = "https://gitlab.com/chinstrap/gammastep"; mainProgram = "gammastep"; - maintainers = ([ ]) ++ redshift.meta.maintainers; + maintainers = [ ] ++ redshift.meta.maintainers; }; }; } diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 491da6c1aba0..e9ffcd726d0e 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -645,7 +645,7 @@ let patchShebangs . '' - + lib.optionalString (ungoogled) '' + + lib.optionalString ungoogled '' # Prune binaries (ungoogled only) *before* linking our own binaries: ${ungoogler}/utils/prune_binaries.py . ${ungoogler}/pruning.list || echo "some errors" '' diff --git a/pkgs/applications/networking/browsers/chromium/default.nix b/pkgs/applications/networking/browsers/chromium/default.nix index 58cb30f335ad..c0aaf6369ae1 100644 --- a/pkgs/applications/networking/browsers/chromium/default.nix +++ b/pkgs/applications/networking/browsers/chromium/default.nix @@ -71,7 +71,7 @@ let chromium = rec { inherit stdenv upstream-info; - mkChromiumDerivation = callPackage ./common.nix ({ + mkChromiumDerivation = callPackage ./common.nix { inherit chromiumVersionAtLeast versionRange; inherit proprietaryCodecs @@ -80,7 +80,7 @@ let ungoogled ; gnChromium = buildPackages.gn.override upstream-info.deps.gn; - }); + }; browser = callPackage ./browser.nix { inherit chromiumVersionAtLeast enableWideVine ungoogled; diff --git a/pkgs/applications/networking/gns3/default.nix b/pkgs/applications/networking/gns3/default.nix index d1909d2be4ca..c43315d25a99 100644 --- a/pkgs/applications/networking/gns3/default.nix +++ b/pkgs/applications/networking/gns3/default.nix @@ -6,11 +6,11 @@ let mkGui = args: - callPackage (import ./gui.nix (args)) { + callPackage (import ./gui.nix args) { inherit (libsForQt5) wrapQtAppsHook; }; - mkServer = args: callPackage (import ./server.nix (args)) { }; + mkServer = args: callPackage (import ./server.nix args) { }; in { guiStable = mkGui { diff --git a/pkgs/applications/office/libreoffice/default.nix b/pkgs/applications/office/libreoffice/default.nix index 5c2ad6cd499b..11d1711c0ed7 100644 --- a/pkgs/applications/office/libreoffice/default.nix +++ b/pkgs/applications/office/libreoffice/default.nix @@ -223,13 +223,13 @@ let translations = importVariant "translations.nix"; deps = (importVariant "deps.nix") ++ [ # TODO: Why is this needed? - (rec { + rec { name = "unowinreg.dll"; url = "https://dev-www.libreoffice.org/extern/${md5name}"; sha256 = "1infwvv1p6i21scywrldsxs22f62x85mns4iq8h6vr6vlx3fdzga"; md5 = "185d60944ea767075d27247c3162b3bc"; md5name = "${md5}-${name}"; - }) + } ]; }; srcs = { diff --git a/pkgs/applications/science/electronics/bitscope/common.nix b/pkgs/applications/science/electronics/bitscope/common.nix index 30e7c72a145c..890c4cb653e6 100644 --- a/pkgs/applications/science/electronics/bitscope/common.nix +++ b/pkgs/applications/science/electronics/bitscope/common.nix @@ -24,7 +24,7 @@ let wrapProgram "$out/bin/${binaryName}" \ --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath libPaths}" ''; - pkg = stdenv.mkDerivation (rec { + pkg = stdenv.mkDerivation rec { inherit (attrs) version src; name = "${toolName}-${version}"; @@ -71,7 +71,7 @@ let cp -a usr/* "$out/" ${(wrapBinary libs) attrs.toolName} ''; - }); + }; in buildFHSEnv { pname = attrs.toolName; diff --git a/pkgs/applications/science/electronics/kicad/default.nix b/pkgs/applications/science/electronics/kicad/default.nix index 163902ab15b2..02da48dea1a1 100644 --- a/pkgs/applications/science/electronics/kicad/default.nix +++ b/pkgs/applications/science/electronics/kicad/default.nix @@ -81,9 +81,9 @@ let baseName = - if (testing) then + if testing then "kicad-testing" - else if (stable) then + else if stable then "kicad" else "kicad-unstable"; @@ -186,7 +186,7 @@ stdenv.mkDerivation rec { }; inherit pname; - version = if (stable) then kicadVersion else builtins.substring 0 10 src.src.rev; + version = if stable then kicadVersion else builtins.substring 0 10 src.src.rev; src = base; dontUnpack = true; @@ -195,14 +195,14 @@ stdenv.mkDerivation rec { dontFixup = true; pythonPath = - optionals (withScripting) [ + optionals withScripting [ wxPython python.pkgs.six python.pkgs.requests ] ++ addonsDrvs; - nativeBuildInputs = [ makeWrapper ] ++ optionals (withScripting) [ python.pkgs.wrapPython ]; + nativeBuildInputs = [ makeWrapper ] ++ optionals withScripting [ python.pkgs.wrapPython ]; # KICAD7_TEMPLATE_DIR only works with a single path (it does not handle : separated paths) # but it's used to find both the templates and the symbol/footprint library tables @@ -245,10 +245,10 @@ stdenv.mkDerivation rec { in [ "--set-default NIX_KICAD9_STOCK_DATA_PATH ${stockDataPath}" ] ) - ++ optionals (with3d) [ + ++ optionals with3d [ "--set-default KICAD9_3DMODEL_DIR ${packages3d}/share/kicad/3dmodels" ] - ++ optionals (withNgspice) [ "--prefix LD_LIBRARY_PATH : ${libngspice}/lib" ] + ++ optionals withNgspice [ "--prefix LD_LIBRARY_PATH : ${libngspice}/lib" ] # infinisil's workaround for #39493 ++ [ "--set GDK_PIXBUF_MODULE_FILE ${librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" ]; @@ -278,13 +278,13 @@ stdenv.mkDerivation rec { (concatStringsSep "\n" (flatten [ "runHook preInstall" - (optionalString (withScripting) "buildPythonPath \"${base} $pythonPath\" \n") + (optionalString withScripting "buildPythonPath \"${base} $pythonPath\" \n") # wrap each of the directly usable tools (map ( tool: "makeWrapper ${base}/${bin}/${tool} $out/bin/${tool} $makeWrapperArgs" - + optionalString (withScripting) " --set PYTHONPATH \"$program_PYTHONPATH\"" + + optionalString withScripting " --set PYTHONPATH \"$program_PYTHONPATH\"" ) tools) # link in the CLI utils @@ -312,9 +312,9 @@ stdenv.mkDerivation rec { meta = { description = ( - if (stable) then + if stable then "Open Source Electronics Design Automation suite" - else if (testing) then + else if testing then "Open Source EDA suite, latest on stable branch" else "Open Source EDA suite, latest on master branch" diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index 38502bc20d12..d55fd6fd3c1a 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -164,9 +164,9 @@ mkDerivation rec { if [[ ! "$f" =~ \.zip$ ]]; then '' + lib.concatStrings ( - lib.mapAttrsToList (k: v: ('' + lib.mapAttrsToList (k: v: '' substituteInPlace $f --replace '"${k}"' '"${lib.getBin v}/bin/${k}"' - '')) filters + '') filters ) + '' substituteInPlace $f --replace '"pstotext"' '"${lib.getBin ghostscript}/bin/ps2ascii"' diff --git a/pkgs/applications/version-management/sublime-merge/common.nix b/pkgs/applications/version-management/sublime-merge/common.nix index 0b1d36fc2d99..075244027f29 100644 --- a/pkgs/applications/version-management/sublime-merge/common.nix +++ b/pkgs/applications/version-management/sublime-merge/common.nix @@ -138,7 +138,7 @@ let }; }; in -stdenv.mkDerivation (rec { +stdenv.mkDerivation rec { pname = pnameBase; version = buildVersion; @@ -218,4 +218,4 @@ stdenv.mkDerivation (rec { "x86_64-linux" ]; }; -}) +} diff --git a/pkgs/applications/video/anilibria-winmaclinux/default.nix b/pkgs/applications/video/anilibria-winmaclinux/default.nix index efdbf3946e83..3d5e30808ae2 100644 --- a/pkgs/applications/video/anilibria-winmaclinux/default.nix +++ b/pkgs/applications/video/anilibria-winmaclinux/default.nix @@ -87,7 +87,7 @@ mkDerivation rec { ++ lib.optionals withMPV [ mpv-unwrapped.dev ]; desktopItems = [ - (makeDesktopItem (rec { + (makeDesktopItem rec { name = "AniLibria"; desktopName = name; icon = "anilibria"; @@ -101,7 +101,7 @@ mkDerivation rec { keywords = [ "anime" ]; exec = name; terminal = false; - })) + }) ]; meta = with lib; { diff --git a/pkgs/applications/video/kodi/wrapper.nix b/pkgs/applications/video/kodi/wrapper.nix index 7e7d36a7ba69..f1c4393e01b8 100644 --- a/pkgs/applications/video/kodi/wrapper.nix +++ b/pkgs/applications/video/kodi/wrapper.nix @@ -13,10 +13,10 @@ let # linux distros are supposed to provide pillow and pycryptodome requiredPythonPath = with kodi.pythonPackages; - makePythonPath ([ + makePythonPath [ pillow pycryptodome - ]); + ]; # each kodi addon can potentially export a python module which should be included in PYTHONPATH # see any addon which supplies `passthru.pythonPath` and the corresponding entry in the addons `addon.xml` diff --git a/pkgs/applications/video/mplayer/default.nix b/pkgs/applications/video/mplayer/default.nix index e29b7b34a4f7..24b4f947a99b 100644 --- a/pkgs/applications/video/mplayer/default.nix +++ b/pkgs/applications/video/mplayer/default.nix @@ -216,7 +216,7 @@ stdenv.mkDerivation { ++ lib.optional fribidiSupport "--enable-fribidi" ++ lib.optional (stdenv.hostPlatform.isLinux && !stdenv.hostPlatform.isAarch64) "--enable-vidix" ++ lib.optional stdenv.hostPlatform.isLinux "--enable-fbdev" - ++ lib.optionals (crossBuild) [ + ++ lib.optionals crossBuild [ "--enable-cross-compile" "--disable-vidix-pcidb" "--with-vidix-drivers=no" diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix index 14b78a71a75f..f8f4c285cd15 100644 --- a/pkgs/applications/virtualization/virtualbox/default.nix +++ b/pkgs/applications/virtualization/virtualbox/default.nix @@ -315,7 +315,7 @@ stdenv.mkDerivation (finalAttrs: { ${optionalString (!enable32bitGuests) "--disable-vmmraw"} \ ${optionalString enableWebService "--enable-webservice"} \ ${optionalString (open-watcom-bin != null) "--with-ow-dir=${open-watcom-bin}"} \ - ${optionalString (enableKvm) "--with-kvm"} \ + ${optionalString enableKvm "--with-kvm"} \ ${extraConfigureFlags} \ --disable-kmods sed -e 's@PKG_CONFIG_PATH=.*@PKG_CONFIG_PATH=${glib.dev}/lib/pkgconfig@' \ diff --git a/pkgs/build-support/kernel/make-initrd-ng.nix b/pkgs/build-support/kernel/make-initrd-ng.nix index 35fd66e89db7..0b1db74f0449 100644 --- a/pkgs/build-support/kernel/make-initrd-ng.nix +++ b/pkgs/build-support/kernel/make-initrd-ng.nix @@ -75,7 +75,7 @@ in or (throw "Unrecognised compressor ${_compressorName}, please specify uInitrdCompression"), }: runCommand name - ({ + { compress = "${_compressorExecutable} ${lib.escapeShellArgs _compressorArgsReal}"; passthru = { compressorExecutableFunction = _compressorFunction; @@ -98,7 +98,7 @@ runCommand name cpio ] ++ lib.optional makeUInitrd ubootTools; - }) + } '' mkdir -p ./root/{run,tmp,var/empty} ln -s ../run ./root/var/run diff --git a/pkgs/build-support/make-darwin-bundle/default.nix b/pkgs/build-support/make-darwin-bundle/default.nix index e6ddb4b4198c..a18452274428 100644 --- a/pkgs/build-support/make-darwin-bundle/default.nix +++ b/pkgs/build-support/make-darwin-bundle/default.nix @@ -15,7 +15,7 @@ icon ? "", # Optional icon file. }: -writeShellScript "make-darwin-bundle-${name}" ('' +writeShellScript "make-darwin-bundle-${name}" '' function makeDarwinBundlePhase() { mkdir -p "''${!outputBin}/Applications/${name}.app/Contents/MacOS" mkdir -p "''${!outputBin}/Applications/${name}.app/Contents/Resources" @@ -28,4 +28,4 @@ writeShellScript "make-darwin-bundle-${name}" ('' } appendToVar preDistPhases makeDarwinBundlePhase -'') +'' diff --git a/pkgs/build-support/nix-gitignore/default.nix b/pkgs/build-support/nix-gitignore/default.nix index 60a854225e10..fa9bbc1ca8c4 100644 --- a/pkgs/build-support/nix-gitignore/default.nix +++ b/pkgs/build-support/nix-gitignore/default.nix @@ -92,7 +92,7 @@ rec { let recurse = str: - [ (substring 0 1 str) ] ++ (optionals (str != "") (recurse (substring 1 (stringLength (str)) str))); + [ (substring 0 1 str) ] ++ (optionals (str != "") (recurse (substring 1 (stringLength str) str))); in str: recurse str; chars = s: filter (c: c != "" && !isList c) (splitString s); diff --git a/pkgs/build-support/rust/build-rust-crate/test/brotli-crates.nix b/pkgs/build-support/rust/build-rust-crate/test/brotli-crates.nix index 006045c20604..1155338c2fb1 100644 --- a/pkgs/build-support/rust/build-rust-crate/test/brotli-crates.nix +++ b/pkgs/build-support/rust/build-rust-crate/test/brotli-crates.nix @@ -90,24 +90,24 @@ rec { }; alloc_no_stdlib_1_3_0_features = f: - updateFeatures f ({ + updateFeatures f { alloc_no_stdlib_1_3_0.default = (f.alloc_no_stdlib_1_3_0.default or true); - }) [ ]; + } [ ]; brotli_2_5_0 = { features ? (brotli_2_5_0_features { }), }: brotli_2_5_0_ { - dependencies = mapFeatures features ([ + dependencies = mapFeatures features [ alloc_no_stdlib_1_3_0 brotli_decompressor_1_3_1 - ]); + ]; features = mkFeatures (features.brotli_2_5_0 or { }); }; brotli_2_5_0_features = f: updateFeatures f - (rec { + rec { alloc_no_stdlib_1_3_0.no-stdlib = (f.alloc_no_stdlib_1_3_0.no-stdlib or false) || (brotli_2_5_0.no-stdlib or false) @@ -131,7 +131,7 @@ rec { (f.brotli_decompressor_1_3_1.seccomp or false) || (brotli_2_5_0.seccomp or false) || (f.brotli_2_5_0.seccomp or false); - }) + } [ alloc_no_stdlib_1_3_0_features brotli_decompressor_1_3_1_features @@ -141,12 +141,12 @@ rec { features ? (brotli_decompressor_1_3_1_features { }), }: brotli_decompressor_1_3_1_ { - dependencies = mapFeatures features ([ alloc_no_stdlib_1_3_0 ]); + dependencies = mapFeatures features [ alloc_no_stdlib_1_3_0 ]; features = mkFeatures (features.brotli_decompressor_1_3_1 or { }); }; brotli_decompressor_1_3_1_features = f: - updateFeatures f (rec { + updateFeatures f rec { alloc_no_stdlib_1_3_0.no-stdlib = (f.alloc_no_stdlib_1_3_0.no-stdlib or false) || (brotli_decompressor_1_3_1.no-stdlib or false) @@ -157,5 +157,5 @@ rec { || (brotli_decompressor_1_3_1.unsafe or false) || (f.brotli_decompressor_1_3_1.unsafe or false); brotli_decompressor_1_3_1.default = (f.brotli_decompressor_1_3_1.default or true); - }) [ alloc_no_stdlib_1_3_0_features ]; + } [ alloc_no_stdlib_1_3_0_features ]; } diff --git a/pkgs/build-support/src-only/tests.nix b/pkgs/build-support/src-only/tests.nix index bd6fa6f6ca5a..039fd9eb9bb4 100644 --- a/pkgs/build-support/src-only/tests.nix +++ b/pkgs/build-support/src-only/tests.nix @@ -57,7 +57,7 @@ let ; }; helloDrvSimpleSrc = srcOnly helloDrvSimple; - helloDrvSimpleSrcFreeform = srcOnly ({ + helloDrvSimpleSrcFreeform = srcOnly { inherit (helloDrvSimple) name pname @@ -66,7 +66,7 @@ let patches stdenv ; - }); + }; # Test the issue reported in https://github.com/NixOS/nixpkgs/issues/269539 stdenvAdapterDrv = diff --git a/pkgs/build-support/writers/aliases.nix b/pkgs/build-support/writers/aliases.nix index 09836fbebd44..cf369a34b828 100644 --- a/pkgs/build-support/writers/aliases.nix +++ b/pkgs/build-support/writers/aliases.nix @@ -26,8 +26,8 @@ let ) aliases; in -mapAliases ({ +mapAliases { # Cleanup before 22.05, Added 2021-12-11 writePython2 = "Python 2 is EOL and the use of writers.writePython2 is deprecated."; writePython2Bin = "Python 2 is EOL and the use of writers.writePython2Bin is deprecated."; -}) +} diff --git a/pkgs/by-name/_9/_9base/package.nix b/pkgs/by-name/_9/_9base/package.nix index da3a54fc9206..e4cd519d3aaa 100644 --- a/pkgs/by-name/_9/_9base/package.nix +++ b/pkgs/by-name/_9/_9base/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation { enableParallelBuilding = true; strictDeps = true; nativeBuildInputs = [ pkg-config ]; - env.NIX_CFLAGS_COMPILE = toString ([ + env.NIX_CFLAGS_COMPILE = toString [ # workaround build failure on -fno-common toolchains like upstream # gcc-10. Otherwise build fails as: # ld: diffio.o:(.bss+0x16): multiple definition of `bflag'; diffdir.o:(.bss+0x6): first defined here @@ -51,7 +51,7 @@ stdenv.mkDerivation { "-D_DEFAULT_SOURCE" # error: call to undeclared function 'p9mbtowc'; ISO C99 and later do not support implicit function declarations "-Wno-error=implicit-function-declaration" - ]); + ]; env.LDFLAGS = lib.optionalString enableStatic "-static"; makeFlags = [ "PREFIX=${placeholder "out"}" diff --git a/pkgs/by-name/ac/acpica-tools/package.nix b/pkgs/by-name/ac/acpica-tools/package.nix index 102ffca288aa..15ea53028b0c 100644 --- a/pkgs/by-name/ac/acpica-tools/package.nix +++ b/pkgs/by-name/ac/acpica-tools/package.nix @@ -34,9 +34,9 @@ stdenv.mkDerivation (finalAttrs: { "iasl" ]; - env.NIX_CFLAGS_COMPILE = toString ([ + env.NIX_CFLAGS_COMPILE = toString [ "-O3" - ]); + ]; enableParallelBuilding = true; diff --git a/pkgs/by-name/ap/aprx/package.nix b/pkgs/by-name/ap/aprx/package.nix index 85185873b0ba..6137983e193c 100644 --- a/pkgs/by-name/ap/aprx/package.nix +++ b/pkgs/by-name/ap/aprx/package.nix @@ -18,11 +18,11 @@ stdenv.mkDerivation { nativeBuildInputs = [ perl ]; - env.NIX_CFLAGS_COMPILE = toString ([ + env.NIX_CFLAGS_COMPILE = toString [ "-fcommon" "-O2" "-Wno-implicit-int" # clang, gcc 14 - ]); + ]; configureFlags = [ "--with-erlangstorage" diff --git a/pkgs/by-name/ar/aravis/package.nix b/pkgs/by-name/ar/aravis/package.nix index fa458868a498..886fce3e95f4 100644 --- a/pkgs/by-name/ar/aravis/package.nix +++ b/pkgs/by-name/ar/aravis/package.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { gst-plugins-bad ] ) - ++ lib.optionals (enableViewer) [ gtk3 ]; + ++ lib.optionals enableViewer [ gtk3 ]; mesonFlags = [ ] diff --git a/pkgs/by-name/ar/archi/package.nix b/pkgs/by-name/ar/archi/package.nix index f65360f2afad..bb28256d053e 100644 --- a/pkgs/by-name/ar/archi/package.nix +++ b/pkgs/by-name/ar/archi/package.nix @@ -67,10 +67,10 @@ stdenv.mkDerivation rec { install -D -m755 Archi $out/libexec/Archi makeWrapper $out/libexec/Archi $out/bin/Archi \ --prefix LD_LIBRARY_PATH : ${ - lib.makeLibraryPath ([ + lib.makeLibraryPath [ glib webkitgtk_4_1 - ]) + ] } \ --set WEBKIT_DISABLE_DMABUF_RENDERER 1 \ --prefix PATH : ${jdk}/bin diff --git a/pkgs/by-name/au/auctex/package.nix b/pkgs/by-name/au/auctex/package.nix index 837130e3e697..e1d148e785bc 100644 --- a/pkgs/by-name/au/auctex/package.nix +++ b/pkgs/by-name/au/auctex/package.nix @@ -8,7 +8,7 @@ }: let - auctex = stdenv.mkDerivation (rec { + auctex = stdenv.mkDerivation rec { # Make this a valid tex(live-new) package; # the pkgs attribute is provided with a hack below. pname = "auctex"; @@ -50,7 +50,7 @@ let license = licenses.gpl3Plus; platforms = platforms.unix; }; - }); + }; in auctex // { pkgs = [ auctex.tex ]; } diff --git a/pkgs/by-name/av/avizo/package.nix b/pkgs/by-name/av/avizo/package.nix index e9801ee33570..10c0c6a1d1b2 100644 --- a/pkgs/by-name/av/avizo/package.nix +++ b/pkgs/by-name/av/avizo/package.nix @@ -50,8 +50,8 @@ stdenv.mkDerivation { ]; postInstall = '' - wrapProgram $out/bin/volumectl --suffix PATH : $out/bin:${lib.makeBinPath ([ pamixer ])} - wrapProgram $out/bin/lightctl --suffix PATH : $out/bin:${lib.makeBinPath ([ brightnessctl ])} + wrapProgram $out/bin/volumectl --suffix PATH : $out/bin:${lib.makeBinPath [ pamixer ]} + wrapProgram $out/bin/lightctl --suffix PATH : $out/bin:${lib.makeBinPath [ brightnessctl ]} ''; meta = with lib; { diff --git a/pkgs/by-name/ay/ayatana-indicator-display/package.nix b/pkgs/by-name/ay/ayatana-indicator-display/package.nix index 9e8f69ad607b..18afb05894a3 100644 --- a/pkgs/by-name/ay/ayatana-indicator-display/package.nix +++ b/pkgs/by-name/ay/ayatana-indicator-display/package.nix @@ -77,10 +77,10 @@ stdenv.mkDerivation (finalAttrs: { cmake-extras lomiri-schemas # lomiri schema ]) - ++ ([ + ++ [ mate.marco # marco schema mate.mate-settings-daemon # mate mouse schema - ]); + ]; nativeCheckInputs = [ cppcheck diff --git a/pkgs/by-name/ba/bazel_8/package.nix b/pkgs/by-name/ba/bazel_8/package.nix index b9df5ed26eb1..fedc156f1161 100644 --- a/pkgs/by-name/ba/bazel_8/package.nix +++ b/pkgs/by-name/ba/bazel_8/package.nix @@ -101,7 +101,7 @@ let "--verbose_failures" "--curses=no" ] - ++ lib.optionals (isDarwin) [ + ++ lib.optionals isDarwin [ "--macos_sdk_version=${stdenv.hostPlatform.darwinMinVersion}" "--cxxopt=-isystem" "--cxxopt=${lib.getDev stdenv.cc.libcxx}/include/c++/v1" diff --git a/pkgs/by-name/be/bespokesynth/package.nix b/pkgs/by-name/be/bespokesynth/package.nix index e573d82d95e1..38c057312fb1 100644 --- a/pkgs/by-name/be/bespokesynth/package.nix +++ b/pkgs/by-name/be/bespokesynth/package.nix @@ -150,14 +150,14 @@ stdenv.mkDerivation (finalAttrs: { ''; env.NIX_LDFLAGS = lib.optionalString stdenv.hostPlatform.isLinux "-rpath ${ - lib.makeLibraryPath ([ + lib.makeLibraryPath [ libX11 libXrandr libXinerama libXext libXcursor libXScrnSaver - ]) + ] }"; dontPatchELF = true; # needed or nix will try to optimize the binary by removing "useless" rpath diff --git a/pkgs/by-name/be/beyond-identity/package.nix b/pkgs/by-name/be/beyond-identity/package.nix index b4d99eac4dbe..c28fab441b74 100644 --- a/pkgs/by-name/be/beyond-identity/package.nix +++ b/pkgs/by-name/be/beyond-identity/package.nix @@ -17,7 +17,7 @@ let pname = "beyond-identity"; version = "2.97.0-0"; - libPath = lib.makeLibraryPath ([ + libPath = lib.makeLibraryPath [ glib glibc openssl @@ -26,7 +26,7 @@ let gnome-keyring polkit polkit_gnome - ]); + ]; meta = with lib; { description = "Passwordless MFA identities for workforces, customers, and developers"; homepage = "https://www.beyondidentity.com"; diff --git a/pkgs/by-name/bo/boehmgc/package.nix b/pkgs/by-name/bo/boehmgc/package.nix index 090b08f8bf8b..bb5b68f8eefa 100644 --- a/pkgs/by-name/bo/boehmgc/package.nix +++ b/pkgs/by-name/bo/boehmgc/package.nix @@ -59,12 +59,12 @@ stdenv.mkDerivation (finalAttrs: { # don't forget to disable the fix (and if the next release does # not fix the problem the test failure will be a reminder to # extend the set of versions requiring the workaround). - noSoftVDB = lib.optional (stdenv.hostPlatform.isPower64 && finalAttrs.version == "8.2.8") ( - # do not use /proc primitives to track dirty bits; see: - # https://github.com/bdwgc/bdwgc/issues/479#issuecomment-1279687537 - # https://github.com/bdwgc/bdwgc/blob/54522af853de28f45195044dadfd795c4e5942aa/include/private/gcconfig.h#L741 - "NO_SOFT_VDB" - ); + noSoftVDB = + lib.optional (stdenv.hostPlatform.isPower64 && finalAttrs.version == "8.2.8") + # do not use /proc primitives to track dirty bits; see: + # https://github.com/bdwgc/bdwgc/issues/479#issuecomment-1279687537 + # https://github.com/bdwgc/bdwgc/blob/54522af853de28f45195044dadfd795c4e5942aa/include/private/gcconfig.h#L741 + "NO_SOFT_VDB"; initialMarkStackSizeFlag = lib.optionals (initialMarkStackSize != null) [ "INITIAL_MARK_STACK_SIZE=${toString initialMarkStackSize}" diff --git a/pkgs/by-name/bo/bozohttpd/package.nix b/pkgs/by-name/bo/bozohttpd/package.nix index f36598c62775..b1b3c5407233 100644 --- a/pkgs/by-name/bo/bozohttpd/package.nix +++ b/pkgs/by-name/bo/bozohttpd/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation (finalAttrs: { libxcrypt openssl ] - ++ lib.optionals (luaSupport) [ lua ]; + ++ lib.optionals luaSupport [ lua ]; nativeBuildInputs = [ bmake @@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: { # unpackaged dependency: https://man.netbsd.org/blocklist.3 "-DNO_BLOCKLIST_SUPPORT" ] - ++ lib.optionals (htpasswdSupport) [ "-DDO_HTPASSWD" ] + ++ lib.optionals htpasswdSupport [ "-DDO_HTPASSWD" ] ++ lib.optionals (!cgiSupport) [ "-DNO_CGIBIN_SUPPORT" ] ++ lib.optionals (!dirIndexSupport) [ "-DNO_DIRINDEX_SUPPORT" ] ++ lib.optionals (!dynamicContentSupport) [ "-DNO_DYNAMIC_CONTENT" ] @@ -72,8 +72,8 @@ stdenv.mkDerivation (finalAttrs: { _LDADD = lib.concatStringsSep " " ( [ "-lm" ] ++ lib.optionals (stdenv.hostPlatform.libc != "libSystem") [ "-lcrypt" ] - ++ lib.optionals (luaSupport) [ "-llua" ] - ++ lib.optionals (sslSupport) [ + ++ lib.optionals luaSupport [ "-llua" ] + ++ lib.optionals sslSupport [ "-lcrypto" "-lssl" ] diff --git a/pkgs/by-name/cd/cddl/package.nix b/pkgs/by-name/cd/cddl/package.nix index b58df69e6bf9..07fff5a88702 100644 --- a/pkgs/by-name/cd/cddl/package.nix +++ b/pkgs/by-name/cd/cddl/package.nix @@ -11,7 +11,7 @@ bundlerApp { gemfile = ./Gemfile; lockfile = ./Gemfile.lock; - gemset = lib.recursiveUpdate (import ./gemset.nix) ({ + gemset = lib.recursiveUpdate (import ./gemset.nix) { "cddl" = { dontBuild = false; # setting env vars is not supported by patchShebangs @@ -19,7 +19,7 @@ bundlerApp { sed -i 's\#!/usr/bin/env RUBY_THREAD_VM_STACK_SIZE=5000000\#!/usr/bin/env\' bin/cddl ''; }; - }); + }; exes = [ "cddl" ]; diff --git a/pkgs/by-name/ch/chez-racket/shared.nix b/pkgs/by-name/ch/chez-racket/shared.nix index f68063bf1a7f..5e80c2ff7a5d 100644 --- a/pkgs/by-name/ch/chez-racket/shared.nix +++ b/pkgs/by-name/ch/chez-racket/shared.nix @@ -35,10 +35,10 @@ stdenv.mkDerivation ( export LZ4="$(find ${lz4.lib}/lib -type f | sort | head -n1)" ''; - nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin ([ + nativeBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ cctools darwin.autoSignDarwinBinariesHook - ]); + ]; buildInputs = [ libiconv libX11 diff --git a/pkgs/by-name/co/codd/package.nix b/pkgs/by-name/co/codd/package.nix index cf042055a389..e76ec150994e 100644 --- a/pkgs/by-name/co/codd/package.nix +++ b/pkgs/by-name/co/codd/package.nix @@ -19,7 +19,7 @@ let generated = haskellPackages.callPackage ./generated.nix { haxl = haxlJailbroken; }; - derivationWithVersion = haskell.lib.compose.overrideCabal (rec { + derivationWithVersion = haskell.lib.compose.overrideCabal rec { version = "0.1.6"; src = fetchFromGitHub { owner = "mzabani"; @@ -48,6 +48,6 @@ let changelog = "https://github.com/mzabani/codd/releases/tag/v${version}"; maintainers = with lib.maintainers; [ mzabani ]; - }) generated; + } generated; in haskell.lib.compose.justStaticExecutables derivationWithVersion diff --git a/pkgs/by-name/co/composefs/package.nix b/pkgs/by-name/co/composefs/package.nix index add95896414a..f9de2e88ea75 100644 --- a/pkgs/by-name/co/composefs/package.nix +++ b/pkgs/by-name/co/composefs/package.nix @@ -63,9 +63,9 @@ stdenv.mkDerivation (finalAttrs: { openssl ] ++ lib.optional fuseSupport fuse3 - ++ lib.filter (lib.meta.availableOn stdenv.hostPlatform) ([ + ++ lib.filter (lib.meta.availableOn stdenv.hostPlatform) [ libcap - ]); + ]; doCheck = true; nativeCheckInputs = [ diff --git a/pkgs/by-name/co/connman/package.nix b/pkgs/by-name/co/connman/package.nix index a9aadfe851b1..530daeb8c32c 100644 --- a/pkgs/by-name/co/connman/package.nix +++ b/pkgs/by-name/co/connman/package.nix @@ -114,9 +114,9 @@ stdenv.mkDerivation (finalAttrs: { ] ++ optionals (firewallType == "iptables") [ iptables ] ++ optionals (firewallType == "nftables") [ libnftnl ] - ++ optionals (enableOpenconnect) [ openconnect ] - ++ optionals (enablePolkit) [ polkit ] - ++ optionals (enablePptp) [ + ++ optionals enableOpenconnect [ openconnect ] + ++ optionals enablePolkit [ polkit ] + ++ optionals enablePptp [ pptp ppp ]; diff --git a/pkgs/by-name/cr/cryptopp/package.nix b/pkgs/by-name/cr/cryptopp/package.nix index bb7e856d3cce..866cd5170e82 100644 --- a/pkgs/by-name/cr/cryptopp/package.nix +++ b/pkgs/by-name/cr/cryptopp/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; hardeningDisable = [ "fortify" ]; - CXXFLAGS = lib.optionals (withOpenMP) [ "-fopenmp" ]; + CXXFLAGS = lib.optionals withOpenMP [ "-fopenmp" ]; doCheck = true; diff --git a/pkgs/by-name/da/davix/package.nix b/pkgs/by-name/da/davix/package.nix index 8af041600482..5bdecbd6dff3 100644 --- a/pkgs/by-name/da/davix/package.nix +++ b/pkgs/by-name/da/davix/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { rapidjson ] ++ lib.optional (!stdenv.hostPlatform.isDarwin) libuuid - ++ lib.optional (enableThirdPartyCopy) gsoap; + ++ lib.optional enableThirdPartyCopy gsoap; # using the url below since the github release page states # "please ignore the GitHub-generated tarballs, as they are incomplete" diff --git a/pkgs/by-name/dt/dtrx/package.nix b/pkgs/by-name/dt/dtrx/package.nix index d0c743357174..0ba6669a723a 100644 --- a/pkgs/by-name/dt/dtrx/package.nix +++ b/pkgs/by-name/dt/dtrx/package.nix @@ -50,8 +50,8 @@ python3Packages.buildPythonApplication rec { xz lzip ] - ++ lib.optional (unzipSupport) unzip - ++ lib.optional (unrarSupport) unrar + ++ lib.optional unzipSupport unzip + ++ lib.optional unrarSupport unrar ); in [ diff --git a/pkgs/by-name/ec/eclipse-mat/package.nix b/pkgs/by-name/ec/eclipse-mat/package.nix index 5bbb87b125c5..dc142a000445 100644 --- a/pkgs/by-name/ec/eclipse-mat/package.nix +++ b/pkgs/by-name/ec/eclipse-mat/package.nix @@ -74,12 +74,12 @@ stdenv.mkDerivation rec { makeWrapper $out/mat/MemoryAnalyzer $out/bin/eclipse-mat \ --prefix PATH : ${jdk}/bin \ --prefix LD_LIBRARY_PATH : ${ - lib.makeLibraryPath ([ + lib.makeLibraryPath [ glib gtk3 libXtst webkitgtk_4_1 - ]) + ] } \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \ --add-flags "-configuration \$HOME/.eclipse-mat/''${version}/configuration" diff --git a/pkgs/by-name/ec/ecryptfs/package.nix b/pkgs/by-name/ec/ecryptfs/package.nix index d38fc3e91101..ca7ad28850a1 100644 --- a/pkgs/by-name/ec/ecryptfs/package.nix +++ b/pkgs/by-name/ec/ecryptfs/package.nix @@ -64,14 +64,14 @@ stdenv.mkDerivation rec { intltool ] # if python2 support is requested, it is needed at builtime as well as runtime. - ++ lib.optionals (enablePython) [ python2 ]; + ++ lib.optionals enablePython [ python2 ]; buildInputs = [ perl nss nspr pam ] - ++ lib.optionals (enablePython) [ python2 ]; + ++ lib.optionals enablePython [ python2 ]; propagatedBuildInputs = [ coreutils gettext diff --git a/pkgs/by-name/en/envision/package.nix b/pkgs/by-name/en/envision/package.nix index 60361501033d..3e3c27576298 100644 --- a/pkgs/by-name/en/envision/package.nix +++ b/pkgs/by-name/en/envision/package.nix @@ -22,7 +22,7 @@ buildFHSEnv { stdenv.cc.libc gcc ]) - ++ ( + ++ # OpenHMD dependencies ( pkgs.openhmd.buildInputs @@ -31,12 +31,12 @@ buildFHSEnv { meson ]) ) - ) + ++ ( # OpenComposite dependencies pkgs.opencomposite.buildInputs ++ pkgs.opencomposite.nativeBuildInputs ) - ++ ( + ++ # Monado dependencies ( pkgs.monado.buildInputs @@ -70,10 +70,10 @@ buildFHSEnv { glew ]) ) - ) - ++ ( + + ++ # SteamVR driver dependencies - [ pkgs.zlib ]) + [ pkgs.zlib ] ++ ( # WiVRn dependencies pkgs.wivrn.buildInputs diff --git a/pkgs/by-name/fa/fasthenry/package.nix b/pkgs/by-name/fa/fasthenry/package.nix index 20e2e68afead..aaea2c87ae13 100644 --- a/pkgs/by-name/fa/fasthenry/package.nix +++ b/pkgs/by-name/fa/fasthenry/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://www.fastfieldsolvers.com/fasthenry2.htm"; license = lib.licenses.lgpl2Only; maintainers = with lib.maintainers; [ fbeffa ]; - platforms = with lib.platforms; lib.intersectLists (linux) (x86_64 ++ x86); + platforms = with lib.platforms; lib.intersectLists linux (x86_64 ++ x86); mainProgram = "fasthenry"; }; }) diff --git a/pkgs/by-name/ff/fff/package.nix b/pkgs/by-name/ff/fff/package.nix index 3ffc8ac9f6e7..c55e9555fbe2 100644 --- a/pkgs/by-name/ff/fff/package.nix +++ b/pkgs/by-name/ff/fff/package.nix @@ -22,13 +22,13 @@ stdenv.mkDerivation rec { sha256 = "14ymdw6l6phnil0xf1frd5kgznaiwppcic0v4hb61s1zpf4wrshg"; }; - pathAdd = lib.makeSearchPath "bin" ([ + pathAdd = lib.makeSearchPath "bin" [ xdg-utils file coreutils w3m xdotool - ]); + ]; nativeBuildInputs = [ makeWrapper ]; buildInputs = [ bashInteractive ]; diff --git a/pkgs/by-name/fl/flashprog/package.nix b/pkgs/by-name/fl/flashprog/package.nix index a43e3301ef72..0f553884e3e2 100644 --- a/pkgs/by-name/fl/flashprog/package.nix +++ b/pkgs/by-name/fl/flashprog/package.nix @@ -38,10 +38,10 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ pciutils ] - ++ lib.optionals (withJlink) [ + ++ lib.optionals withJlink [ libjaylink ] - ++ lib.optionals (withGpio) [ + ++ lib.optionals withGpio [ libgpiod ]; diff --git a/pkgs/by-name/gn/gnss-sdr/package.nix b/pkgs/by-name/gn/gnss-sdr/package.nix index b1eddee05f54..eb8de09e83a6 100644 --- a/pkgs/by-name/gn/gnss-sdr/package.nix +++ b/pkgs/by-name/gn/gnss-sdr/package.nix @@ -69,7 +69,7 @@ gnuradio.pkgs.mkDerivation rec { ++ lib.optionals (gnuradio.hasFeature "gr-uhd") [ gnuradio.unwrapped.uhd ] - ++ lib.optionals (enableRawUdp) [ + ++ lib.optionals enableRawUdp [ libpcap ] ++ lib.optionals (gnuradio.hasFeature "gr-ctrlport") [ @@ -82,7 +82,7 @@ gnuradio.pkgs.mkDerivation rec { ++ lib.optionals (gnuradio.hasFeature "gr-pdu") [ gnuradio.unwrapped.libad9361 ] - ++ lib.optionals (enableOsmosdr) [ + ++ lib.optionals enableOsmosdr [ gnuradio.pkgs.osmosdr ]; diff --git a/pkgs/by-name/go/google-cloud-sdk/package.nix b/pkgs/by-name/go/google-cloud-sdk/package.nix index d4fbf411c516..1d37ebf1c416 100644 --- a/pkgs/by-name/go/google-cloud-sdk/package.nix +++ b/pkgs/by-name/go/google-cloud-sdk/package.nix @@ -52,8 +52,8 @@ let crcmod grpcio ] - ++ lib.optional (with-gce) google-compute-engine - ++ lib.optional (with-numpy) numpy + ++ lib.optional with-gce google-compute-engine + ++ lib.optional with-numpy numpy ); data = import ./data.nix { }; diff --git a/pkgs/by-name/gy/gyroflow/package.nix b/pkgs/by-name/gy/gyroflow/package.nix index 89a73b349701..d9fa5ab9cd43 100644 --- a/pkgs/by-name/gy/gyroflow/package.nix +++ b/pkgs/by-name/gy/gyroflow/package.nix @@ -119,7 +119,7 @@ rustPlatform.buildRustPackage rec { ''; desktopItems = [ - (makeDesktopItem ({ + (makeDesktopItem { name = "gyroflow"; desktopName = "Gyroflow"; genericName = "Video stabilization using gyroscope data"; @@ -137,7 +137,7 @@ rustPlatform.buildRustPackage rec { startupNotify = true; startupWMClass = "gyroflow"; prefersNonDefaultGPU = true; - })) + }) ]; meta = { diff --git a/pkgs/by-name/he/headphones-toolbox/package.nix b/pkgs/by-name/he/headphones-toolbox/package.nix index d318822b69e2..d5e6b9565523 100644 --- a/pkgs/by-name/he/headphones-toolbox/package.nix +++ b/pkgs/by-name/he/headphones-toolbox/package.nix @@ -12,7 +12,7 @@ yarnConfigHook, }: -rustPlatform.buildRustPackage (rec { +rustPlatform.buildRustPackage rec { pname = "headphones-toolbox"; version = "0.0.7"; tag = "test-tauri-v2-2"; @@ -57,4 +57,4 @@ rustPlatform.buildRustPackage (rec { ]; platforms = lib.platforms.linux; }; -}) +} diff --git a/pkgs/by-name/hy/hyperscan/package.nix b/pkgs/by-name/hy/hyperscan/package.nix index 0b1e5cf5db0f..faf7de95740b 100644 --- a/pkgs/by-name/hy/hyperscan/package.nix +++ b/pkgs/by-name/hy/hyperscan/package.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: { "-DBUILD_AVX512=ON" ] ++ lib.optional (!stdenv.hostPlatform.isDarwin) "-DFAT_RUNTIME=ON" - ++ lib.optional (withStatic) "-DBUILD_STATIC_AND_SHARED=ON" + ++ lib.optional withStatic "-DBUILD_STATIC_AND_SHARED=ON" ++ lib.optional (!withStatic) "-DBUILD_SHARED_LIBS=ON"; # hyperscan CMake is completely broken for chimera builds when pcre is compiled diff --git a/pkgs/by-name/im/immersed/package.nix b/pkgs/by-name/im/immersed/package.nix index 21c27be50905..28a5a97f5546 100644 --- a/pkgs/by-name/im/immersed/package.nix +++ b/pkgs/by-name/im/immersed/package.nix @@ -9,7 +9,7 @@ let pname = "immersed"; version = "10.9.0"; - sources = lib.mapAttrs (_: fetchurl) (rec { + sources = lib.mapAttrs (_: fetchurl) rec { x86_64-linux = { url = "https://web.archive.org/web/20250725134919if_/https://static.immersed.com/dl/Immersed-x86_64.AppImage"; hash = "sha256-plGcvZRpV+nhQ4FoYiIuLmyOg/SHJ8ZjT4Fh6UyH9W0="; @@ -23,7 +23,7 @@ let hash = "sha256-lmSkatB75Bztm19aCC50qrd/NV+HQX9nBMOTxIguaqI="; }; aarch64-darwin = x86_64-darwin; - }); + }; src = sources.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}"); diff --git a/pkgs/by-name/ji/jitsi/package.nix b/pkgs/by-name/ji/jitsi/package.nix index e7e9fb24143f..c7d2a47b77e6 100644 --- a/pkgs/by-name/ji/jitsi/package.nix +++ b/pkgs/by-name/ji/jitsi/package.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { categories = [ "Chat" ]; }; - libPath = lib.makeLibraryPath ([ + libPath = lib.makeLibraryPath [ stdenv.cc.cc # For libstdc++. alsa-lib dbus @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { xorg.libXext xorg.libXScrnSaver xorg.libXv - ]); + ]; nativeBuildInputs = [ unzip ]; buildInputs = [ diff --git a/pkgs/by-name/ki/kingstvis/package.nix b/pkgs/by-name/ki/kingstvis/package.nix index 285bbe0cc960..e5d310405a49 100644 --- a/pkgs/by-name/ki/kingstvis/package.nix +++ b/pkgs/by-name/ki/kingstvis/package.nix @@ -24,7 +24,7 @@ in buildFHSEnv { inherit pname version; - targetPkgs = pkgs: ([ + targetPkgs = pkgs: [ dbus fontconfig freetype @@ -39,7 +39,7 @@ buildFHSEnv { xorg.libXrender xorg.libxcb zlib - ]); + ]; extraInstallCommands = '' install -Dvm644 ${src}/Driver/99-Kingst.rules \ diff --git a/pkgs/by-name/kv/kvmtool/package.nix b/pkgs/by-name/kv/kvmtool/package.nix index e9b32618a57d..ff5cdd1aec77 100644 --- a/pkgs/by-name/kv/kvmtool/package.nix +++ b/pkgs/by-name/kv/kvmtool/package.nix @@ -26,9 +26,9 @@ stdenv.mkDerivation { "CROSS_COMPILE=${stdenv.cc.targetPrefix}" "ARCH=${stdenv.hostPlatform.linuxArch}" ] - ++ lib.optionals stdenv.hostPlatform.isAarch64 ([ + ++ lib.optionals stdenv.hostPlatform.isAarch64 [ "LIBFDT_DIR=${dtc}/lib" - ]); + ]; meta = with lib; { description = "Lightweight tool for hosting KVM guests"; diff --git a/pkgs/by-name/ld/ldid/package.nix b/pkgs/by-name/ld/ldid/package.nix index 5dcd0622db0b..82e4ded896f5 100644 --- a/pkgs/by-name/ld/ldid/package.nix +++ b/pkgs/by-name/ld/ldid/package.nix @@ -25,10 +25,10 @@ stdenv.mkDerivation (finalAttrs: { openssl ]; - env.NIX_LDFLAGS = toString ([ + env.NIX_LDFLAGS = toString [ "-lcrypto" "-lplist-2.0" - ]); + ]; buildPhase = '' runHook preBuild diff --git a/pkgs/by-name/li/libev/package.nix b/pkgs/by-name/li/libev/package.nix index 017d11322559..cf0f426f96b2 100644 --- a/pkgs/by-name/li/libev/package.nix +++ b/pkgs/by-name/li/libev/package.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ updateAutotoolsGnuConfigScriptsHook ]; - configureFlags = lib.optional (static) "LDFLAGS=-static"; + configureFlags = lib.optional static "LDFLAGS=-static"; meta = { description = "High-performance event loop/event model with lots of features"; diff --git a/pkgs/by-name/li/libnl/package.nix b/pkgs/by-name/li/libnl/package.nix index 2038f109726f..20e8ea5313de 100644 --- a/pkgs/by-name/li/libnl/package.nix +++ b/pkgs/by-name/li/libnl/package.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { ] ++ lib.optional pythonSupport swig; - postBuild = lib.optionalString (pythonSupport) '' + postBuild = lib.optionalString pythonSupport '' cd python ${python.pythonOnBuildForHost.interpreter} setup.py install --prefix=../pythonlib cd - diff --git a/pkgs/by-name/li/libomxil-bellagio/package.nix b/pkgs/by-name/li/libomxil-bellagio/package.nix index 936d70f32787..7b87b9122284 100644 --- a/pkgs/by-name/li/libomxil-bellagio/package.nix +++ b/pkgs/by-name/li/libomxil-bellagio/package.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { let isLLVM17 = stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17"; in - "-Wno-error=absolute-value -Wno-error=enum-conversion -Wno-error=logical-not-parentheses -Wno-error=non-literal-null-conversion${lib.optionalString (isLLVM17) " -Wno-error=unused-but-set-variable"}"; + "-Wno-error=absolute-value -Wno-error=enum-conversion -Wno-error=logical-not-parentheses -Wno-error=non-literal-null-conversion${lib.optionalString isLLVM17 " -Wno-error=unused-but-set-variable"}"; meta = with lib; { homepage = "https://omxil.sourceforge.net/"; diff --git a/pkgs/by-name/li/libusb1/package.nix b/pkgs/by-name/li/libusb1/package.nix index 168c970b7bf2..102eb5a23804 100644 --- a/pkgs/by-name/li/libusb1/package.nix +++ b/pkgs/by-name/li/libusb1/package.nix @@ -48,8 +48,7 @@ stdenv.mkDerivation rec { dontAddDisableDepTrack = stdenv.hostPlatform.isWindows; configureFlags = - lib.optional (!enableUdev) "--disable-udev" - ++ lib.optional (withExamples) "--enable-examples-build"; + lib.optional (!enableUdev) "--disable-udev" ++ lib.optional withExamples "--enable-examples-build"; postBuild = lib.optionalString withDocs '' make -C doc diff --git a/pkgs/by-name/li/limo/package.nix b/pkgs/by-name/li/limo/package.nix index d6ee2077b721..c466fb435c79 100644 --- a/pkgs/by-name/li/limo/package.nix +++ b/pkgs/by-name/li/limo/package.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation (finalAttrs: { cmakeFlags = [ (lib.cmakeFeature "LIMO_INSTALL_PREFIX" (placeholder "out")) ] - ++ lib.optionals (withUnrar) [ + ++ lib.optionals withUnrar [ (lib.cmakeBool "USE_SYSTEM_LIBUNRAR" true) ] ++ lib.optionals (!withUnrar) [ diff --git a/pkgs/by-name/ma/mattermost/build-plugin.nix b/pkgs/by-name/ma/mattermost/build-plugin.nix index 8dd89211e2e2..730ded413609 100644 --- a/pkgs/by-name/ma/mattermost/build-plugin.nix +++ b/pkgs/by-name/ma/mattermost/build-plugin.nix @@ -53,7 +53,7 @@ let ${lib.getExe golangci-lint} "$@" result=$? echo "golangci-lint returned: $result" >&2 - ${lib.optionalString (ignoreGoLintWarnings) '' + ${lib.optionalString ignoreGoLintWarnings '' if [ $result != 0 ]; then cat <&2 Ignoring return value since ignoreGoLintWarnings was true. diff --git a/pkgs/by-name/me/mepo/package.nix b/pkgs/by-name/me/mepo/package.nix index d4c5b407281e..074ba71d7cdb 100644 --- a/pkgs/by-name/me/mepo/package.nix +++ b/pkgs/by-name/me/mepo/package.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation (finalAttrs: { for program in $out/bin/* ; do wrapProgram $program \ --suffix PATH : $out/bin:${ - lib.makeBinPath ([ + lib.makeBinPath [ busybox curl gpsd @@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { util-linux xwininfo zenity - ]) + ] } done ''; diff --git a/pkgs/by-name/mu/mupdf/package.nix b/pkgs/by-name/mu/mupdf/package.nix index 5ae579c54aaa..97a5c42ab113 100644 --- a/pkgs/by-name/mu/mupdf/package.nix +++ b/pkgs/by-name/mu/mupdf/package.nix @@ -101,8 +101,8 @@ stdenv.mkDerivation rec { ] ++ lib.optionals (!enableX11) [ "HAVE_X11=no" ] ++ lib.optionals (!enableGL) [ "HAVE_GLUT=no" ] - ++ lib.optionals (enableOcr) [ "USE_TESSERACT=yes" ] - ++ lib.optionals (enableBarcode) [ + ++ lib.optionals enableOcr [ "USE_TESSERACT=yes" ] + ++ lib.optionals enableBarcode [ "barcode=yes" "USE_SYSTEM_ZXINGCPP=no" ]; @@ -118,7 +118,7 @@ stdenv.mkDerivation rec { ps.libclang ])) ] - ++ lib.optionals (enablePython) [ + ++ lib.optionals enablePython [ which swig ] @@ -169,7 +169,7 @@ stdenv.mkDerivation rec { postBuild = lib.optionalString (enableCxx || enablePython) '' for dir in build/*; do - ./scripts/mupdfwrap.py -d "$dir" -b ${lib.optionalString (enableCxx) "01"}${lib.optionalString (enablePython) "23"} + ./scripts/mupdfwrap.py -d "$dir" -b ${lib.optionalString enableCxx "01"}${lib.optionalString enablePython "23"} done ''; @@ -239,15 +239,15 @@ stdenv.mkDerivation rec { ln -s "$bin/bin/mupdf-gl" "$bin/bin/mupdf" '' else - lib.optionalString (enableX11) '' + lib.optionalString enableX11 '' ln -s "$bin/bin/mupdf-x11" "$bin/bin/mupdf" '' ) - + (lib.optionalString (enableCxx) '' + + (lib.optionalString enableCxx '' cp platform/c++/include/mupdf/*.h $out/include/mupdf cp build/*/libmupdfcpp.so* $out/lib '') - + (lib.optionalString (enablePython) ( + + (lib.optionalString enablePython ( '' mkdir -p $out/${python3.sitePackages}/mupdf cp build/*/_mupdf.so $out/${python3.sitePackages}/mupdf diff --git a/pkgs/by-name/na/nanopb/runtime.nix b/pkgs/by-name/na/nanopb/runtime.nix index fba88ee37e2c..5b6f419596a8 100644 --- a/pkgs/by-name/na/nanopb/runtime.nix +++ b/pkgs/by-name/na/nanopb/runtime.nix @@ -22,7 +22,7 @@ noStaticAssert, }: -stdenv.mkDerivation ({ +stdenv.mkDerivation { pname = "nanopb-runtime"; inherit src version; @@ -115,4 +115,4 @@ stdenv.mkDerivation ({ "-Dnanopb_BUILD_GENERATOR=OFF" "-Dnanopb_BUILD_RUNTIME=ON" ]; -}) +} diff --git a/pkgs/by-name/ne/neomutt/package.nix b/pkgs/by-name/ne/neomutt/package.nix index 8bea0a768b5f..b70f75ce00c5 100644 --- a/pkgs/by-name/ne/neomutt/package.nix +++ b/pkgs/by-name/ne/neomutt/package.nix @@ -37,9 +37,9 @@ withNotmuch ? true, }: -assert lib.warnIf ( - enableMixmaster -) "Support for mixmaster has been removed from neomutt since the 20241002 release" true; +assert lib.warnIf enableMixmaster + "Support for mixmaster has been removed from neomutt since the 20241002 release" + true; stdenv.mkDerivation (finalAttrs: { pname = "neomutt"; diff --git a/pkgs/by-name/ng/nghttp2/package.nix b/pkgs/by-name/ng/nghttp2/package.nix index 20cabbec1f7a..6163536434a3 100644 --- a/pkgs/by-name/ng/nghttp2/package.nix +++ b/pkgs/by-name/ng/nghttp2/package.nix @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { "man" ]; - nativeBuildInputs = [ pkg-config ] ++ lib.optionals (enableApp) [ installShellFiles ]; + nativeBuildInputs = [ pkg-config ] ++ lib.optionals enableApp [ installShellFiles ]; buildInputs = lib.optionals enableApp [ @@ -70,15 +70,15 @@ stdenv.mkDerivation rec { zlib ] ++ lib.optionals (enableApp && !enableHttp3) [ openssl ] - ++ lib.optionals (enableGetAssets) [ libxml2 ] - ++ lib.optionals (enableHpack) [ jansson ] - ++ lib.optionals (enableJemalloc) [ jemalloc ] - ++ lib.optionals (enableHttp3) [ + ++ lib.optionals enableGetAssets [ libxml2 ] + ++ lib.optionals enableHpack [ jansson ] + ++ lib.optionals enableJemalloc [ jemalloc ] + ++ lib.optionals enableHttp3 [ ngtcp2 nghttp3 quictls ] - ++ lib.optionals (enablePython) [ python3 ]; + ++ lib.optionals enablePython [ python3 ]; enableParallelBuilding = true; @@ -90,11 +90,11 @@ stdenv.mkDerivation rec { # Unit tests require CUnit and setting TZDIR environment variable doCheck = enableTests; - nativeCheckInputs = lib.optionals (enableTests) [ + nativeCheckInputs = lib.optionals enableTests [ cunit tzdata ]; - preCheck = lib.optionalString (enableTests) '' + preCheck = lib.optionalString enableTests '' export TZDIR=${tzdata}/share/zoneinfo ''; @@ -105,13 +105,13 @@ stdenv.mkDerivation rec { ''; postInstall = - lib.optionalString (enableApp) '' + lib.optionalString enableApp '' installShellCompletion --bash doc/bash_completion/{h2load,nghttp,nghttpd,nghttpx} '' + lib.optionalString (!enableApp) '' rm -r $out/bin '' - + lib.optionalString (enablePython) '' + + lib.optionalString enablePython '' patchShebangs $out/share/nghttp2 ''; diff --git a/pkgs/by-name/no/notcurses/package.nix b/pkgs/by-name/no/notcurses/package.nix index fb40509ba8e4..e9a430aa226b 100644 --- a/pkgs/by-name/no/notcurses/package.nix +++ b/pkgs/by-name/no/notcurses/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { ++ lib.optional multimediaSupport ffmpeg; cmakeFlags = - lib.optional (qrcodegenSupport) "-DUSE_QRCODEGEN=ON" + lib.optional qrcodegenSupport "-DUSE_QRCODEGEN=ON" ++ lib.optional (!multimediaSupport) "-DUSE_MULTIMEDIA=none"; # https://github.com/dankamongmen/notcurses/issues/2661 diff --git a/pkgs/by-name/oc/octoprint/package.nix b/pkgs/by-name/oc/octoprint/package.nix index 378877086b1b..c9a8bfb49fb5 100644 --- a/pkgs/by-name/oc/octoprint/package.nix +++ b/pkgs/by-name/oc/octoprint/package.nix @@ -15,7 +15,7 @@ let py = python3.override { self = py; - packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) ([ + packageOverrides = lib.foldr lib.composeExtensions (self: super: { }) [ ( self: super: { @@ -239,7 +239,7 @@ let }) (callPackage ./plugins.nix { }) packageOverrides - ]); + ]; }; in with py.pkgs; diff --git a/pkgs/by-name/op/opencascade-occt/package.nix b/pkgs/by-name/op/opencascade-occt/package.nix index 5e0edc8a9ade..d1aa5645ddce 100644 --- a/pkgs/by-name/op/opencascade-occt/package.nix +++ b/pkgs/by-name/op/opencascade-occt/package.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { passthru = { tests = { - withVtk = opencascade-occt.override ({ withVtk = true; }); + withVtk = opencascade-occt.override { withVtk = true; }; }; }; diff --git a/pkgs/by-name/op/openjpeg/package.nix b/pkgs/by-name/op/openjpeg/package.nix index e747f18bc11d..4e6920fa3d40 100644 --- a/pkgs/by-name/op/openjpeg/package.nix +++ b/pkgs/by-name/op/openjpeg/package.nix @@ -96,7 +96,7 @@ stdenv.mkDerivation rec { curl fcgi ] - ++ lib.optional (jpipLibSupport) jdk; + ++ lib.optional jpipLibSupport jdk; # tests did fail on powerpc64 doCheck = !stdenv.hostPlatform.isPower64 && stdenv.buildPlatform.canExecute stdenv.hostPlatform; diff --git a/pkgs/by-name/pa/part-db/package.nix b/pkgs/by-name/pa/part-db/package.nix index 1d00c12f4228..67fe7e1b0e08 100644 --- a/pkgs/by-name/pa/part-db/package.nix +++ b/pkgs/by-name/pa/part-db/package.nix @@ -16,7 +16,7 @@ let pname = "part-db"; version = "1.14.5"; - srcWithVendor = php.buildComposerProject ({ + srcWithVendor = php.buildComposerProject { inherit pname version; src = fetchFromGitHub { @@ -50,7 +50,7 @@ let cd $out/ php -d memory_limit=256M bin/console cache:warmup ''; - }); + }; in stdenv.mkDerivation (finalAttrs: { inherit pname version; diff --git a/pkgs/by-name/pc/pcsx2/package.nix b/pkgs/by-name/pc/pcsx2/package.nix index 61c2f8adba07..16e9aeabf1f6 100644 --- a/pkgs/by-name/pc/pcsx2/package.nix +++ b/pkgs/by-name/pc/pcsx2/package.nix @@ -120,10 +120,10 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: { qtWrapperArgs = let - libs = lib.makeLibraryPath ([ + libs = lib.makeLibraryPath [ vulkan-loader shaderc - ]); + ]; in [ "--prefix LD_LIBRARY_PATH : ${libs}" ]; diff --git a/pkgs/by-name/pd/pdm/package.nix b/pkgs/by-name/pd/pdm/package.nix index c4f097a2de66..f1372dc8a206 100644 --- a/pkgs/by-name/pd/pdm/package.nix +++ b/pkgs/by-name/pd/pdm/package.nix @@ -20,7 +20,7 @@ let }; }); # pdm requires ...... -> ghostscript-with-X which is AGPL only - matplotlib = super.matplotlib.override ({ enableTk = false; }); + matplotlib = super.matplotlib.override { enableTk = false; }; # pdm requires ...... -> jbig2dec which is AGPL only moto = super.moto.overridePythonAttrs (old: { doCheck = false; diff --git a/pkgs/by-name/po/ponyc/package.nix b/pkgs/by-name/po/ponyc/package.nix index cad398189fb3..d2c126c78aae 100644 --- a/pkgs/by-name/po/ponyc/package.nix +++ b/pkgs/by-name/po/ponyc/package.nix @@ -22,7 +22,7 @@ procps, }: -stdenv.mkDerivation (rec { +stdenv.mkDerivation rec { pname = "ponyc"; version = "0.59.0"; @@ -175,4 +175,4 @@ stdenv.mkDerivation (rec { "aarch64-darwin" ]; }; -}) +} diff --git a/pkgs/by-name/qu/qutebrowser/package.nix b/pkgs/by-name/qu/qutebrowser/package.nix index fc2b940d0f98..e8ee8dc2f6cc 100644 --- a/pkgs/by-name/qu/qutebrowser/package.nix +++ b/pkgs/by-name/qu/qutebrowser/package.nix @@ -145,7 +145,7 @@ python3.pkgs.buildPythonApplication { # avoid persistant warning on starup --set QT_STYLE_OVERRIDE Fusion ${lib.optionalString pipewireSupport ''--prefix LD_LIBRARY_PATH : ${libPath}''} - ${lib.optionalString (enableVulkan) '' + ${lib.optionalString enableVulkan '' --prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ vulkan-loader ]} --set-default QSG_RHI_BACKEND vulkan ''} diff --git a/pkgs/by-name/re/redoflacs/package.nix b/pkgs/by-name/re/redoflacs/package.nix index 3c9dd24957aa..6dc5e5e15536 100644 --- a/pkgs/by-name/re/redoflacs/package.nix +++ b/pkgs/by-name/re/redoflacs/package.nix @@ -39,10 +39,10 @@ stdenv.mkDerivation rec { postFixup = '' wrapProgram $out/bin/redoflacs \ --prefix PATH : ${ - lib.makeBinPath ([ + lib.makeBinPath [ flac sox - ]) + ] } ''; diff --git a/pkgs/by-name/rn/rng-tools/package.nix b/pkgs/by-name/rn/rng-tools/package.nix index cce1b42739c3..66ab63aec361 100644 --- a/pkgs/by-name/rn/rng-tools/package.nix +++ b/pkgs/by-name/rn/rng-tools/package.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { ]; configureFlags = [ - (lib.enableFeature (withJitterEntropy) "jitterentropy") - (lib.withFeature (withNistBeacon) "nistbeacon") - (lib.withFeature (withPkcs11) "pkcs11") - (lib.withFeature (withRtlsdr) "rtlsdr") - (lib.withFeature (withQrypt) "qrypt") + (lib.enableFeature withJitterEntropy "jitterentropy") + (lib.withFeature withNistBeacon "nistbeacon") + (lib.withFeature withPkcs11 "pkcs11") + (lib.withFeature withRtlsdr "rtlsdr") + (lib.withFeature withQrypt "qrypt") ]; buildInputs = [ diff --git a/pkgs/by-name/sa/sage/sage-env.nix b/pkgs/by-name/sa/sage/sage-env.nix index d1f0c104e183..87fb4bd9b54f 100644 --- a/pkgs/by-name/sa/sage/sage-env.nix +++ b/pkgs/by-name/sa/sage/sage-env.nix @@ -60,7 +60,7 @@ assert (!blas.isILP64) && (!lapack.isILP64); let runtimepath = ( - lib.makeBinPath ([ + lib.makeBinPath [ "@sage-local@" "@sage-local@/build" pythonEnv @@ -96,7 +96,7 @@ let lcalc rubiks less # needed to prevent transient test errors until https://github.com/ipython/ipython/pull/11864 is resolved - ]) + ] ); in writeTextFile rec { diff --git a/pkgs/by-name/sc/scopehal-apps/package.nix b/pkgs/by-name/sc/scopehal-apps/package.nix index 4ddd8ddc9fe6..e64f9557db16 100644 --- a/pkgs/by-name/sc/scopehal-apps/package.nix +++ b/pkgs/by-name/sc/scopehal-apps/package.nix @@ -98,7 +98,7 @@ stdenv.mkDerivation { postFixup = lib.optionalString stdenv.hostPlatform.isDarwin '' mv -v $out/bin/ngscopeclient $out/bin/.ngscopeclient-unwrapped makeWrapper $out/bin/.ngscopeclient-unwrapped $out/bin/ngscopeclient \ - --prefix DYLD_LIBRARY_PATH : "${lib.makeLibraryPath ([ vulkan-loader ])}" + --prefix DYLD_LIBRARY_PATH : "${lib.makeLibraryPath [ vulkan-loader ]}" ''; postInstall = lib.optionalString stdenv.hostPlatform.isDarwin '' diff --git a/pkgs/by-name/sh/sharedown/package.nix b/pkgs/by-name/sh/sharedown/package.nix index 155a2f92c284..5d8fa6f1c651 100644 --- a/pkgs/by-name/sh/sharedown/package.nix +++ b/pkgs/by-name/sh/sharedown/package.nix @@ -51,10 +51,10 @@ stdenvNoCC.mkDerivation rec { installPhase = let - binPath = lib.makeBinPath ([ + binPath = lib.makeBinPath [ ffmpeg yt-dlp - ]); + ]; modules = yarn2nix-moretea.mkYarnModules rec { name = "Sharedown-modules-${version}"; diff --git a/pkgs/by-name/sl/sleek-grub-theme/package.nix b/pkgs/by-name/sl/sleek-grub-theme/package.nix index f9814c485842..186993f6fbd2 100644 --- a/pkgs/by-name/sl/sleek-grub-theme/package.nix +++ b/pkgs/by-name/sl/sleek-grub-theme/package.nix @@ -17,12 +17,12 @@ stdenv.mkDerivation { pname = "sleek-grub-theme"; version = "unstable-2024-08-11"; - src = fetchFromGitHub ({ + src = fetchFromGitHub { owner = "sandesh236"; repo = "sleek--themes"; rev = "0c47e645ccc2d72aa165e9d994f9d09f58de9f6d"; hash = "sha256-H4s4CSR8DaH8RT9w40hkguNNcC0U8gHKS2FLt+FApeA="; - }); + }; installPhase = '' runHook preInstall diff --git a/pkgs/by-name/sl/slurm/package.nix b/pkgs/by-name/sl/slurm/package.nix index 96e3ce98b91f..1ed22d4730d0 100644 --- a/pkgs/by-name/sl/slurm/package.nix +++ b/pkgs/by-name/sl/slurm/package.nix @@ -131,7 +131,7 @@ stdenv.mkDerivation (finalAttrs: { "--without-rpath" # Required for configure to pick up the right dlopen path ] ++ (lib.optional (!enableX11) "--disable-x11") - ++ (lib.optional (enableNVML) "--with-nvml"); + ++ (lib.optional enableNVML "--with-nvml"); preConfigure = '' patchShebangs ./doc/html/shtml2html.py diff --git a/pkgs/by-name/sm/smuxi/package.nix b/pkgs/by-name/sm/smuxi/package.nix index 0d17f3e8b8a3..9bb651dfb673 100644 --- a/pkgs/by-name/sm/smuxi/package.nix +++ b/pkgs/by-name/sm/smuxi/package.nix @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { mono stfl ] - ++ lib.optionals (guiSupport) [ + ++ lib.optionals guiSupport [ gtk-sharp-2_0 # loaded at runtime by GTK# gdk-pixbuf diff --git a/pkgs/by-name/su/sundials/package.nix b/pkgs/by-name/su/sundials/package.nix index e1a2a8c0fc85..05e3f972ce15 100644 --- a/pkgs/by-name/su/sundials/package.nix +++ b/pkgs/by-name/su/sundials/package.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { python3 ] ++ - lib.optionals (lapackSupport) + lib.optionals lapackSupport # Check that the same index size is used for both libraries ( assert (blas.isILP64 == lapack.isILP64); @@ -46,18 +46,18 @@ stdenv.mkDerivation rec { ) # KLU support is based on Suitesparse. It is tested upstream according to the # section 1.1.4.2 of INSTALL_GUIDE.pdf found in the source tarball. - ++ lib.optionals (kluSupport) [ + ++ lib.optionals kluSupport [ suitesparse ]; cmakeFlags = [ "-DEXAMPLES_INSTALL_PATH=${placeholder "examples"}/share/examples" ] - ++ lib.optionals (lapackSupport) [ + ++ lib.optionals lapackSupport [ "-DENABLE_LAPACK=ON" "-DLAPACK_LIBRARIES=${lapack}/lib/liblapack${stdenv.hostPlatform.extensions.sharedLibrary}" ] - ++ lib.optionals (kluSupport) [ + ++ lib.optionals kluSupport [ "-DENABLE_KLU=ON" "-DKLU_INCLUDE_DIR=${suitesparse.dev}/include" "-DKLU_LIBRARY_DIR=${suitesparse}/lib" diff --git a/pkgs/by-name/ta/tabby/package.nix b/pkgs/by-name/ta/tabby/package.nix index d46d201117d3..ff1efef04cde 100644 --- a/pkgs/by-name/ta/tabby/package.nix +++ b/pkgs/by-name/ta/tabby/package.nix @@ -106,9 +106,9 @@ let darwinBuildInputs = [ llamaccpPackage ] - ++ optionals stdenv.hostPlatform.isDarwin ([ + ++ optionals stdenv.hostPlatform.isDarwin [ apple-sdk_15 - ]); + ]; cudaBuildInputs = [ llamaccpPackage ]; rocmBuildInputs = [ llamaccpPackage ]; diff --git a/pkgs/by-name/tr/truecrack/package.nix b/pkgs/by-name/tr/truecrack/package.nix index 888ede92cd7d..dc7a9aa2da97 100644 --- a/pkgs/by-name/tr/truecrack/package.nix +++ b/pkgs/by-name/tr/truecrack/package.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation rec { cudaPackages.cuda_cudart ]; - env.NIX_CFLAGS_COMPILE = toString ([ + env.NIX_CFLAGS_COMPILE = toString [ # Workaround build failure on -fno-common toolchains like upstream # gcc-10. Otherwise build fails as: # ld: CpuAes.o:/build/source/src/Crypto/CpuAes.h:1233: multiple definition of @@ -61,7 +61,7 @@ stdenv.mkDerivation rec { # Common/Crypto.c:42:13: error: implicit declaration of function 'cpu_CipherInit'; did you mean 'CipherInit'? [] # https://gitlab.com/kalilinux/packages/truecrack/-/commit/5b0e3a96b747013bded7b33f65bb42be2dbafc86 "-Wno-error=implicit-function-declaration" - ]); + ]; enableParallelBuilding = true; diff --git a/pkgs/by-name/uc/uclibc-ng/package.nix b/pkgs/by-name/uc/uclibc-ng/package.nix index 9863c5d02c22..ad2d6c4fb7c0 100644 --- a/pkgs/by-name/uc/uclibc-ng/package.nix +++ b/pkgs/by-name/uc/uclibc-ng/package.nix @@ -94,7 +94,7 @@ stdenv.mkDerivation (finalAttrs: { "TARGET_ARCH=${stdenv.hostPlatform.linuxArch}" "VERBOSE=1" ] - ++ lib.optionals (isCross) [ + ++ lib.optionals isCross [ "CROSS=${stdenv.cc.targetPrefix}" ]; diff --git a/pkgs/by-name/ud/udig/package.nix b/pkgs/by-name/ud/udig/package.nix index 17696713099a..4837f9fa4eae 100644 --- a/pkgs/by-name/ud/udig/package.nix +++ b/pkgs/by-name/ud/udig/package.nix @@ -57,10 +57,10 @@ let makeWrapper $out/opt/udig/udig.sh $out/bin/udig \ --prefix PATH : ${jre8}/bin \ --prefix LD_LIBRARY_PATH : ${ - lib.makeLibraryPath ([ + lib.makeLibraryPath [ libXtst gdal - ]) + ] } ''; @@ -93,7 +93,7 @@ let mkdir -p $out/Applications/udig cp -R . $out/Applications/udig wrapProgram $out/Applications/udig/udig.app/Contents/MacOS/udig_internal \ - --prefix DYLD_LIBRARY_PATH : ${lib.makeLibraryPath ([ gdal ])} + --prefix DYLD_LIBRARY_PATH : ${lib.makeLibraryPath [ gdal ]} ''; }; in diff --git a/pkgs/by-name/uh/uhd/package.nix b/pkgs/by-name/uh/uhd/package.nix index bbbb36d674f0..2150d13c1787 100644 --- a/pkgs/by-name/uh/uhd/package.nix +++ b/pkgs/by-name/uh/uhd/package.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation (finalAttrs: { python3.pkgs.numpy python3.pkgs.setuptools ] - ++ optionals (enableUtils) [ + ++ optionals enableUtils [ python3.pkgs.requests python3.pkgs.six @@ -168,11 +168,11 @@ stdenv.mkDerivation (finalAttrs: { boost libusb1 ] - ++ optionals (enableExamples) [ + ++ optionals enableExamples [ ncurses ncurses.dev ] - ++ optionals (enableDpdk) [ + ++ optionals enableDpdk [ dpdk ]; diff --git a/pkgs/by-name/vl/vlc-bin/package.nix b/pkgs/by-name/vl/vlc-bin/package.nix index 6aed05b571ca..85e7f1987ac7 100644 --- a/pkgs/by-name/vl/vlc-bin/package.nix +++ b/pkgs/by-name/vl/vlc-bin/package.nix @@ -58,11 +58,12 @@ stdenv.mkDerivation (finalAttrs: { mainProgram = "vlc"; maintainers = with lib.maintainers; [ pcasaretto ]; platforms = lib.systems.inspect.patternLogicalAnd (lib.systems.inspect.patterns.isDarwin) ( - ({ + { "arm64" = lib.systems.inspect.patterns.isAarch64; "intel64" = lib.systems.inspect.patterns.isx86_64; "universal" = lib.systems.inspect.patterns.isDarwin; - }).${variant} + } + .${variant} ); sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; }; diff --git a/pkgs/by-name/vo/voicevox-core/package.nix b/pkgs/by-name/vo/voicevox-core/package.nix index 7b9cbe55c16f..be6f1e0801b7 100644 --- a/pkgs/by-name/vo/voicevox-core/package.nix +++ b/pkgs/by-name/vo/voicevox-core/package.nix @@ -64,12 +64,12 @@ stdenv.mkDerivation (finalAttrs: { homepage = "https://github.com/VOICEVOX/voicevox_core"; license = with lib.licenses; [ mit - ({ + { name = "VOICEVOX Core Library Terms of Use"; url = "https://github.com/VOICEVOX/voicevox_resource/blob/main/core/README.md"; free = false; redistributable = true; - }) + } ]; maintainers = with lib.maintainers; [ tomasajt diff --git a/pkgs/by-name/wi/windmill/package.nix b/pkgs/by-name/wi/windmill/package.nix index 4ec6385e7418..4c7077de83ba 100644 --- a/pkgs/by-name/wi/windmill/package.nix +++ b/pkgs/by-name/wi/windmill/package.nix @@ -239,8 +239,8 @@ rustPlatform.buildRustPackage (finalAttrs: { "web-ui" ]; }) - (./update-librusty.sh) - (./update-ui_builder.sh) + ./update-librusty.sh + ./update-ui_builder.sh ]; meta = { diff --git a/pkgs/by-name/wo/wootility/package.nix b/pkgs/by-name/wo/wootility/package.nix index 9cce172a8c13..1abf4032cb49 100644 --- a/pkgs/by-name/wo/wootility/package.nix +++ b/pkgs/by-name/wo/wootility/package.nix @@ -38,9 +38,9 @@ appimageTools.wrapType2 { ''; extraPkgs = - pkgs: with pkgs; ([ + pkgs: with pkgs; [ xorg.libxkbfile - ]); + ]; meta = { homepage = "https://wooting.io/wootility"; diff --git a/pkgs/by-name/x2/x265/package.nix b/pkgs/by-name/x2/x265/package.nix index 54c93e9d7b69..c34f5773d0e7 100644 --- a/pkgs/by-name/x2/x265/package.nix +++ b/pkgs/by-name/x2/x265/package.nix @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { cmake nasm ] - ++ lib.optionals (numaSupport) [ numactl ]; + ++ lib.optionals numaSupport [ numactl ]; cmakeFlags = [ "-DENABLE_ALPHA=ON" diff --git a/pkgs/by-name/ya/yambar/package.nix b/pkgs/by-name/ya/yambar/package.nix index fa1e99a3fc03..f25a80b9205d 100644 --- a/pkgs/by-name/ya/yambar/package.nix +++ b/pkgs/by-name/ya/yambar/package.nix @@ -71,11 +71,11 @@ stdenv.mkDerivation (finalAttrs: { tllist udev ] - ++ lib.optionals (waylandSupport) [ + ++ lib.optionals waylandSupport [ wayland wayland-protocols ] - ++ lib.optionals (x11Support) [ + ++ lib.optionals x11Support [ xcbutil xcbutilcursor xcbutilerrors diff --git a/pkgs/by-name/yo/yosys/package.nix b/pkgs/by-name/yo/yosys/package.nix index de1b7f3f5227..477b3cebdfa4 100644 --- a/pkgs/by-name/yo/yosys/package.nix +++ b/pkgs/by-name/yo/yosys/package.nix @@ -82,7 +82,7 @@ let bluespec = yosys-bluespec; ghdl = yosys-ghdl; } - // (yosys-symbiflow); + // yosys-symbiflow; in stdenv.mkDerivation (finalAttrs: { diff --git a/pkgs/by-name/zf/zfp/package.nix b/pkgs/by-name/zf/zfp/package.nix index 91bfc3f1b64c..a4aee973dd84 100644 --- a/pkgs/by-name/zf/zfp/package.nix +++ b/pkgs/by-name/zf/zfp/package.nix @@ -65,7 +65,7 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optional enableFortran "-DBUILD_ZFORP=ON" ++ lib.optional enableOpenMP "-DZFP_WITH_OPENMP=ON" ++ lib.optional enablePython "-DBUILD_ZFPY=ON" - ++ ([ "-DBUILD_UTILITIES=${if enableUtilities then "ON" else "OFF"}" ]); + ++ [ "-DBUILD_UTILITIES=${if enableUtilities then "ON" else "OFF"}" ]; doCheck = true; diff --git a/pkgs/by-name/zx/zxtune/package.nix b/pkgs/by-name/zx/zxtune/package.nix index 28ab7abb556f..9435ae3f01f8 100644 --- a/pkgs/by-name/zx/zxtune/package.nix +++ b/pkgs/by-name/zx/zxtune/package.nix @@ -45,7 +45,7 @@ let boost zlib ] - ++ lib.optional withQt (if (supportWayland) then qt5.qtwayland else qt5.qtbase); + ++ lib.optional withQt (if supportWayland then qt5.qtwayland else qt5.qtbase); in stdenv.mkDerivation rec { pname = "zxtune"; @@ -89,7 +89,7 @@ stdenv.mkDerivation rec { buildPhase = let - setOptionalSupport = name: var: "support_${name}=" + (if (var) then "1" else ""); + setOptionalSupport = name: var: "support_${name}=" + (if var then "1" else ""); makeOptsCommon = [ ''-j$NIX_BUILD_CORES'' ''root.version=${src.rev}'' diff --git a/pkgs/desktops/gnome/extensions/default.nix b/pkgs/desktops/gnome/extensions/default.nix index c952ca8d04d7..2677cead4ac7 100644 --- a/pkgs/desktops/gnome/extensions/default.nix +++ b/pkgs/desktops/gnome/extensions/default.nix @@ -85,7 +85,7 @@ rec { (extensions: extensions // (import ./manuallyPackaged.nix { inherit callPackage; })) # Map the extension UUIDs to readable names (lib.attrValues) - (mapReadableNames) + mapReadableNames # Add some aliases ( extensions: diff --git a/pkgs/desktops/lomiri/services/lomiri-telephony-service/default.nix b/pkgs/desktops/lomiri/services/lomiri-telephony-service/default.nix index 1bd4834fccd8..8b5a9d33da45 100644 --- a/pkgs/desktops/lomiri/services/lomiri-telephony-service/default.nix +++ b/pkgs/desktops/lomiri/services/lomiri-telephony-service/default.nix @@ -147,11 +147,11 @@ stdenv.mkDerivation (finalAttrs: { )) ]; - env.NIX_CFLAGS_COMPILE = toString ([ + env.NIX_CFLAGS_COMPILE = toString [ "-I${lib.getDev telepathy-glib}/include/telepathy-1.0" # it's in telepathy-farstream's Requires.private, so it & its dependencies don't get pulled in "-I${lib.getDev dbus-glib}/include/dbus-1.0" # telepathy-glib dependency "-I${lib.getDev dbus}/include/dbus-1.0" # telepathy-glib dependency - ]); + ]; doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform; diff --git a/pkgs/desktops/mate/atril/default.nix b/pkgs/desktops/mate/atril/default.nix index bf72606031ed..ba96da66934b 100644 --- a/pkgs/desktops/mate/atril/default.nix +++ b/pkgs/desktops/mate/atril/default.nix @@ -72,11 +72,11 @@ stdenv.mkDerivation rec { configureFlags = [ ] - ++ lib.optionals (enableDjvu) [ "--enable-djvu" ] - ++ lib.optionals (enableEpub) [ "--enable-epub" ] - ++ lib.optionals (enablePostScript) [ "--enable-ps" ] - ++ lib.optionals (enableXps) [ "--enable-xps" ] - ++ lib.optionals (enableImages) [ "--enable-pixbuf" ]; + ++ lib.optionals enableDjvu [ "--enable-djvu" ] + ++ lib.optionals enableEpub [ "--enable-epub" ] + ++ lib.optionals enablePostScript [ "--enable-ps" ] + ++ lib.optionals enableXps [ "--enable-xps" ] + ++ lib.optionals enableImages [ "--enable-pixbuf" ]; env.NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0"; diff --git a/pkgs/development/beam-modules/fetch-hex.nix b/pkgs/development/beam-modules/fetch-hex.nix index 8b8024a31b2b..62691791656d 100644 --- a/pkgs/development/beam-modules/fetch-hex.nix +++ b/pkgs/development/beam-modules/fetch-hex.nix @@ -11,7 +11,7 @@ meta ? { }, }: -stdenv.mkDerivation ({ +stdenv.mkDerivation { pname = pkg; inherit version; dontBuild = true; @@ -47,4 +47,4 @@ stdenv.mkDerivation ({ ''; inherit meta; -}) +} diff --git a/pkgs/development/beam-modules/fetch-rebar-deps.nix b/pkgs/development/beam-modules/fetch-rebar-deps.nix index 644dd1470ea7..bf6c23521074 100644 --- a/pkgs/development/beam-modules/fetch-rebar-deps.nix +++ b/pkgs/development/beam-modules/fetch-rebar-deps.nix @@ -12,7 +12,7 @@ meta ? { }, }: -stdenv.mkDerivation ({ +stdenv.mkDerivation { pname = "rebar-deps-${name}"; inherit version; @@ -43,4 +43,4 @@ stdenv.mkDerivation ({ impureEnvVars = lib.fetchers.proxyImpureEnvVars; inherit meta; -}) +} diff --git a/pkgs/development/compilers/chicken/5/overrides.nix b/pkgs/development/compilers/chicken/5/overrides.nix index 5957f10a746b..d4d2bc26d076 100644 --- a/pkgs/development/compilers/chicken/5/overrides.nix +++ b/pkgs/development/compilers/chicken/5/overrides.nix @@ -119,13 +119,13 @@ in }; # missing dependency in upstream egg mistie = addToPropagatedBuildInputs (with chickenEggs; [ srfi-1 ]); - mosquitto = addToPropagatedBuildInputs ([ pkgs.mosquitto ]); + mosquitto = addToPropagatedBuildInputs [ pkgs.mosquitto ]; nanomsg = addToBuildInputs pkgs.nanomsg; ncurses = addToBuildInputsWithPkgConfig [ pkgs.ncurses ]; - opencl = addToBuildInputs ([ + opencl = addToBuildInputs [ pkgs.opencl-headers pkgs.ocl-icd - ]); + ]; openssl = addToBuildInputs pkgs.openssl; plot = addToBuildInputs pkgs.plotutils; postgresql = addToBuildInputsWithPkgConfig pkgs.libpq; diff --git a/pkgs/development/compilers/dotnet/wrapper.nix b/pkgs/development/compilers/dotnet/wrapper.nix index 6de2acb85620..16d8441af83b 100644 --- a/pkgs/development/compilers/dotnet/wrapper.nix +++ b/pkgs/development/compilers/dotnet/wrapper.nix @@ -107,7 +107,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { sdk = finalAttrs.finalPackage; built = stdenv.mkDerivation { name = "${sdk.name}-test-${name}"; - buildInputs = [ sdk ] ++ buildInputs ++ lib.optional (usePackageSource) sdk.packages; + buildInputs = [ sdk ] ++ buildInputs ++ lib.optional usePackageSource sdk.packages; # make sure ICU works in a sandbox propagatedSandboxProfile = toString sdk.__propagatedSandboxProfile; unpackPhase = @@ -281,7 +281,7 @@ stdenvNoCC.mkDerivation (finalAttrs: { command = "HOME=$(mktemp -d) dotnet " + (if type == "sdk" then "--version" else "--info"); }; } - // lib.optionalAttrs (type == "sdk") ({ + // lib.optionalAttrs (type == "sdk") { buildDotnetModule = recurseIntoAttrs ( (pkgs.appendOverlays [ (self: super: { @@ -304,6 +304,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { cs = mkWebTest "C#" "cs"; fs = mkWebTest "F#" "fs"; }; - }); + }; }; }) diff --git a/pkgs/development/compilers/factor-lang/0.100.nix b/pkgs/development/compilers/factor-lang/0.100.nix index 64751dad76a9..856ce4a4e777 100644 --- a/pkgs/development/compilers/factor-lang/0.100.nix +++ b/pkgs/development/compilers/factor-lang/0.100.nix @@ -1,9 +1,9 @@ { callPackage, fetchurl }: -callPackage ./unwrapped.nix (rec { +callPackage ./unwrapped.nix rec { version = "0.100"; src = fetchurl { url = "https://downloads.factorcode.org/releases/${version}/factor-src-${version}.zip"; hash = "sha256-ei1x6mgEoDVe1mKfoWSGC9RgZCONovAPYfIdAlOGi+0="; }; -}) +} diff --git a/pkgs/development/compilers/factor-lang/0.99.nix b/pkgs/development/compilers/factor-lang/0.99.nix index 88c234213af9..d5c1f3c82ad6 100644 --- a/pkgs/development/compilers/factor-lang/0.99.nix +++ b/pkgs/development/compilers/factor-lang/0.99.nix @@ -1,9 +1,9 @@ { callPackage, fetchurl }: -callPackage ./unwrapped.nix (rec { +callPackage ./unwrapped.nix rec { version = "0.99"; src = fetchurl { url = "https://downloads.factorcode.org/releases/${version}/factor-src-${version}.zip"; sha256 = "f5626bb3119bd77de9ac3392fdbe188bffc26557fab3ea34f7ca21e372a8443e"; }; -}) +} diff --git a/pkgs/development/compilers/gambit/gambit-support.nix b/pkgs/development/compilers/gambit/gambit-support.nix index 64a9b6a2bb46..c85aa26489dc 100644 --- a/pkgs/development/compilers/gambit/gambit-support.nix +++ b/pkgs/development/compilers/gambit/gambit-support.nix @@ -28,7 +28,7 @@ rec { export-gambopt = params: "export GAMBOPT=${params.buildRuntimeOptions} ;"; - gambit-bootstrap = import ./bootstrap.nix (pkgs); + gambit-bootstrap = import ./bootstrap.nix pkgs; meta = with lib; { description = "Optimizing Scheme to C compiler"; diff --git a/pkgs/development/compilers/gcc/default.nix b/pkgs/development/compilers/gcc/default.nix index a79cfed28598..ee94af1d9b22 100644 --- a/pkgs/development/compilers/gcc/default.nix +++ b/pkgs/development/compilers/gcc/default.nix @@ -289,12 +289,12 @@ pipe ) ) ) - + optionalString targetPlatform.isAvr ('' + + optionalString targetPlatform.isAvr '' makeFlagsArray+=( '-s' # workaround for hitting hydra log limit 'LIMITS_H_TEST=false' ) - ''); + ''; inherit noSysDirs @@ -333,7 +333,7 @@ pipe assert profiledCompiler -> !disableBootstrap; let target = - optionalString (profiledCompiler) "profiled" + optionalString profiledCompiler "profiled" + optionalString ( (lib.systems.equals targetPlatform hostPlatform) && (lib.systems.equals hostPlatform buildPlatform) @@ -401,7 +401,7 @@ pipe !(targetPlatform.isLinux && targetPlatform.isx86_64 && targetPlatform.libc == "glibc") ) "shadowstack" ++ optional (!(targetPlatform.isLinux && targetPlatform.isAarch64)) "pacret" - ++ optionals (langFortran) [ + ++ optionals langFortran [ "fortify" "format" ]; @@ -427,7 +427,7 @@ pipe dontMoveLib64 = true; } )) - ([ + [ (callPackage ./common/libgcc.nix { inherit version @@ -442,4 +442,4 @@ pipe ; }) (callPackage ./common/checksum.nix { inherit langC langCC; }) - ]) + ] diff --git a/pkgs/development/compilers/gcc/patches/default.nix b/pkgs/development/compilers/gcc/patches/default.nix index 2c0fa1b40852..c75a960890f1 100644 --- a/pkgs/development/compilers/gcc/patches/default.nix +++ b/pkgs/development/compilers/gcc/patches/default.nix @@ -55,7 +55,7 @@ in [ ] # Pass the path to a C++ compiler directly in the Makefile.in ++ optional (!lib.systems.equals targetPlatform hostPlatform) ./libstdc++-target.patch -++ optionals (noSysDirs) ( +++ optionals noSysDirs ( [ # Do not try looking for binaries and libraries in /lib and /usr/lib ./gcc-12-no-sys-dirs.patch @@ -86,11 +86,12 @@ in ) # Pass CFLAGS on to gnat ++ optional langAda ./gnat-cflags-11.patch -++ optional langFortran ( - # Fix interaction of gfortran and libtool - # Fixes the output of -v - # See also https://github.com/nixOS/nixpkgs/commit/cc6f814a8f0e9b70ede5b24192558664fa1f98a2 - ./gcc-12-gfortran-driving.patch) +++ + optional langFortran + # Fix interaction of gfortran and libtool + # Fixes the output of -v + # See also https://github.com/nixOS/nixpkgs/commit/cc6f814a8f0e9b70ede5b24192558664fa1f98a2 + ./gcc-12-gfortran-driving.patch # Do not pass a default include dir on PowerPC+Musl # See https://github.com/NixOS/nixpkgs/pull/45340/commits/d6bb7d45162ac93e017cc9b665ae4836f6410710 ++ [ ./ppc-musl.patch ] diff --git a/pkgs/development/compilers/ghc/9.0.2-binary.nix b/pkgs/development/compilers/ghc/9.0.2-binary.nix index aa29a7cc010b..acf7effd7083 100644 --- a/pkgs/development/compilers/ghc/9.0.2-binary.nix +++ b/pkgs/development/compilers/ghc/9.0.2-binary.nix @@ -265,13 +265,13 @@ stdenv.mkDerivation { buildExeGlob = ''ghc-${version}*/"${binDistUsed.exePathForLibraryCheck}"''; in lib.concatStringsSep "\n" [ - ('' + '' shopt -u nullglob echo "Checking that ghc binary exists in bindist at ${buildExeGlob}" if ! test -e ${buildExeGlob}; then echo >&2 "GHC binary ${binDistUsed.exePathForLibraryCheck} could not be found in the bindist build directory (at ${buildExeGlob}) for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; fi - '') + '' (lib.concatMapStringsSep "\n" ( { fileToCheckFor, nixPackage }: lib.optionalString (fileToCheckFor != null) '' diff --git a/pkgs/development/compilers/ghc/9.2.4-binary.nix b/pkgs/development/compilers/ghc/9.2.4-binary.nix index adb1afa5e74f..44544744244a 100644 --- a/pkgs/development/compilers/ghc/9.2.4-binary.nix +++ b/pkgs/development/compilers/ghc/9.2.4-binary.nix @@ -238,13 +238,13 @@ stdenv.mkDerivation { buildExeGlob = ''ghc-${version}*/"${binDistUsed.exePathForLibraryCheck}"''; in lib.concatStringsSep "\n" [ - ('' + '' shopt -u nullglob echo "Checking that ghc binary exists in bindist at ${buildExeGlob}" if ! test -e ${buildExeGlob}; then echo >&2 "GHC binary ${binDistUsed.exePathForLibraryCheck} could not be found in the bindist build directory (at ${buildExeGlob}) for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; fi - '') + '' (lib.concatMapStringsSep "\n" ( { fileToCheckFor, nixPackage }: lib.optionalString (fileToCheckFor != null) '' diff --git a/pkgs/development/compilers/ghc/9.6.3-binary.nix b/pkgs/development/compilers/ghc/9.6.3-binary.nix index e2444aac54fa..2ca353f8ee21 100644 --- a/pkgs/development/compilers/ghc/9.6.3-binary.nix +++ b/pkgs/development/compilers/ghc/9.6.3-binary.nix @@ -237,13 +237,13 @@ stdenv.mkDerivation { buildExeGlob = ''ghc-${version}*/"${binDistUsed.exePathForLibraryCheck}"''; in lib.concatStringsSep "\n" [ - ('' + '' shopt -u nullglob echo "Checking that ghc binary exists in bindist at ${buildExeGlob}" if ! test -e ${buildExeGlob}; then echo >&2 "GHC binary ${binDistUsed.exePathForLibraryCheck} could not be found in the bindist build directory (at ${buildExeGlob}) for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; fi - '') + '' (lib.concatMapStringsSep "\n" ( { fileToCheckFor, nixPackage }: lib.optionalString (fileToCheckFor != null) '' diff --git a/pkgs/development/compilers/ghc/9.8.4-binary.nix b/pkgs/development/compilers/ghc/9.8.4-binary.nix index e281377503cd..df3f507f33d8 100644 --- a/pkgs/development/compilers/ghc/9.8.4-binary.nix +++ b/pkgs/development/compilers/ghc/9.8.4-binary.nix @@ -251,13 +251,13 @@ stdenv.mkDerivation { buildExeGlob = ''ghc-${version}*/"${binDistUsed.exePathForLibraryCheck}"''; in lib.concatStringsSep "\n" [ - ('' + '' shopt -u nullglob echo "Checking that ghc binary exists in bindist at ${buildExeGlob}" if ! test -e ${buildExeGlob}; then echo >&2 "GHC binary ${binDistUsed.exePathForLibraryCheck} could not be found in the bindist build directory (at ${buildExeGlob}) for arch ${stdenv.hostPlatform.system}, please check that ghcBinDists correctly reflect the bindist dependencies!"; exit 1; fi - '') + '' (lib.concatMapStringsSep "\n" ( { fileToCheckFor, nixPackage }: lib.optionalString (fileToCheckFor != null) '' diff --git a/pkgs/development/compilers/ghc/common-hadrian.nix b/pkgs/development/compilers/ghc/common-hadrian.nix index 31d03aad160c..114999da79b3 100644 --- a/pkgs/development/compilers/ghc/common-hadrian.nix +++ b/pkgs/development/compilers/ghc/common-hadrian.nix @@ -661,7 +661,7 @@ stdenv.mkDerivation ( "CONF_GCC_LINKER_OPTS_STAGE1=-fuse-ld=gold" "CONF_GCC_LINKER_OPTS_STAGE2=-fuse-ld=gold" ] - ++ lib.optionals (disableLargeAddressSpace) [ + ++ lib.optionals disableLargeAddressSpace [ "--disable-large-address-space" ] ++ lib.optionals enableDwarf [ diff --git a/pkgs/development/compilers/ghc/common-make-native-bignum.nix b/pkgs/development/compilers/ghc/common-make-native-bignum.nix index b46da57cba04..1dbf759259be 100644 --- a/pkgs/development/compilers/ghc/common-make-native-bignum.nix +++ b/pkgs/development/compilers/ghc/common-make-native-bignum.nix @@ -514,7 +514,7 @@ stdenv.mkDerivation ( "CONF_GCC_LINKER_OPTS_STAGE1=-fuse-ld=gold" "CONF_GCC_LINKER_OPTS_STAGE2=-fuse-ld=gold" ] - ++ lib.optionals (disableLargeAddressSpace) [ + ++ lib.optionals disableLargeAddressSpace [ "--disable-large-address-space" ] ++ lib.optionals enableNuma [ diff --git a/pkgs/development/compilers/llvm/common/bolt/default.nix b/pkgs/development/compilers/llvm/common/bolt/default.nix index 3172d665adf1..e36d2f143dde 100644 --- a/pkgs/development/compilers/llvm/common/bolt/default.nix +++ b/pkgs/development/compilers/llvm/common/bolt/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation (finalAttrs: { inherit version; # Blank llvm dir just so relative path works - src = runCommand "bolt-src-${finalAttrs.version}" { inherit (monorepoSrc) passthru; } ('' + src = runCommand "bolt-src-${finalAttrs.version}" { inherit (monorepoSrc) passthru; } '' mkdir $out cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/${finalAttrs.pname} "$out" @@ -32,7 +32,7 @@ stdenv.mkDerivation (finalAttrs: { # BOLT re-runs tablegen against LLVM sources, so needs them available. cp -r ${monorepoSrc}/llvm/ "$out" chmod -R +w $out/llvm - ''); + ''; sourceRoot = "${finalAttrs.src.name}/bolt"; diff --git a/pkgs/development/compilers/llvm/common/clang/default.nix b/pkgs/development/compilers/llvm/common/clang/default.nix index 8950500ba1df..9005a9627346 100644 --- a/pkgs/development/compilers/llvm/common/clang/default.nix +++ b/pkgs/development/compilers/llvm/common/clang/default.nix @@ -31,12 +31,12 @@ stdenv.mkDerivation ( src = if monorepoSrc != null then - runCommand "clang-src-${version}" { inherit (monorepoSrc) passthru; } ('' + runCommand "clang-src-${version}" { inherit (monorepoSrc) passthru; } '' mkdir -p "$out" cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/clang "$out" ${lib.optionalString enableClangToolsExtra "cp -r ${monorepoSrc}/clang-tools-extra \"$out\""} - '') + '' else src; diff --git a/pkgs/development/compilers/llvm/common/compiler-rt/default.nix b/pkgs/development/compilers/llvm/common/compiler-rt/default.nix index 9e67b2bff8e9..8ed41c6f7937 100644 --- a/pkgs/development/compilers/llvm/common/compiler-rt/default.nix +++ b/pkgs/development/compilers/llvm/common/compiler-rt/default.nix @@ -47,7 +47,7 @@ let in stdenv.mkDerivation (finalAttrs: { - pname = "compiler-rt${lib.optionalString (haveLibc) "-libc"}"; + pname = "compiler-rt${lib.optionalString haveLibc "-libc"}"; inherit version; src = @@ -135,7 +135,7 @@ stdenv.mkDerivation (finalAttrs: { (lib.cmakeBool "COMPILER_RT_BUILD_SANITIZERS" true) (lib.cmakeBool "COMPILER_RT_BUILD_PROFILE" true) ] - ++ lib.optionals (noSanitizers) [ + ++ lib.optionals noSanitizers [ (lib.cmakeBool "COMPILER_RT_BUILD_SANITIZERS" false) ] ++ lib.optionals ((useLLVM && !haveLibcxx) || !haveLibc || bareMetal || isMusl || isDarwinStatic) [ @@ -156,12 +156,12 @@ stdenv.mkDerivation (finalAttrs: { ++ lib.optionals (!haveLibc) [ (lib.cmakeFeature "CMAKE_C_FLAGS" "-nodefaultlibs") ] - ++ lib.optionals (useLLVM) [ + ++ lib.optionals useLLVM [ (lib.cmakeBool "COMPILER_RT_BUILD_BUILTINS" true) #https://stackoverflow.com/questions/53633705/cmake-the-c-compiler-is-not-able-to-compile-a-simple-test-program (lib.cmakeFeature "CMAKE_TRY_COMPILE_TARGET_TYPE" "STATIC_LIBRARY") ] - ++ lib.optionals (bareMetal) [ + ++ lib.optionals bareMetal [ (lib.cmakeFeature "COMPILER_RT_OS_DIR" "baremetal") ] ++ lib.optionals (stdenv.hostPlatform.isDarwin) ( diff --git a/pkgs/development/compilers/llvm/common/libclc/default.nix b/pkgs/development/compilers/llvm/common/libclc/default.nix index d58602733c4b..f1ae54c0a9a5 100644 --- a/pkgs/development/compilers/llvm/common/libclc/default.nix +++ b/pkgs/development/compilers/llvm/common/libclc/default.nix @@ -30,11 +30,11 @@ stdenv.mkDerivation (finalAttrs: { pname = "libclc"; inherit version; - src = runCommand "libclc-src-${version}" { inherit (monorepoSrc) passthru; } ('' + src = runCommand "libclc-src-${version}" { inherit (monorepoSrc) passthru; } '' mkdir -p "$out" cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/libclc "$out" - ''); + ''; sourceRoot = "${finalAttrs.src.name}/libclc"; diff --git a/pkgs/development/compilers/llvm/common/lld/default.nix b/pkgs/development/compilers/llvm/common/lld/default.nix index 13ed24cdc701..e9c0ee543437 100644 --- a/pkgs/development/compilers/llvm/common/lld/default.nix +++ b/pkgs/development/compilers/llvm/common/lld/default.nix @@ -22,14 +22,14 @@ stdenv.mkDerivation (finalAttrs: { src = if monorepoSrc != null then - runCommand "lld-src-${version}" { inherit (monorepoSrc) passthru; } ('' + runCommand "lld-src-${version}" { inherit (monorepoSrc) passthru; } '' mkdir -p "$out" cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/lld "$out" mkdir -p "$out/libunwind" cp -r ${monorepoSrc}/libunwind/include "$out/libunwind" mkdir -p "$out/llvm" - '') + '' else src; diff --git a/pkgs/development/compilers/llvm/common/llvm/default.nix b/pkgs/development/compilers/llvm/common/llvm/default.nix index ab080daa1d1a..ceb7b35688de 100644 --- a/pkgs/development/compilers/llvm/common/llvm/default.nix +++ b/pkgs/development/compilers/llvm/common/llvm/default.nix @@ -299,7 +299,7 @@ stdenv.mkDerivation ( ) + # dup of above patch with different conditions - optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86) ( + optionalString (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86) # fails when run in sandbox ( '' @@ -346,7 +346,7 @@ stdenv.mkDerivation ( rm test/tools/dsymutil/ARM/obfuscated.test '' ) - ) + + # FileSystem permissions tests fail with various special bits '' diff --git a/pkgs/development/compilers/llvm/common/mlir/default.nix b/pkgs/development/compilers/llvm/common/mlir/default.nix index e6cb4a415d99..3d39c9a25d72 100644 --- a/pkgs/development/compilers/llvm/common/mlir/default.nix +++ b/pkgs/development/compilers/llvm/common/mlir/default.nix @@ -25,14 +25,14 @@ stdenv.mkDerivation (finalAttrs: { && (!stdenv.hostPlatform.isMusl); # Blank llvm dir just so relative path works - src = runCommand "${finalAttrs.pname}-src-${version}" { inherit (monorepoSrc) passthru; } ('' + src = runCommand "${finalAttrs.pname}-src-${version}" { inherit (monorepoSrc) passthru; } '' mkdir -p "$out" cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/mlir "$out" cp -r ${monorepoSrc}/third-party "$out/third-party" mkdir -p "$out/llvm" - ''); + ''; sourceRoot = "${finalAttrs.src.name}/mlir"; diff --git a/pkgs/development/compilers/llvm/common/openmp/default.nix b/pkgs/development/compilers/llvm/common/openmp/default.nix index ad4b485085ff..322031df1938 100644 --- a/pkgs/development/compilers/llvm/common/openmp/default.nix +++ b/pkgs/development/compilers/llvm/common/openmp/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation (finalAttrs: { src = if monorepoSrc != null then - runCommand "openmp-src-${version}" { inherit (monorepoSrc) passthru; } ('' + runCommand "openmp-src-${version}" { inherit (monorepoSrc) passthru; } '' mkdir -p "$out" cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/openmp "$out" - '') + '' else src; diff --git a/pkgs/development/compilers/llvm/common/tblgen.nix b/pkgs/development/compilers/llvm/common/tblgen.nix index 0fa2f6269d6d..5153ad54764b 100644 --- a/pkgs/development/compilers/llvm/common/tblgen.nix +++ b/pkgs/development/compilers/llvm/common/tblgen.nix @@ -38,7 +38,7 @@ let src' = if monorepoSrc != null then - runCommand "${pname}-src-${version}" { } ('' + runCommand "${pname}-src-${version}" { } '' mkdir -p "$out" cp -r ${monorepoSrc}/cmake "$out" cp -r ${monorepoSrc}/third-party "$out" @@ -46,7 +46,7 @@ let cp -r ${monorepoSrc}/clang "$out" cp -r ${monorepoSrc}/clang-tools-extra "$out" cp -r ${monorepoSrc}/mlir "$out" - '') + '' else src; diff --git a/pkgs/development/compilers/open-watcom/wrapper.nix b/pkgs/development/compilers/open-watcom/wrapper.nix index fe29ac1af820..54b06d7db4fb 100644 --- a/pkgs/development/compilers/open-watcom/wrapper.nix +++ b/pkgs/development/compilers/open-watcom/wrapper.nix @@ -33,7 +33,7 @@ let "${archToBindir}nt" (lib.optionalString is32bit "${archToBindir}w") ] - else if (isDarwin) then + else if isDarwin then [ (lib.optionalString is64bit "${archToBindir}o64") # modern Darwin cannot execute 32-bit code anymore diff --git a/pkgs/development/compilers/rust/default.nix b/pkgs/development/compilers/rust/default.nix index af5782407cbe..460c99ef5e17 100644 --- a/pkgs/development/compilers/rust/default.nix +++ b/pkgs/development/compilers/rust/default.nix @@ -92,7 +92,7 @@ in buildRustPackages = (selectRustPackage pkgsBuildHost).packages.stable; # Analogous to stdenv rustPlatform = makeRustPlatform self.buildRustPackages; - rustc-unwrapped = self.callPackage ./rustc.nix ({ + rustc-unwrapped = self.callPackage ./rustc.nix { version = rustcVersion; sha256 = rustcSha256; inherit enableRustcDev; @@ -109,7 +109,7 @@ in # Use boot package set to break cycle inherit (bootstrapRustPackages) cargo rustc rustfmt; - }); + }; rustc = wrapRustcWith { inherit (self) rustc-unwrapped; sysroot = if fastCross then self.rustc-unwrapped else null; diff --git a/pkgs/development/compilers/vala/default.nix b/pkgs/development/compilers/vala/default.nix index 586657b523f4..44a65fdc2588 100644 --- a/pkgs/development/compilers/vala/default.nix +++ b/pkgs/development/compilers/vala/default.nix @@ -91,7 +91,7 @@ let libiconv libintl ] - ++ lib.optional (withGraphviz) graphviz + ++ lib.optional withGraphviz graphviz ++ extraBuildInputs; enableParallelBuilding = true; diff --git a/pkgs/development/compilers/yosys/plugins/symbiflow.nix b/pkgs/development/compilers/yosys/plugins/symbiflow.nix index 82ff16fe5ed4..4b6a8c3ecbd6 100644 --- a/pkgs/development/compilers/yosys/plugins/symbiflow.nix +++ b/pkgs/development/compilers/yosys/plugins/symbiflow.nix @@ -46,7 +46,7 @@ let in lib.genAttrs plugins ( plugin: - stdenv.mkDerivation (rec { + stdenv.mkDerivation rec { pname = "yosys-symbiflow-${plugin}-plugin"; inherit src version plugin; enableParallelBuilding = true; @@ -109,5 +109,5 @@ lib.genAttrs plugins ( thoughtpolice ]; }; - }) + } ) diff --git a/pkgs/development/coq-modules/ExtLib/default.nix b/pkgs/development/coq-modules/ExtLib/default.nix index a87b41b6078a..ecfb3f683956 100644 --- a/pkgs/development/coq-modules/ExtLib/default.nix +++ b/pkgs/development/coq-modules/ExtLib/default.nix @@ -20,9 +20,9 @@ mkCoqDerivation { (case (range "8.8" "8.16") "0.11.6") (case (range "8.8" "8.14") "0.11.4") (case (range "8.8" "8.13") "0.11.3") - (case ("8.7") "0.9.7") - (case ("8.6") "0.9.5") - (case ("8.5") "0.9.4") + (case "8.7" "0.9.7") + (case "8.6" "0.9.5") + (case "8.5" "0.9.4") ] null; release."0.13.0".sha256 = "sha256-vqVSu+nyGjRVXe2tnE6MPl0kcg4LHfgFwRCpTQAP/is="; release."0.12.2".sha256 = "sha256-lSTlbpkSuAY6B9cqofXSlDk2VchtqfZpRQ0+y/BAbEY="; diff --git a/pkgs/development/coq-modules/mathcomp-analysis/default.nix b/pkgs/development/coq-modules/mathcomp-analysis/default.nix index 1fe217d0b9ed..436932fdff9e 100644 --- a/pkgs/development/coq-modules/mathcomp-analysis/default.nix +++ b/pkgs/development/coq-modules/mathcomp-analysis/default.nix @@ -126,7 +126,7 @@ let } ] package; pname = if package == "single" then "mathcomp-analysis-single" else "mathcomp-${package}"; - derivation = mkCoqDerivation ({ + derivation = mkCoqDerivation { inherit version pname @@ -172,7 +172,7 @@ let }; passthru = lib.mapAttrs (package: deps: mathcomp_ package) packages; - }); + }; # split packages didn't exist before 0.6, so building nothing in that case patched-derivation1 = derivation.overrideAttrs ( o: diff --git a/pkgs/development/coq-modules/metarocq/default.nix b/pkgs/development/coq-modules/metarocq/default.nix index d565c312ae33..6f7ac6b11b44 100644 --- a/pkgs/development/coq-modules/metarocq/default.nix +++ b/pkgs/development/coq-modules/metarocq/default.nix @@ -15,7 +15,7 @@ let case = case: out: { inherit case out; }; in lib.switch coq.coq-version [ - (case ("9.0") "1.4-9.0") + (case "9.0" "1.4-9.0") ] null; release = { "1.4-9.0".sha256 = "sha256-5QecDAMkvgfDPZ7/jDfnOgcE+Eb1LTAozP7nz6nkuxg="; diff --git a/pkgs/development/coq-modules/validsdp/default.nix b/pkgs/development/coq-modules/validsdp/default.nix index b4ba02a076bc..3668b2a393ee 100644 --- a/pkgs/development/coq-modules/validsdp/default.nix +++ b/pkgs/development/coq-modules/validsdp/default.nix @@ -81,7 +81,7 @@ let ] package; pname = package; - derivation = mkCoqDerivation ({ + derivation = mkCoqDerivation { inherit version pname @@ -113,7 +113,7 @@ let }; passthru = lib.mapAttrs (package: deps: validsdp_ package) packages; - }); + }; in derivation; in diff --git a/pkgs/development/coq-modules/vscoq-language-server/default.nix b/pkgs/development/coq-modules/vscoq-language-server/default.nix index e5d71da4b0dc..0812d1d950ae 100644 --- a/pkgs/development/coq-modules/vscoq-language-server/default.nix +++ b/pkgs/development/coq-modules/vscoq-language-server/default.nix @@ -26,7 +26,7 @@ let owner = "coq-community"; repo = "vscoq"; }; - fetch = metaFetch ({ + fetch = metaFetch { release."2.0.3+coq8.18".sha256 = "sha256-VXhHCP6Ni5/OcsgoI1EbJfYCpXzwkuR8kbbKrl6dfjU="; release."2.0.3+coq8.18".rev = "v2.0.3+coq8.18"; release."2.1.2".rev = "v2.1.2"; @@ -42,7 +42,7 @@ let release."2.2.6".rev = "v2.2.6"; release."2.2.6".sha256 = "sha256-J8nRTAwN6GBEYgqlXa2kkkrHPatXsSObQg9QUQoZhgE="; inherit location; - }); + }; fetched = fetch (if version != null then version else defaultVersion); in ocamlPackages.buildDunePackage { diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 88fe314bdffc..bfe4b607b034 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -1866,11 +1866,11 @@ builtins.intersectAttrs super { ]) ) ( - super.libtorch-ffi.override ({ + super.libtorch-ffi.override { c10 = pkgs.libtorch-bin; torch = pkgs.libtorch-bin; torch_cpu = pkgs.libtorch-bin; - }) + } ); # Upper bounds of text and bytestring too strict: https://github.com/zsedem/haskell-cpython/pull/24 diff --git a/pkgs/development/interpreters/lua-5/default.nix b/pkgs/development/interpreters/lua-5/default.nix index 3e2a55d76c15..276b33c0defc 100644 --- a/pkgs/development/interpreters/lua-5/default.nix +++ b/pkgs/development/interpreters/lua-5/default.nix @@ -119,10 +119,10 @@ rec { patches = lib.optional stdenv.hostPlatform.isDarwin ./5.4.darwin.patch; }; - lua5_4_compat = lua5_4.override ({ + lua5_4_compat = lua5_4.override { self = lua5_4_compat; compat = true; - }); + }; lua5_3 = callPackage ./interpreter.nix { self = lua5_3; @@ -134,10 +134,10 @@ rec { patches = lib.optionals stdenv.hostPlatform.isDarwin [ ./5.2.darwin.patch ]; }; - lua5_3_compat = lua5_3.override ({ + lua5_3_compat = lua5_3.override { self = lua5_3_compat; compat = true; - }); + }; lua5_2 = callPackage ./interpreter.nix { self = lua5_2; @@ -151,10 +151,10 @@ rec { ++ lib.optional stdenv.hostPlatform.isDarwin ./5.2.darwin.patch; }; - lua5_2_compat = lua5_2.override ({ + lua5_2_compat = lua5_2.override { self = lua5_2_compat; compat = true; - }); + }; lua5_1 = callPackage ./interpreter.nix { self = lua5_1; diff --git a/pkgs/development/interpreters/octave/default.nix b/pkgs/development/interpreters/octave/default.nix index e0f3084084b0..71421c6e5eea 100644 --- a/pkgs/development/interpreters/octave/default.nix +++ b/pkgs/development/interpreters/octave/default.nix @@ -144,7 +144,7 @@ stdenv.mkDerivation (finalAttrs: { libsForQt5.qtsvg libsForQt5.qscintilla ] - ++ lib.optionals (enableJava) [ + ++ lib.optionals enableJava [ jdk ] ++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ diff --git a/pkgs/development/interpreters/php/8.2.nix b/pkgs/development/interpreters/php/8.2.nix index 63f25b21ba66..6e33b3ba3c60 100644 --- a/pkgs/development/interpreters/php/8.2.nix +++ b/pkgs/development/interpreters/php/8.2.nix @@ -12,7 +12,7 @@ in base.withExtensions ( { all, ... }: with all; - ([ + [ bcmath calendar curl @@ -55,5 +55,5 @@ base.withExtensions ( xmlwriter zip zlib - ]) + ] ) diff --git a/pkgs/development/interpreters/php/8.3.nix b/pkgs/development/interpreters/php/8.3.nix index 2dcebdc9e65b..fe25d10dc5de 100644 --- a/pkgs/development/interpreters/php/8.3.nix +++ b/pkgs/development/interpreters/php/8.3.nix @@ -12,7 +12,7 @@ in base.withExtensions ( { all, ... }: with all; - ([ + [ bcmath calendar curl @@ -55,5 +55,5 @@ base.withExtensions ( xmlwriter zip zlib - ]) + ] ) diff --git a/pkgs/development/interpreters/python/meta-package.nix b/pkgs/development/interpreters/python/meta-package.nix index 2e25dff85fe0..e3d868433183 100644 --- a/pkgs/development/interpreters/python/meta-package.nix +++ b/pkgs/development/interpreters/python/meta-package.nix @@ -38,11 +38,11 @@ buildPythonPackage { [project.optional-dependencies] ${lib.optionalString (optional-dependencies != { }) ( - (lib.concatStringsSep "\n" ( + lib.concatStringsSep "\n" ( lib.mapAttrsToList ( group: deps: group + " = " + builtins.toJSON (map lib.getName deps) ) optional-dependencies - )) + ) )} [tool.hatch.build.targets.wheel] diff --git a/pkgs/development/interpreters/python/python2/mk-python-derivation.nix b/pkgs/development/interpreters/python/python2/mk-python-derivation.nix index caaed105da48..b27d3e92eb24 100644 --- a/pkgs/development/interpreters/python/python2/mk-python-derivation.nix +++ b/pkgs/development/interpreters/python/python2/mk-python-derivation.nix @@ -171,7 +171,7 @@ let checkDrv = drv: if (isPythonModule drv) && (isMismatchedPython drv) then throwMismatch drv else drv; in - inputs: map (checkDrv) inputs; + inputs: map checkDrv inputs; # Keep extra attributes from `attrs`, e.g., `patchPhase', etc. self = toPythonModule ( @@ -212,7 +212,7 @@ let setuptoolsBuildHook ] ++ lib.optionals (format == "pyproject") [ - (pipBuildHook) + pipBuildHook ] ++ lib.optionals (format == "wheel") [ wheelUnpackHook @@ -223,7 +223,7 @@ let eggInstallHook ] ++ lib.optionals (format != "other") [ - (pipInstallHook) + pipInstallHook ] ++ lib.optionals (stdenv.buildPlatform == stdenv.hostPlatform) [ # This is a test, however, it should be ran independent of the checkPhase and checkInputs diff --git a/pkgs/development/libraries/agda/iowa-stdlib/default.nix b/pkgs/development/libraries/agda/iowa-stdlib/default.nix index 55505f0edf42..b1673faa74ba 100644 --- a/pkgs/development/libraries/agda/iowa-stdlib/default.nix +++ b/pkgs/development/libraries/agda/iowa-stdlib/default.nix @@ -4,7 +4,7 @@ fetchFromGitHub, }: -mkDerivation (rec { +mkDerivation rec { version = "1.5.0"; pname = "iowa-stdlib"; @@ -35,4 +35,4 @@ mkDerivation (rec { turion ]; }; -}) +} diff --git a/pkgs/development/libraries/gcr/default.nix b/pkgs/development/libraries/gcr/default.nix index ff6205b5a410..8507b65d274e 100644 --- a/pkgs/development/libraries/gcr/default.nix +++ b/pkgs/development/libraries/gcr/default.nix @@ -64,7 +64,7 @@ stdenv.mkDerivation rec { libsecret openssh ] - ++ lib.optionals (systemdSupport) [ + ++ lib.optionals systemdSupport [ systemd ]; diff --git a/pkgs/development/libraries/kerberos/heimdal.nix b/pkgs/development/libraries/kerberos/heimdal.nix index 0f5380d93177..7b63b2241439 100644 --- a/pkgs/development/libraries/kerberos/heimdal.nix +++ b/pkgs/development/libraries/kerberos/heimdal.nix @@ -77,12 +77,12 @@ stdenv.mkDerivation { libedit pam ] - ++ lib.optionals (withCJSON) [ cjson ] - ++ lib.optionals (withCapNG) [ libcap_ng ] - ++ lib.optionals (withMicroHTTPD) [ libmicrohttpd ] - ++ lib.optionals (withOpenLDAP) [ openldap ] - ++ lib.optionals (withOpenSSL) [ openssl ] - ++ lib.optionals (withSQLite3) [ sqlite ]; + ++ lib.optionals withCJSON [ cjson ] + ++ lib.optionals withCapNG [ libcap_ng ] + ++ lib.optionals withMicroHTTPD [ libmicrohttpd ] + ++ lib.optionals withOpenLDAP [ openldap ] + ++ lib.optionals withOpenSSL [ openssl ] + ++ lib.optionals withSQLite3 [ sqlite ]; doCheck = true; nativeCheckInputs = [ @@ -103,19 +103,19 @@ stdenv.mkDerivation { "--without-x" "--disable-afs-string-to-key" ] - ++ lib.optionals (withCapNG) [ + ++ lib.optionals withCapNG [ "--with-capng" ] - ++ lib.optionals (withCJSON) [ + ++ lib.optionals withCJSON [ "--with-cjson=${cjson}" ] - ++ lib.optionals (withOpenLDAP) [ + ++ lib.optionals withOpenLDAP [ "--with-openldap=${openldap.dev}" ] - ++ lib.optionals (withOpenLDAPAsHDBModule) [ + ++ lib.optionals withOpenLDAPAsHDBModule [ "--enable-hdb-openldap-module" ] - ++ lib.optionals (withSQLite3) [ + ++ lib.optionals withSQLite3 [ "--with-sqlite3=${sqlite.dev}" ]; diff --git a/pkgs/development/libraries/libmicrohttpd/0.9.77.nix b/pkgs/development/libraries/libmicrohttpd/0.9.77.nix index 9099de95bd82..3874f77acb87 100644 --- a/pkgs/development/libraries/libmicrohttpd/0.9.77.nix +++ b/pkgs/development/libraries/libmicrohttpd/0.9.77.nix @@ -1,10 +1,10 @@ { callPackage, fetchurl }: -callPackage ./generic.nix (rec { +callPackage ./generic.nix rec { version = "0.9.77"; src = fetchurl { url = "mirror://gnu/libmicrohttpd/libmicrohttpd-${version}.tar.gz"; hash = "sha256-nnAjoVESAGDSgGpupME8qZM+zk6s/FyUZNIO3dt2sKA="; }; -}) +} diff --git a/pkgs/development/libraries/libmicrohttpd/1.0.nix b/pkgs/development/libraries/libmicrohttpd/1.0.nix index 944749f281c0..8070e78356c7 100644 --- a/pkgs/development/libraries/libmicrohttpd/1.0.nix +++ b/pkgs/development/libraries/libmicrohttpd/1.0.nix @@ -1,10 +1,10 @@ { callPackage, fetchurl }: -callPackage ./generic.nix (rec { +callPackage ./generic.nix rec { version = "1.0.2"; src = fetchurl { url = "mirror://gnu/libmicrohttpd/libmicrohttpd-${version}.tar.gz"; hash = "sha256-3zJPzQg0F12rB0gxM5Atl3SmBb+imAJfaYgyiP0gqMc="; }; -}) +} diff --git a/pkgs/development/libraries/opencv/4.x.nix b/pkgs/development/libraries/opencv/4.x.nix index 574c77f51644..4d3c68b6e8e0 100644 --- a/pkgs/development/libraries/opencv/4.x.nix +++ b/pkgs/development/libraries/opencv/4.x.nix @@ -632,7 +632,7 @@ effectiveStdenv.mkDerivation { inherit opencv4; }; } - // optionalAttrs (enableCuda) { + // optionalAttrs enableCuda { no-libstdcxx-errors = callPackage ./libstdcxx-test.nix { attrName = "opencv4"; }; }; } diff --git a/pkgs/development/libraries/qt-5/modules/qtbase.nix b/pkgs/development/libraries/qt-5/modules/qtbase.nix index 189562011d78..57f77518ed55 100644 --- a/pkgs/development/libraries/qt-5/modules/qtbase.nix +++ b/pkgs/development/libraries/qt-5/modules/qtbase.nix @@ -156,7 +156,7 @@ stdenv.mkDerivation ( ++ lib.optional stdenv.hostPlatform.isDarwin darwinVersionInputs ++ lib.optional developerBuild gdb ++ lib.optional (cups != null) cups - ++ lib.optional (mysqlSupport) libmysqlclient + ++ lib.optional mysqlSupport libmysqlclient ++ lib.optional (libpq != null) libpq; nativeBuildInputs = [ @@ -168,7 +168,7 @@ stdenv.mkDerivation ( pkg-config which ] - ++ lib.optionals (mysqlSupport) [ libmysqlclient ] + ++ lib.optionals mysqlSupport [ libmysqlclient ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ xcbuild ]; } @@ -339,11 +339,11 @@ stdenv.mkDerivation ( ); } // lib.optionalAttrs (stdenv.buildPlatform != stdenv.hostPlatform) { - NIX_CFLAGS_COMPILE_FOR_BUILD = toString ([ + NIX_CFLAGS_COMPILE_FOR_BUILD = toString [ "-Wno-warn=free-nonheap-object" "-Wno-free-nonheap-object" "-w" - ]); + ]; }; prefixKey = "-prefix "; @@ -493,7 +493,7 @@ stdenv.mkDerivation ( "-I" "${cups.dev}/include" ] - ++ lib.optionals (mysqlSupport) [ + ++ lib.optionals mysqlSupport [ "-L" "${libmysqlclient}/lib" "-I" diff --git a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix index 9f3f7785efba..c47eda9636ee 100644 --- a/pkgs/development/libraries/qt-5/modules/qtwebengine.nix +++ b/pkgs/development/libraries/qt-5/modules/qtwebengine.nix @@ -267,14 +267,14 @@ qtModule ( sed -i -e '/libpci_loader.*Load/s!"\(libpci\.so\)!"${pciutils}/lib/\1!' \ src/3rdparty/chromium/gpu/config/gpu_info_collector_linux.cc '' - + lib.optionalString stdenv.hostPlatform.isDarwin ('' + + lib.optionalString stdenv.hostPlatform.isDarwin '' substituteInPlace src/buildtools/config/mac_osx.pri \ --replace 'QMAKE_CLANG_DIR = "/usr"' 'QMAKE_CLANG_DIR = "${stdenv.cc}"' # Use system ffmpeg echo "gn_args += use_system_ffmpeg=true" >> src/core/config/mac_osx.pri echo "LIBS += -lavformat -lavcodec -lavutil" >> src/core/core_common.pri - '') + '' + postPatch; env = { diff --git a/pkgs/development/libraries/qt-6/default.nix b/pkgs/development/libraries/qt-6/default.nix index bfab871bc314..e24c2c825240 100644 --- a/pkgs/development/libraries/qt-6/default.nix +++ b/pkgs/development/libraries/qt-6/default.nix @@ -28,10 +28,10 @@ let addPackages = self: let - callPackage = self.newScope ({ + callPackage = self.newScope { inherit (self) qtModule; inherit srcs python3 stdenv; - }); + }; # Per . # This should reflect the highest “Build Environment” and the diff --git a/pkgs/development/lua-modules/overrides.nix b/pkgs/development/lua-modules/overrides.nix index dee529b4047e..c0b710f89700 100644 --- a/pkgs/development/lua-modules/overrides.nix +++ b/pkgs/development/lua-modules/overrides.nix @@ -203,7 +203,7 @@ in ''; }); - grug-far-nvim = prev.grug-far-nvim.overrideAttrs ({ + grug-far-nvim = prev.grug-far-nvim.overrideAttrs { doCheck = lua.luaversion == "5.1" && !stdenv.hostPlatform.isDarwin; nativeCheckInputs = [ final.busted @@ -235,7 +235,7 @@ in runHook postCheck ''; - }); + }; http = prev.http.overrideAttrs (oa: { /* @@ -931,7 +931,7 @@ in lua, luaposix, }: - buildLuarocksPackage ({ + buildLuarocksPackage { pname = "readline"; version = "3.2-0"; knownRockspec = @@ -966,7 +966,7 @@ in license.fullName = "MIT/X11"; broken = (luaOlder "5.1") || (luaAtLeast "5.5"); }; - }) + } ) { }; rocks-dev-nvim = prev.rocks-dev-nvim.overrideAttrs (oa: { diff --git a/pkgs/development/ocaml-modules/elpi/default.nix b/pkgs/development/ocaml-modules/elpi/default.nix index 5c5eeb0dc915..237308239be9 100644 --- a/pkgs/development/ocaml-modules/elpi/default.nix +++ b/pkgs/development/ocaml-modules/elpi/default.nix @@ -33,7 +33,7 @@ let in let - fetched = coqPackages.metaFetch ({ + fetched = coqPackages.metaFetch { release."3.3.0".sha256 = "sha256:963f95eea48b8f853cca9cbe4db49f22343c58e88dc961bc1da303356ef50dcd"; release."3.0.1".sha256 = "sha256-r4B0xn6UCVslVW4dHiqq8NBMGfNz44kZy48KDWeGquc="; release."2.0.7".sha256 = "sha256-gCM+vZK6vWlhSO1VMjiWHse23mvxVwRarhxwkIQK7e0="; @@ -57,7 +57,7 @@ let owner = "LPCIC"; repo = "elpi"; }; - }) version; + } version; in let inherit (fetched) version; diff --git a/pkgs/development/ocaml-modules/junit/default.nix b/pkgs/development/ocaml-modules/junit/default.nix index 0477e3d46a79..234afebf9f6b 100644 --- a/pkgs/development/ocaml-modules/junit/default.nix +++ b/pkgs/development/ocaml-modules/junit/default.nix @@ -6,7 +6,7 @@ tyxml, }: -buildDunePackage (rec { +buildDunePackage rec { pname = "junit"; version = "2.3.0"; @@ -28,4 +28,4 @@ buildDunePackage (rec { maintainers = [ ]; homepage = "https://github.com/Khady/ocaml-junit"; }; -}) +} diff --git a/pkgs/development/ocaml-modules/junit/ounit.nix b/pkgs/development/ocaml-modules/junit/ounit.nix index 6e4b79eea272..9704183c6e22 100644 --- a/pkgs/development/ocaml-modules/junit/ounit.nix +++ b/pkgs/development/ocaml-modules/junit/ounit.nix @@ -4,7 +4,7 @@ ounit2, }: -buildDunePackage ({ +buildDunePackage { pname = "junit_ounit"; inherit (junit) src version meta; @@ -15,4 +15,4 @@ buildDunePackage ({ ]; doCheck = true; -}) +} diff --git a/pkgs/development/ocaml-modules/menhir/lib.nix b/pkgs/development/ocaml-modules/menhir/lib.nix index f83bebbcc623..01d76971a2db 100644 --- a/pkgs/development/ocaml-modules/menhir/lib.nix +++ b/pkgs/development/ocaml-modules/menhir/lib.nix @@ -7,7 +7,7 @@ }: let - fetched = coqPackages.metaFetch ({ + fetched = coqPackages.metaFetch { release."20231231".sha256 = "sha256-veB0ORHp6jdRwCyDDAfc7a7ov8sOeHUmiELdOFf/QYk="; release."20240715".sha256 = "sha256-9CSxAIm0aEXkwF+aj8u/bqLG30y5eDNz65EnohJPjzI="; release."20250903".sha256 = "sha256-ap1OvcvCAuqmFDwhPwMBosHs3cm5NxPW/w1J8AzWduk="; @@ -17,7 +17,7 @@ let owner = "fpottier"; repo = "menhir"; }; - }) version; + } version; in buildDunePackage { pname = "menhirLib"; diff --git a/pkgs/development/python-modules/beaker/default.nix b/pkgs/development/python-modules/beaker/default.nix index 96ac8fb3c6e9..aad6383f249e 100644 --- a/pkgs/development/python-modules/beaker/default.nix +++ b/pkgs/development/python-modules/beaker/default.nix @@ -39,7 +39,7 @@ buildPythonPackage rec { pycrypto cryptography ] - ++ lib.optionals (isPy27) [ + ++ lib.optionals isPy27 [ funcsigs pycryptopp ]; diff --git a/pkgs/development/python-modules/cfscrape/default.nix b/pkgs/development/python-modules/cfscrape/default.nix index c5fba3baf917..9dd60bed9769 100644 --- a/pkgs/development/python-modules/cfscrape/default.nix +++ b/pkgs/development/python-modules/cfscrape/default.nix @@ -9,12 +9,12 @@ buildPythonPackage { pname = "cfscrape"; version = "2.1.1"; format = "setuptools"; - src = fetchFromGitHub ({ + src = fetchFromGitHub { owner = "Anorov"; repo = "cloudflare-scrape"; rev = "9692fe7ff3c17b76ddf0f4d50d3dba7d1791c9c6"; hash = "sha256-uO8lBZonjk+mlFYoNSaz+GIN/W9yf8VL9OQ7MKfsMgI="; - }); + }; propagatedBuildInputs = [ requests ]; diff --git a/pkgs/development/python-modules/manim/default.nix b/pkgs/development/python-modules/manim/default.nix index aa2dc068aa49..67d820774f35 100644 --- a/pkgs/development/python-modules/manim/default.nix +++ b/pkgs/development/python-modules/manim/default.nix @@ -184,7 +184,7 @@ let ] ); # https://github.com/ManimCommunity/manim/pull/4037 - av_13_1 = av.overridePythonAttrs (rec { + av_13_1 = av.overridePythonAttrs rec { version = "13.1.0"; src = fetchFromGitHub { owner = "PyAV-Org"; @@ -192,7 +192,7 @@ let tag = "v${version}"; hash = "sha256-x2a9SC4uRplC6p0cD7fZcepFpRidbr6JJEEOaGSWl60="; }; - }); + }; in buildPythonPackage rec { pname = "manim"; diff --git a/pkgs/development/python-modules/pexpect/default.nix b/pkgs/development/python-modules/pexpect/default.nix index 0371859c5066..cb34296f7f79 100644 --- a/pkgs/development/python-modules/pexpect/default.nix +++ b/pkgs/development/python-modules/pexpect/default.nix @@ -9,7 +9,7 @@ sage, }: -buildPythonPackage (rec { +buildPythonPackage rec { pname = "pexpect"; version = "4.9.0"; pyproject = true; @@ -53,4 +53,4 @@ buildPythonPackage (rec { any platform that supports the standard Python pty module. ''; }; -}) +} diff --git a/pkgs/development/python-modules/pyscreenshot/default.nix b/pkgs/development/python-modules/pyscreenshot/default.nix index c45b97c2c018..846b267290cc 100644 --- a/pkgs/development/python-modules/pyscreenshot/default.nix +++ b/pkgs/development/python-modules/pyscreenshot/default.nix @@ -25,7 +25,7 @@ buildPythonPackage rec { entrypoint2 pillow ] - ++ lib.optionals (isPy3k) [ + ++ lib.optionals isPy3k [ jeepney mss ]; diff --git a/pkgs/development/python-modules/qiskit-ignis/default.nix b/pkgs/development/python-modules/qiskit-ignis/default.nix index d4d34101e7cb..02b6b29de9c7 100644 --- a/pkgs/development/python-modules/qiskit-ignis/default.nix +++ b/pkgs/development/python-modules/qiskit-ignis/default.nix @@ -43,9 +43,9 @@ buildPythonPackage rec { scikit-learn scipy ] - ++ lib.optionals (withCvx) [ cvxpy ] - ++ lib.optionals (withVisualization) [ matplotlib ] - ++ lib.optionals (withJit) [ numba ]; + ++ lib.optionals withCvx [ cvxpy ] + ++ lib.optionals withVisualization [ matplotlib ] + ++ lib.optionals withJit [ numba ]; # Tests pythonImportsCheck = [ "qiskit.ignis" ]; diff --git a/pkgs/development/python-modules/sure/default.nix b/pkgs/development/python-modules/sure/default.nix index 8185fdc7676c..8306a1a96a8f 100644 --- a/pkgs/development/python-modules/sure/default.nix +++ b/pkgs/development/python-modules/sure/default.nix @@ -42,7 +42,7 @@ buildPythonPackage rec { "tests/test_old_api.py" # require nose ]; - disabledTests = lib.optionals (isPyPy) [ + disabledTests = lib.optionals isPyPy [ # test extension of 'dict' object is broken "test_should_compare_dict_with_non_orderable_key_types" "test_should_compare_dict_with_enum_keys" diff --git a/pkgs/development/python-modules/tensorflow/default.nix b/pkgs/development/python-modules/tensorflow/default.nix index 85055efe84e3..78c6a6bdf152 100644 --- a/pkgs/development/python-modules/tensorflow/default.nix +++ b/pkgs/development/python-modules/tensorflow/default.nix @@ -498,7 +498,7 @@ let # workaround for https://github.com/bazelbuild/bazel/issues/15359 "--spawn_strategy=sandboxed" ] - ++ lib.optionals (mklSupport) [ "--config=mkl" ]; + ++ lib.optionals mklSupport [ "--config=mkl" ]; bazelTargets = [ "//tensorflow/tools/pip_package:build_pip_package //tensorflow/tools/lib_package:libtensorflow" diff --git a/pkgs/development/python-modules/torch/source/src.nix b/pkgs/development/python-modules/torch/source/src.nix index f617227f4a6e..99d3d5561004 100644 --- a/pkgs/development/python-modules/torch/source/src.nix +++ b/pkgs/development/python-modules/torch/source/src.nix @@ -5,7 +5,7 @@ runCommand, }: assert version == "2.8.0"; -(rec { +rec { src_asmjit = fetchFromGitHub { owner = "asmjit"; repo = "asmjit"; @@ -716,5 +716,6 @@ assert version == "2.8.0"; src_vcpkg_recursive = src_vcpkg; src_VulkanMemoryAllocator_recursive = src_VulkanMemoryAllocator; src_XNNPACK_recursive = src_XNNPACK; -}).src_pytorch_recursive +} +.src_pytorch_recursive # Update using: unroll-src [version] diff --git a/pkgs/development/python-modules/vivisect/default.nix b/pkgs/development/python-modules/vivisect/default.nix index af4060ef9238..1a80e837d892 100644 --- a/pkgs/development/python-modules/vivisect/default.nix +++ b/pkgs/development/python-modules/vivisect/default.nix @@ -47,7 +47,7 @@ buildPythonPackage rec { msgpack pycparser ] - ++ lib.optionals (withGui) optional-dependencies.gui; + ++ lib.optionals withGui optional-dependencies.gui; optional-dependencies.gui = [ pyqt5 diff --git a/pkgs/development/python-modules/vllm/default.nix b/pkgs/development/python-modules/vllm/default.nix index 7e56b1796f59..4e0e58410621 100644 --- a/pkgs/development/python-modules/vllm/default.nix +++ b/pkgs/development/python-modules/vllm/default.nix @@ -167,7 +167,7 @@ let rm -rf csrc/cutlass ln -sf ${cutlass} csrc/cutlass '' - + lib.optionalString (rocmSupport) '' + + lib.optionalString rocmSupport '' rm -rf csrc/composable_kernel; ln -sf ${rocmPackages.composable_kernel} csrc/composable_kernel ''; diff --git a/pkgs/development/rocq-modules/rocq-elpi/default.nix b/pkgs/development/rocq-modules/rocq-elpi/default.nix index 66c07bce7d4f..dcc4e07cd68c 100644 --- a/pkgs/development/rocq-modules/rocq-elpi/default.nix +++ b/pkgs/development/rocq-modules/rocq-elpi/default.nix @@ -38,7 +38,7 @@ let lib.switch rocq-core.rocq-version [ (case (range "9.0" "9.1") "3.1.0") (case (range "9.0" "9.1") "2.6.0") - (case ("9.0") "2.5.2") + (case "9.0" "2.5.2") ] null; release."3.1.0".sha256 = "sha256-ytGPGwJv+jmRT6uN0sg6q+xh8ND0PMIZ9ULB0Uwca1w="; release."3.0.0".sha256 = "sha256-YMe2is7duGcvAHjM4joUE90EloibjSxqfZThsJhstdU="; diff --git a/pkgs/development/tools/ammonite/default.nix b/pkgs/development/tools/ammonite/default.nix index 99e254291373..40a390ff5168 100644 --- a/pkgs/development/tools/ammonite/default.nix +++ b/pkgs/development/tools/ammonite/default.nix @@ -32,7 +32,7 @@ let install -Dm755 $src $out/bin/amm sed -i '0,/java/{s|java|${jre}/bin/java|}' $out/bin/amm '' - + lib.optionalString (disableRemoteLogging) '' + + lib.optionalString disableRemoteLogging '' sed -i "0,/ammonite.Main/{s|ammonite.Main'|ammonite.Main' --no-remote-logging|}" $out/bin/amm sed -i '1i #!/bin/sh' $out/bin/amm ''; diff --git a/pkgs/development/tools/continuous-integration/buildbot/worker.nix b/pkgs/development/tools/continuous-integration/buildbot/worker.nix index 67e45ff6f80d..8bb6910bfed7 100644 --- a/pkgs/development/tools/continuous-integration/buildbot/worker.nix +++ b/pkgs/development/tools/continuous-integration/buildbot/worker.nix @@ -21,7 +21,7 @@ nixosTests, }: -buildPythonPackage ({ +buildPythonPackage { pname = "buildbot_worker"; inherit (buildbot) src version; format = "setuptools"; @@ -58,4 +58,4 @@ buildPythonPackage ({ teams = [ teams.buildbot ]; license = licenses.gpl2; }; -}) +} diff --git a/pkgs/development/tools/godot/3/mono/glue.nix b/pkgs/development/tools/godot/3/mono/glue.nix index b8901d0e386b..e4dfc2a9fdd6 100644 --- a/pkgs/development/tools/godot/3/mono/glue.nix +++ b/pkgs/development/tools/godot/3/mono/glue.nix @@ -26,7 +26,7 @@ patches = base.patches - ++ map (rp: ./patches + rp) ([ + ++ map (rp: ./patches + rp) [ # When building godot mono, a "glue version" gets baked into it, and into the mono glue code # generated by it. Godot mono export templates are also get a glue version baked in. If you # export a godot mono project using an export template for which the glue version doesn't @@ -55,7 +55,7 @@ # For convenience, the accompanying update-glue-version.sh script automates this work. Run it by # passing the godot version as an argument, e.g. "3.5.2". "/gen_cs_glue_version.py/hardcodeGlueVersion_${self.version}.patch" - ]); + ]; outputs = [ "out" ]; diff --git a/pkgs/development/tools/godot/common.nix b/pkgs/development/tools/godot/common.nix index f1cd98a46ce7..bdd87b4a96b5 100644 --- a/pkgs/development/tools/godot/common.nix +++ b/pkgs/development/tools/godot/common.nix @@ -114,7 +114,7 @@ let version = dottedVersion; }; } - // lib.optionalAttrs (editor) ( + // lib.optionalAttrs editor ( let project-src = runCommand "${pkg.name}-project-src" @@ -337,7 +337,7 @@ let outputs = [ "out" ] - ++ lib.optional (editor) "man"; + ++ lib.optional editor "man"; separateDebugInfo = true; # Set the build name which is part of the version. In official downloads, this diff --git a/pkgs/development/tools/haskell/ihaskell/wrapper.nix b/pkgs/development/tools/haskell/ihaskell/wrapper.nix index 21984b6e8da4..02de6f6e1ab4 100644 --- a/pkgs/development/tools/haskell/ihaskell/wrapper.nix +++ b/pkgs/development/tools/haskell/ihaskell/wrapper.nix @@ -24,10 +24,10 @@ let #! ${stdenv.shell} export GHC_PACKAGE_PATH="$(${ihaskellEnv}/bin/ghc --print-global-package-db):$GHC_PACKAGE_PATH" export PATH="${ - lib.makeBinPath ([ + lib.makeBinPath [ ihaskellEnv jupyter - ]) + ] }''${PATH:+:}$PATH" ${ihaskellEnv}/bin/ihaskell install -l $(${ihaskellEnv}/bin/ghc --print-libdir) && ${jupyter}/bin/jupyter notebook ''; diff --git a/pkgs/development/web/nodejs/gyp-patches.nix b/pkgs/development/web/nodejs/gyp-patches.nix index d3939887e0fd..3dd60e8a7e85 100644 --- a/pkgs/development/web/nodejs/gyp-patches.nix +++ b/pkgs/development/web/nodejs/gyp-patches.nix @@ -13,7 +13,7 @@ let url = "https://github.com/nodejs/gyp-next/commit/8224deef984add7e7afe846cfb82c9d3fa6da1fb.patch?full_index=1"; url_regex_handling = "https://github.com/nodejs/gyp-next/commit/b21ee3150eea9fc1a8811e910e5ba64f42e1fb77.patch?full_index=1"; in -lib.optionals patch_tools_catch_oserror ([ +lib.optionals patch_tools_catch_oserror [ # Fixes builds with Nix sandbox on Darwin for gyp. (fetchpatch2 { inherit url; @@ -21,16 +21,16 @@ lib.optionals patch_tools_catch_oserror ([ stripLen = 1; extraPrefix = "tools/gyp/"; }) -]) -++ lib.optionals patch_npm_catch_oserror ([ +] +++ lib.optionals patch_npm_catch_oserror [ (fetchpatch2 { inherit url; hash = "sha256-cXTwmCRHrNhuY1+3cD/EvU0CJ+1Nk4TRh6c3twvfaW8="; stripLen = 1; extraPrefix = "deps/npm/node_modules/node-gyp/gyp/"; }) -]) -++ lib.optionals patch_tools_regex_handling ([ +] +++ lib.optionals patch_tools_regex_handling [ # Fixes builds with Nix sandbox on Darwin for gyp. (fetchpatch2 { url = url_regex_handling; @@ -38,16 +38,16 @@ lib.optionals patch_tools_catch_oserror ([ stripLen = 1; extraPrefix = "tools/gyp/"; }) -]) -++ lib.optionals patch_npm_regex_handling ([ +] +++ lib.optionals patch_npm_regex_handling [ (fetchpatch2 { url = url_regex_handling; hash = "sha256-fW5kQh+weCK0g3wzTJLZgAuXxetb14UAf6yxW6bIgbU="; stripLen = 1; extraPrefix = "deps/npm/node_modules/node-gyp/gyp/"; }) -]) +] # TODO: remove the Darwin conditionals from this file -++ lib.optionals stdenv.buildPlatform.isDarwin ([ +++ lib.optionals stdenv.buildPlatform.isDarwin [ ./gyp-patches-set-fallback-value-for-CLT-darwin.patch -]) +] diff --git a/pkgs/games/armagetronad/default.nix b/pkgs/games/armagetronad/default.nix index cd9dfe4916f0..c42be9aed44c 100644 --- a/pkgs/games/armagetronad/default.nix +++ b/pkgs/games/armagetronad/default.nix @@ -226,7 +226,7 @@ let ''; passthru = - if (dedicatedServer) then + if dedicatedServer then { # No passthru, end of the line. # https://www.youtube.com/watch?v=NOMa56y_Was diff --git a/pkgs/games/quake2/yquake2/wrapper.nix b/pkgs/games/quake2/yquake2/wrapper.nix index 6c2437d3286e..d174dcae1e7b 100644 --- a/pkgs/games/quake2/yquake2/wrapper.nix +++ b/pkgs/games/quake2/yquake2/wrapper.nix @@ -49,7 +49,7 @@ stdenv.mkDerivation { desktopItems = map ( game: - makeDesktopItem ({ + makeDesktopItem { name = game.id; exec = game.title; icon = "yamagi-quake2"; @@ -59,7 +59,7 @@ stdenv.mkDerivation { "Game" "Shooter" ]; - }) + } ) games; meta = { diff --git a/pkgs/misc/documentation-highlighter/default.nix b/pkgs/misc/documentation-highlighter/default.nix index fb9ddb8589f3..dd17c353d115 100644 --- a/pkgs/misc/documentation-highlighter/default.nix +++ b/pkgs/misc/documentation-highlighter/default.nix @@ -12,13 +12,13 @@ runCommand "documentation-highlighter" src = ./.; filter = path: type: - lib.elem (baseNameOf path) ([ + lib.elem (baseNameOf path) [ "highlight.pack.js" "LICENSE" "loader.js" "mono-blue.css" "README.md" - ]); + ]; }; } '' diff --git a/pkgs/misc/logging/beats/7.x.nix b/pkgs/misc/logging/beats/7.x.nix index d509cb443db6..660349b1ac00 100644 --- a/pkgs/misc/logging/beats/7.x.nix +++ b/pkgs/misc/logging/beats/7.x.nix @@ -13,7 +13,7 @@ let beat = package: extraArgs: buildGoModule ( - lib.attrsets.recursiveUpdate (rec { + lib.attrsets.recursiveUpdate rec { pname = package; version = elk7Version; @@ -38,7 +38,7 @@ let ]; platforms = platforms.linux; }; - }) extraArgs + } extraArgs ); in rec { diff --git a/pkgs/misc/optee-os/default.nix b/pkgs/misc/optee-os/default.nix index e70727b7aac9..dca4d6000019 100644 --- a/pkgs/misc/optee-os/default.nix +++ b/pkgs/misc/optee-os/default.nix @@ -74,11 +74,11 @@ let "PLATFORM=${platform}" "CFG_USER_TA_TARGETS=${taTarget}" ] - ++ (lib.optionals (is32bit) [ + ++ (lib.optionals is32bit [ "CFG_ARM32_core=y" "CROSS_COMPILE32=${stdenv.cc.targetPrefix}" ]) - ++ (lib.optionals (is64bit) [ + ++ (lib.optionals is64bit [ "CFG_ARM64_core=y" "CROSS_COMPILE64=${stdenv.cc.targetPrefix}" ]) diff --git a/pkgs/misc/tmux-plugins/default.nix b/pkgs/misc/tmux-plugins/default.nix index 7146a7e61b61..ce5dd347c49c 100644 --- a/pkgs/misc/tmux-plugins/default.nix +++ b/pkgs/misc/tmux-plugins/default.nix @@ -606,7 +606,7 @@ in wrapProgram $target/scripts/main.sh \ --prefix PATH : ${ with pkgs; - lib.makeBinPath ([ + lib.makeBinPath [ findutils fzf gnugrep @@ -614,7 +614,7 @@ in ncurses pkgs.pass tmux - ]) + ] } ''; @@ -770,13 +770,13 @@ in wrapProgram $target/bin/t \ --prefix PATH : ${ with pkgs; - lib.makeBinPath ([ + lib.makeBinPath [ fzf zoxide coreutils gnugrep gnused - ]) + ] } ''; }; @@ -1018,10 +1018,10 @@ in wrapProgram $out/share/tmux-plugins/t-smart-tmux-session-manager/bin/t \ --prefix PATH : ${ - lib.makeBinPath ([ + lib.makeBinPath [ pkgs.fzf pkgs.zoxide - ]) + ] } find $target -type f -print0 | xargs -0 sed -i -e 's|fzf |${pkgs.fzf}/bin/fzf |g' diff --git a/pkgs/os-specific/bsd/freebsd/default.nix b/pkgs/os-specific/bsd/freebsd/default.nix index 91fbd2aa0b68..a8088b063bde 100644 --- a/pkgs/os-specific/bsd/freebsd/default.nix +++ b/pkgs/os-specific/bsd/freebsd/default.nix @@ -42,10 +42,10 @@ makeScopeWithSplicing' { { inherit branch; } - // callPackage ./package-set.nix ({ + // callPackage ./package-set.nix { sourceData = versions.${self.branch} or (throw (badBranchError self.branch)); versionData = self.sourceData.version; buildFreebsd = otherSplices.selfBuildHost; patchesRoot = ./patches + "/${self.versionData.revision}"; - }) self; + } self; } diff --git a/pkgs/os-specific/bsd/freebsd/lib/default.nix b/pkgs/os-specific/bsd/freebsd/lib/default.nix index ec07808f57d4..245385fb42ee 100644 --- a/pkgs/os-specific/bsd/freebsd/lib/default.nix +++ b/pkgs/os-specific/bsd/freebsd/lib/default.nix @@ -110,9 +110,9 @@ prefixedPath = builtins.elemAt (builtins.split " |\t" (builtins.elemAt patchLines 1)) 2; unfixedPath = lib.path.subpath.join (lib.lists.drop 1 (lib.path.subpath.components prefixedPath)); in - lib.lists.any (included: lib.path.hasPrefix (/. + ("/" + included)) (/. + ("/" + unfixedPath))) ( - paths - ); + lib.lists.any ( + included: lib.path.hasPrefix (/. + ("/" + included)) (/. + ("/" + unfixedPath)) + ) paths; filteredLines = builtins.filter filterFunc partitionedPatches; derive = patchLines: writeText "freebsd-patch" (lib.concatLines patchLines); derivedPatches = map derive filteredLines; diff --git a/pkgs/os-specific/bsd/freebsd/pkgs/localedef.nix b/pkgs/os-specific/bsd/freebsd/pkgs/localedef.nix index 5703f669d74e..9de0f0d01c6f 100644 --- a/pkgs/os-specific/bsd/freebsd/pkgs/localedef.nix +++ b/pkgs/os-specific/bsd/freebsd/pkgs/localedef.nix @@ -9,7 +9,7 @@ makeMinimal, install, }: -mkDerivation ({ +mkDerivation { path = "usr.bin/localedef"; extraPaths = [ @@ -34,4 +34,4 @@ mkDerivation ({ ''; MK_TESTS = "no"; -}) +} diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index cf5b01f3acf4..a3caafc781e5 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -1314,7 +1314,7 @@ let # required for P2P transfers between accelerators HSA_AMD_P2P = lib.mkIf stdenv.hostPlatform.is64bit (whenAtLeast "6.6" yes); - ZONE_DEVICE = lib.mkIf stdenv.hostPlatform.is64bit (yes); + ZONE_DEVICE = lib.mkIf stdenv.hostPlatform.is64bit yes; HMM_MIRROR = yes; DRM_AMDGPU_USERPTR = yes; diff --git a/pkgs/os-specific/linux/kernel/zen-kernels.nix b/pkgs/os-specific/linux/kernel/zen-kernels.nix index 41f2039606ca..740e4bc0067e 100644 --- a/pkgs/os-specific/linux/kernel/zen-kernels.nix +++ b/pkgs/os-specific/linux/kernel/zen-kernels.nix @@ -106,7 +106,7 @@ let HZ_1000 = yes; } - // lib.optionalAttrs (isLqx) { + // lib.optionalAttrs isLqx { # https://github.com/damentz/liquorix-package/commit/07b176edc002f2a7825ae181613e1f79a3650fd2 CMDLINE_BOOL = yes; CMDLINE = freeform "audit=0 intel_pstate=disable amd_pstate=disable "; diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnused/default.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnused/default.nix index a5ef9673c399..84d35be7784b 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnused/default.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnused/default.nix @@ -43,7 +43,7 @@ bash.runCommand "${pname}-${version}" mkdir ''${out} ''; } - ('' + '' # Unpack tar xzf ${src} cd sed-${version} @@ -64,4 +64,4 @@ bash.runCommand "${pname}-${version}" # Install make install - '') + '' diff --git a/pkgs/os-specific/linux/minimal-bootstrap/gnused/mes.nix b/pkgs/os-specific/linux/minimal-bootstrap/gnused/mes.nix index f11881fa290a..51b53427023f 100644 --- a/pkgs/os-specific/linux/minimal-bootstrap/gnused/mes.nix +++ b/pkgs/os-specific/linux/minimal-bootstrap/gnused/mes.nix @@ -42,7 +42,7 @@ bash.runCommand "${pname}-${version}" mkdir ''${out} ''; } - ('' + '' # Unpack ungz --file ${src} --output sed.tar untar --file sed.tar @@ -60,4 +60,4 @@ bash.runCommand "${pname}-${version}" # Install make install PREFIX=$out - '') + '' diff --git a/pkgs/os-specific/linux/mxu11x0/default.nix b/pkgs/os-specific/linux/mxu11x0/default.nix index 7020dd608442..7978e5bb5830 100644 --- a/pkgs/os-specific/linux/mxu11x0/default.nix +++ b/pkgs/os-specific/linux/mxu11x0/default.nix @@ -6,7 +6,7 @@ }: let - srcs = import (./srcs.nix) { inherit fetchurl; }; + srcs = import ./srcs.nix { inherit fetchurl; }; in stdenv.mkDerivation rec { pname = "mxu11x0"; diff --git a/pkgs/os-specific/linux/zfs/generic.nix b/pkgs/os-specific/linux/zfs/generic.nix index d113e337bcc0..457d4cb144e6 100644 --- a/pkgs/os-specific/linux/zfs/generic.nix +++ b/pkgs/os-specific/linux/zfs/generic.nix @@ -346,7 +346,7 @@ let # https://github.com/openzfs/zfs/blob/077269bfeddf2d35eb20f98289ac9d017b4a32ff/lib/libspl/include/sys/isa_defs.h#L267-L270 platforms = with lib.systems.inspect.patterns; - map (p: p // isLinux) ([ + map (p: p // isLinux) [ isx86 isAarch isPower @@ -355,7 +355,7 @@ let isMips isRiscV64 isLoongArch64 - ]); + ]; inherit maintainers; mainProgram = "zfs"; diff --git a/pkgs/pkgs-lib/formats.nix b/pkgs/pkgs-lib/formats.nix index 58eda45da319..f83a00b9e610 100644 --- a/pkgs/pkgs-lib/formats.nix +++ b/pkgs/pkgs-lib/formats.nix @@ -708,7 +708,7 @@ optionalAttrs allowAliases aliases description = "Elixir value"; }; in - attrsOf (attrsOf (valueType)); + attrsOf (attrsOf valueType); lib = let diff --git a/pkgs/pkgs-lib/formats/java-properties/default.nix b/pkgs/pkgs-lib/formats/java-properties/default.nix index 18b80629ae6e..c97e9b275d19 100644 --- a/pkgs/pkgs-lib/formats/java-properties/default.nix +++ b/pkgs/pkgs-lib/formats/java-properties/default.nix @@ -46,7 +46,7 @@ in type = let elemType = - oneOf ([ + oneOf [ # `package` isn't generalized to `path` because path values # are ambiguous. Are they host path strings (toString /foo/bar) # or should they be added to the store? ("${/foo/bar}") @@ -56,7 +56,7 @@ in (coercedTo bool boolToString str) (coercedTo int toString str) (coercedTo float toString str) - ]) + ] // { description = "string, package, bool, int or float"; }; diff --git a/pkgs/servers/home-assistant/default.nix b/pkgs/servers/home-assistant/default.nix index d0deaf0ff42e..4676768278d0 100644 --- a/pkgs/servers/home-assistant/default.nix +++ b/pkgs/servers/home-assistant/default.nix @@ -290,7 +290,7 @@ let }; }); - wolf-comm = super.wolf-comm.overridePythonAttrs (rec { + wolf-comm = super.wolf-comm.overridePythonAttrs rec { version = "0.0.23"; src = fetchFromGitHub { owner = "janrothkegel"; @@ -298,7 +298,7 @@ let tag = version; hash = "sha256-LpehooW3vmohiyMwOQTFNLiNCsaLKelWQxQk8bl+y1k="; }; - }); + }; # internal python packages only consumed by home-assistant itself hass-web-proxy-lib = self.callPackage ./python-modules/hass-web-proxy-lib { }; diff --git a/pkgs/servers/pulseaudio/qpaeq.nix b/pkgs/servers/pulseaudio/qpaeq.nix index c337761ec4d1..1b24600fe4e1 100644 --- a/pkgs/servers/pulseaudio/qpaeq.nix +++ b/pkgs/servers/pulseaudio/qpaeq.nix @@ -26,14 +26,14 @@ mkDerivation { inherit (pulseaudio) version src; buildInputs = [ - ( - (python3.withPackages ( - ps: with ps; [ - pyqt5 - dbus-python - ] - )) - ) + + (python3.withPackages ( + ps: with ps; [ + pyqt5 + dbus-python + ] + )) + ]; dontBuild = true; diff --git a/pkgs/servers/rainloop/default.nix b/pkgs/servers/rainloop/default.nix index b434178fb28a..d4f8bd7dd5ac 100644 --- a/pkgs/servers/rainloop/default.nix +++ b/pkgs/servers/rainloop/default.nix @@ -10,7 +10,7 @@ let common = { edition, sha256 }: - stdenv.mkDerivation (rec { + stdenv.mkDerivation rec { pname = "rainloop${lib.optionalString (edition != "") "-${edition}"}"; version = "1.16.0"; @@ -73,7 +73,7 @@ let platforms = platforms.all; maintainers = with maintainers; [ das_j ]; }; - }); + }; in { rainloop-community = common { diff --git a/pkgs/servers/sql/postgresql/ext/vectorchord/package.nix b/pkgs/servers/sql/postgresql/ext/vectorchord/package.nix index eeb3bcef1e3e..99c7f5c60267 100644 --- a/pkgs/servers/sql/postgresql/ext/vectorchord/package.nix +++ b/pkgs/servers/sql/postgresql/ext/vectorchord/package.nix @@ -46,7 +46,7 @@ buildPgrxExtension (finalAttrs: { ./0002-add-feature-flags.diff ]; - buildInputs = lib.optionals (useSystemJemalloc) [ + buildInputs = lib.optionals useSystemJemalloc [ rust-jemalloc-sys' ]; diff --git a/pkgs/stdenv/generic/check-meta.nix b/pkgs/stdenv/generic/check-meta.nix index ba42a85dec46..1a3e65ea650d 100644 --- a/pkgs/stdenv/generic/check-meta.nix +++ b/pkgs/stdenv/generic/check-meta.nix @@ -54,7 +54,7 @@ let showWarnings = config.showDerivationWarnings; getNameWithVersion = - attrs: attrs.name or ("${attrs.pname or "«name-missing»"}-${attrs.version or "«version-missing»"}"); + attrs: attrs.name or "${attrs.pname or "«name-missing»"}-${attrs.version or "«version-missing»"}"; allowUnfree = config.allowUnfree || builtins.getEnv "NIXPKGS_ALLOW_UNFREE" == "1"; diff --git a/pkgs/stdenv/generic/make-derivation.nix b/pkgs/stdenv/generic/make-derivation.nix index 9ebedb728989..07c50a683d3f 100644 --- a/pkgs/stdenv/generic/make-derivation.nix +++ b/pkgs/stdenv/generic/make-derivation.nix @@ -817,12 +817,12 @@ let env' = env // lib.optionalAttrs (mainProgram != null) { NIX_MAIN_PROGRAM = mainProgram; }; derivationArg = makeDerivationArgument ( - removeAttrs attrs ([ + removeAttrs attrs [ "meta" "passthru" "pos" "env" - ]) + ] // lib.optionalAttrs __structuredAttrs { env = checkedEnv; } // { cmakeFlags = makeCMakeFlags attrs; diff --git a/pkgs/test/vim/default.nix b/pkgs/test/vim/default.nix index 2606f7d92b63..a6f52963cd8a 100644 --- a/pkgs/test/vim/default.nix +++ b/pkgs/test/vim/default.nix @@ -10,7 +10,7 @@ let packages.myVimPackage.start = with vimPlugins; [ vim-nix ]; in -pkgs.recurseIntoAttrs ({ +pkgs.recurseIntoAttrs { vim_empty_config = vimUtils.vimrcFile { beforePlugins = ""; customRC = ""; @@ -28,4 +28,4 @@ pkgs.recurseIntoAttrs ({ name = "vim-with-vim-addon-nix"; vimrcConfig.packages.myVimPackage.start = with vimPlugins; [ vim-nix ]; }; -}) +} diff --git a/pkgs/tools/misc/seaborn-data/default.nix b/pkgs/tools/misc/seaborn-data/default.nix index 555c9991b63b..65a81c299c80 100644 --- a/pkgs/tools/misc/seaborn-data/default.nix +++ b/pkgs/tools/misc/seaborn-data/default.nix @@ -44,8 +44,8 @@ let ); in lib.makeScope newScope (self: { - exercise = makeSeabornDataPackage ({ + exercise = makeSeabornDataPackage { pname = "exercise"; hash = "sha256-icoc2HkG303A8hCoW6kZxD5qhOKIpdxErLr288o04wE="; - }); + }; }) diff --git a/pkgs/tools/package-management/nix/modular/src/libflake-tests/package.nix b/pkgs/tools/package-management/nix/modular/src/libflake-tests/package.nix index ed1b51bda304..869b5b4c404e 100644 --- a/pkgs/tools/package-management/nix/modular/src/libflake-tests/package.nix +++ b/pkgs/tools/package-management/nix/modular/src/libflake-tests/package.nix @@ -44,12 +44,12 @@ mkMesonExecutable (finalAttrs: { meta.broken = !stdenv.hostPlatform.emulatorAvailable buildPackages; buildInputs = [ writableTmpDirAsHomeHook ]; } - ('' + '' export _NIX_TEST_UNIT_DATA=${resolvePath ./data} export NIX_CONFIG="extra-experimental-features = flakes" ${stdenv.hostPlatform.emulator buildPackages} ${lib.getExe finalAttrs.finalPackage} touch $out - ''); + ''; }; }; diff --git a/pkgs/tools/package-management/nix/modular/src/libstore-tests/package.nix b/pkgs/tools/package-management/nix/modular/src/libstore-tests/package.nix index 47e3128ec1a2..ae2c170b0567 100644 --- a/pkgs/tools/package-management/nix/modular/src/libstore-tests/package.nix +++ b/pkgs/tools/package-management/nix/modular/src/libstore-tests/package.nix @@ -65,13 +65,13 @@ mkMesonExecutable (finalAttrs: { meta.broken = !stdenv.hostPlatform.emulatorAvailable buildPackages; buildInputs = [ writableTmpDirAsHomeHook ]; } - ('' + '' export _NIX_TEST_UNIT_DATA=${data + "/src/libstore-tests/data"} export NIX_REMOTE=$HOME/store ${stdenv.hostPlatform.emulator buildPackages} ${lib.getExe finalAttrs.finalPackage} \ --gtest_filter=-${lib.concatStringsSep ":" finalAttrs.excludedTestPatterns} touch $out - ''); + ''; }; }; diff --git a/pkgs/tools/system/netdata/default.nix b/pkgs/tools/system/netdata/default.nix index 4a91d9b281ca..dfce039d8bb1 100644 --- a/pkgs/tools/system/netdata/default.nix +++ b/pkgs/tools/system/netdata/default.nix @@ -323,7 +323,7 @@ stdenv.mkDerivation (finalAttrs: { description = "Real-time performance monitoring tool"; homepage = "https://www.netdata.cloud/"; changelog = "https://github.com/netdata/netdata/releases/tag/v${version}"; - license = [ licenses.gpl3Plus ] ++ lib.optionals (withCloudUi) [ licenses.ncul1 ]; + license = [ licenses.gpl3Plus ] ++ lib.optionals withCloudUi [ licenses.ncul1 ]; mainProgram = "netdata"; platforms = platforms.unix; maintainers = with maintainers; [ diff --git a/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix b/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix index e506100ecbb3..d179ef835a92 100644 --- a/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix +++ b/pkgs/tools/typesetting/tex/texlive/build-tex-env.nix @@ -46,7 +46,7 @@ lib.fix ( buildEnv' = args: ( - buildEnv ({ inherit (args) name paths; }) + buildEnv { inherit (args) name paths; } // lib.optionalAttrs (args ? extraOutputsToInstall) { inherit (args) extraOutputsToInstall; } ).overrideAttrs ( diff --git a/pkgs/top-level/coq-packages.nix b/pkgs/top-level/coq-packages.nix index 530cba2af8f0..6d9d9fab80d6 100644 --- a/pkgs/top-level/coq-packages.nix +++ b/pkgs/top-level/coq-packages.nix @@ -61,9 +61,9 @@ let Cheerios = callPackage ../development/coq-modules/Cheerios { }; coinduction = callPackage ../development/coq-modules/coinduction { }; CoLoR = callPackage ../development/coq-modules/CoLoR ( - (lib.optionalAttrs (lib.versions.isEq self.coq.coq-version "8.13") { + lib.optionalAttrs (lib.versions.isEq self.coq.coq-version "8.13") { bignums = self.bignums.override { version = "8.13.0"; }; - }) + } ); compcert = callPackage ../development/coq-modules/compcert { inherit @@ -85,9 +85,9 @@ let coq-record-update = callPackage ../development/coq-modules/coq-record-update { }; coq-tactical = callPackage ../development/coq-modules/coq-tactical { }; coqeal = callPackage ../development/coq-modules/coqeal ( - (lib.optionalAttrs (lib.versions.range "8.13" "8.14" self.coq.coq-version) { + lib.optionalAttrs (lib.versions.range "8.13" "8.14" self.coq.coq-version) { bignums = self.bignums.override { version = "${self.coq.coq-version}.0"; }; - }) + } ); coqhammer = callPackage ../development/coq-modules/coqhammer { }; coqide = callPackage ../development/coq-modules/coqide { }; diff --git a/pkgs/top-level/darwin-aliases.nix b/pkgs/top-level/darwin-aliases.nix index b91c4da89618..717f2f58763a 100644 --- a/pkgs/top-level/darwin-aliases.nix +++ b/pkgs/top-level/darwin-aliases.nix @@ -96,7 +96,7 @@ let in stubs -// mapAliases ({ +// mapAliases { ### A ### apple_sdk_10_12 = throw "darwin.apple_sdk_10_12 was removed as Nixpkgs no longer supports macOS 10.12; see the 25.05 release notes"; # Added 2024-10-27 @@ -151,4 +151,4 @@ stubs stdenvNoCF = throw "darwin.stdenvNoCF has been removed; use `stdenv` or `stdenvNoCC`"; # converted to throw 2025-07-29 stubs = throw "'darwin.stubs.*' have been removed as they were unused"; # added 2025-04-20 swift-corelibs-foundation = throw "'darwin.swift-corelibs-foundation' has been removed, as it was broken and is no longer used"; # added 2025-04-20 -}) +} diff --git a/pkgs/top-level/python-aliases.nix b/pkgs/top-level/python-aliases.nix index 8b8feaa7e57d..7674234b5ff8 100644 --- a/pkgs/top-level/python-aliases.nix +++ b/pkgs/top-level/python-aliases.nix @@ -31,7 +31,7 @@ in ### Deprecated aliases - for backward compatibility -mapAliases ({ +mapAliases { # Prevent incorrect Python packaging attempts. # Note: `{ python3, python3Packages, ... }: with python3Packages; [ ... python3 ]` still works, since `with` has lower priority. pythonPackages = throw "do not use pythonPackages when building Python packages, specify each used package as a separate argument"; # do not remove @@ -918,4 +918,4 @@ mapAliases ({ zope_testing = zope-testing; # added 2023-11-12 zope_testrunner = zope-testrunner; # added 2024-01-06 zxing_cpp = zxing-cpp; # added 2023-11-05 -}) +} diff --git a/pkgs/top-level/release-small.nix b/pkgs/top-level/release-small.nix index 341b63bf21c1..5370cc028964 100644 --- a/pkgs/top-level/release-small.nix +++ b/pkgs/top-level/release-small.nix @@ -47,7 +47,7 @@ in }; } -// (mapTestOn ({ +// (mapTestOn { aspell = all; at = linux; @@ -176,4 +176,4 @@ in xkeyboard_config = linux; zip = all; tests-stdenv-gcc-stageCompare = linux; -})) +}) diff --git a/pkgs/top-level/stage.nix b/pkgs/top-level/stage.nix index 9fa556ff7e02..926a132a3805 100644 --- a/pkgs/top-level/stage.nix +++ b/pkgs/top-level/stage.nix @@ -309,7 +309,7 @@ let # Fully static packages. # Currently uses Musl on Linux (couldn’t get static glibc to work). - pkgsStatic = nixpkgsFun ({ + pkgsStatic = nixpkgsFun { overlays = [ (self': super': { pkgsStatic = super'; @@ -328,7 +328,7 @@ let lib.optionalAttrs (stdenv.hostPlatform.system == "powerpc64-linux") { abi = "elfv2"; } // stdenv.hostPlatform.gcc or { }; }; - }); + }; }; # The complete chain of package set builders, applied from top to bottom. diff --git a/pkgs/top-level/variants.nix b/pkgs/top-level/variants.nix index b4e970f98a34..ea288206dfbc 100644 --- a/pkgs/top-level/variants.nix +++ b/pkgs/top-level/variants.nix @@ -114,12 +114,12 @@ self: super: { # Full package set with rocm on cuda off # Mostly useful for asserting pkgs.pkgsRocm.torchWithRocm == pkgs.torchWithRocm and similar - pkgsRocm = nixpkgsFun ({ + pkgsRocm = nixpkgsFun { config = super.config // { cudaSupport = false; rocmSupport = true; }; - }); + }; # Full package set with cuda on rocm off # Mostly useful for asserting pkgs.pkgsCuda.torchWithCuda == pkgs.torchWithCuda and similar From fc48a7b73ca388a03d3b78a8537a003bbc24a6ed Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Sun, 5 Oct 2025 11:03:54 +0200 Subject: [PATCH 14/14] .git-blame-ignore-revs: add nixf-diagnose commits --- .git-blame-ignore-revs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 441b55cf6ebe..1948d8fdc7ce 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -292,3 +292,8 @@ b1c5cd3e794cdf89daa5e4f0086274a416a1cded #nixos/nextcloud: remove with lib usage b6088b0d8e13e8d18464d78935f0130052784658 f7611cad5154a9096faa26d156a4079577bfae17 + +# nixf-diagnose +90e7159c559021ac4f4cc1222000f08a91feff69 # !autorebase nix-shell --run treefmt +c283f32d296564fd649ef3ed268c1f1f7b199c49 # !autorebase nix-shell --run treefmt +91a8fee3aaf79348aa2dc1552a29fc1b786c5133 # !autorebase nix-shell --run treefmt