lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
f6bedc13 0b857562

+158 -57
+6
maintainers/maintainer-list.nix
··· 1794 1794 githubId = 7214361; 1795 1795 name = "Roman Gerasimenko"; 1796 1796 }; 1797 + builditluc = { 1798 + email = "builditluc@icloud.com"; 1799 + github = "builditluc"; 1800 + githubId = 37375448; 1801 + name = "Buildit"; 1802 + }; 1797 1803 bburdette = { 1798 1804 email = "bburdette@protonmail.com"; 1799 1805 github = "bburdette";
+4 -3
nixos/modules/hardware/video/nvidia.nix
··· 24 24 primeEnabled = syncCfg.enable || offloadCfg.enable; 25 25 nvidiaPersistencedEnabled = cfg.nvidiaPersistenced; 26 26 nvidiaSettings = cfg.nvidiaSettings; 27 + busIDType = types.strMatching "([[:print:]]+\:[0-9]{1,3}\:[0-9]{1,2}\:[0-9])?"; 27 28 in 28 29 29 30 { ··· 68 69 }; 69 70 70 71 hardware.nvidia.prime.nvidiaBusId = mkOption { 71 - type = types.strMatching "[[:print:]]+\:[0-9]{1,3}\:[0-9]{1,2}\:[0-9]"; 72 + type = busIDType; 72 73 default = ""; 73 74 example = "PCI:1:0:0"; 74 75 description = '' ··· 78 79 }; 79 80 80 81 hardware.nvidia.prime.intelBusId = mkOption { 81 - type = types.strMatching "[[:print:]]+\:[0-9]{1,3}\:[0-9]{1,2}\:[0-9]"; 82 + type = busIDType; 82 83 default = ""; 83 84 example = "PCI:0:2:0"; 84 85 description = '' ··· 88 89 }; 89 90 90 91 hardware.nvidia.prime.amdgpuBusId = mkOption { 91 - type = types.strMatching "[[:print:]]+\:[0-9]{1,3}\:[0-9]{1,2}\:[0-9]"; 92 + type = busIDType; 92 93 default = ""; 93 94 example = "PCI:4:0:0"; 94 95 description = ''
+1
nixos/modules/services/misc/dendrite.nix
··· 247 247 WorkingDirectory = workingDir; 248 248 RuntimeDirectory = "dendrite"; 249 249 RuntimeDirectoryMode = "0700"; 250 + LimitNOFILE = 65535; 250 251 EnvironmentFile = lib.mkIf (cfg.environmentFile != null) cfg.environmentFile; 251 252 ExecStartPre = '' 252 253 ${pkgs.envsubst}/bin/envsubst \
+1 -1
nixos/modules/services/networking/syncplay.nix
··· 89 89 ${lib.optionalString (cfg.passwordFile != null) '' 90 90 export SYNCPLAY_PASSWORD=$(cat "''${CREDENTIALS_DIRECTORY}/password") 91 91 ''} 92 - exec ${pkgs.syncplay}/bin/syncplay-server ${escapeShellArgs cmdArgs} 92 + exec ${pkgs.syncplay-nogui}/bin/syncplay-server ${escapeShellArgs cmdArgs} 93 93 ''; 94 94 }; 95 95 };
+3 -3
pkgs/applications/misc/azuredatastudio/default.nix
··· 62 62 stdenv.mkDerivation rec { 63 63 64 64 pname = "azuredatastudio"; 65 - version = "1.33.1"; 65 + version = "1.35.1"; 66 66 67 67 desktopItems = [ desktopItem urlHandlerDesktopItem ]; 68 68 69 69 src = fetchurl { 70 70 name = "${pname}-${version}.tar.gz"; 71 71 url = "https://azuredatastudio-update.azurewebsites.net/${version}/linux-x64/stable"; 72 - sha256 = "sha256-jgZ8iZkic26JSgFTXpu1u1+MM4G5AqyW6Mj1tx5QwcY="; 72 + sha256 = "sha256-b/ha+81TlffnvSENzaePvfFugcKJffvjRU7y+x60OuQ="; 73 73 }; 74 74 75 75 nativeBuildInputs = [ ··· 112 112 ]; 113 113 114 114 # this will most likely need to be updated when azuredatastudio's version changes 115 - sqltoolsservicePath = "${targetPath}/resources/app/extensions/mssql/sqltoolsservice/Linux/3.0.0-release.139"; 115 + sqltoolsservicePath = "${targetPath}/resources/app/extensions/mssql/sqltoolsservice/Linux/3.0.0-release.215"; 116 116 117 117 rpath = lib.concatStringsSep ":" [ 118 118 atomEnv.libPath
+21
pkgs/applications/misc/calcoo/0001-javac-encoding.diff
··· 1 + diff -Naur calcoo-2.1.0-old/build.xml calcoo-2.1.0-new/build.xml 2 + --- calcoo-2.1.0-old/build.xml 1969-12-31 21:00:01.000000000 -0300 3 + +++ calcoo-2.1.0-new/build.xml 2022-04-16 15:41:59.763861191 -0300 4 + @@ -16,7 +16,7 @@ 5 + <!-- Create the build directory structure used by compile --> 6 + <mkdir dir="${build}"/> 7 + <!-- Compile the java code from ${src} into ${build} --> 8 + - <javac srcdir="${src}" destdir="${build}" includeantruntime="false"/> 9 + + <javac srcdir="${src}" destdir="${build}" includeantruntime="false" encoding="iso-8859-1"/> 10 + </target> 11 + 12 + <target name="copyresource" depends="compile"> 13 + @@ -31,7 +31,7 @@ 14 + <target name="testcompile"> 15 + <mkdir dir="${testbuild}"/> 16 + <!-- Compile the java code from ${testsrc} into ${testbuild} --> 17 + - <javac srcdir="${testsrc}" destdir="${testbuild}" includeantruntime="false"> 18 + + <javac srcdir="${testsrc}" destdir="${testbuild}" includeantruntime="false" encoding="iso-8859-1"> 19 + <classpath> 20 + <pathelement location="${junitpath}\junit.jar"/> 21 + <pathelement location="${junitpath}\hamcrest-core.jar"/>
+58
pkgs/applications/misc/calcoo/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchzip 4 + , ant 5 + , jdk 6 + , makeWrapper 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "calcoo"; 11 + version = "2.1.0"; 12 + 13 + src = fetchzip { 14 + url = "mirror://sourceforge/project/calcoo/calcoo/${version}/${pname}-${version}.zip"; 15 + hash = "sha256-Bdavj7RaI5CkWiOJY+TPRIRfNelfW5qdl/74J1KZPI0="; 16 + }; 17 + 18 + patches = [ 19 + # Sets javac encoding option on build.xml 20 + ./0001-javac-encoding.diff 21 + ]; 22 + 23 + nativeBuildInputs = [ 24 + ant 25 + jdk 26 + makeWrapper 27 + ]; 28 + 29 + dontConfigure = true; 30 + 31 + buildPhase = '' 32 + runHook preBuild 33 + 34 + ant 35 + 36 + runHook postBuild 37 + ''; 38 + 39 + installPhase = '' 40 + runHook preInstall 41 + 42 + mkdir -p $out/bin $out/share/${pname} 43 + mv dist/lib/calcoo.jar $out/share/${pname} 44 + 45 + makeWrapper ${jdk}/bin/java $out/bin/calcoo \ 46 + --add-flags "-jar $out/share/${pname}/calcoo.jar" 47 + 48 + runHook postInstall 49 + ''; 50 + 51 + meta = with lib; { 52 + homepage = "http://calcoo.sourceforge.net/"; 53 + description = "RPN and algebraic scientific calculator"; 54 + license = licenses.gpl2Plus; 55 + maintainers = with maintainers; [ AndersonTorres ]; 56 + inherit (jdk.meta) platforms; 57 + }; 58 + }
+6 -4
pkgs/applications/networking/syncplay/default.nix
··· 1 - { lib, fetchFromGitHub, buildPythonApplication, pyside2, shiboken2, twisted, certifi, qt5 }: 1 + { lib, fetchFromGitHub, buildPythonApplication, pyside2, twisted, certifi, qt5, enableGUI ? true }: 2 2 3 3 buildPythonApplication rec { 4 4 pname = "syncplay"; ··· 13 13 sha256 = "0qm3qn4a1nahhs7q81liz514n9blsi107g9s9xfw2i8pzi7v9v0v"; 14 14 }; 15 15 16 - propagatedBuildInputs = [ pyside2 shiboken2 twisted certifi ] ++ twisted.extras.tls; 17 - nativeBuildInputs = [ qt5.wrapQtAppsHook ]; 16 + propagatedBuildInputs = [ twisted certifi ] 17 + ++ twisted.extras.tls 18 + ++ lib.optional enableGUI pyside2; 19 + nativeBuildInputs = lib.optionals enableGUI [ qt5.wrapQtAppsHook ]; 18 20 19 21 makeFlags = [ "DESTDIR=" "PREFIX=$(out)" ]; 20 22 21 - postFixup = '' 23 + postFixup = lib.optionalString enableGUI '' 22 24 wrapQtApp $out/bin/syncplay 23 25 ''; 24 26
+1
pkgs/development/compilers/llvm/14/clang/default.nix
··· 15 15 mkdir -p "$out" 16 16 cp -r ${monorepoSrc}/cmake "$out" 17 17 cp -r ${monorepoSrc}/${pname} "$out" 18 + cp -r ${monorepoSrc}/clang-tools-extra "$out" 18 19 ''; 19 20 20 21 sourceRoot = "${src.name}/${pname}";
+4 -5
pkgs/development/libraries/cln/default.nix
··· 1 - { lib, stdenv, fetchgit, gmp }: 1 + { lib, stdenv, fetchurl, gmp }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "cln"; 5 5 version = "1.3.6"; 6 6 7 - src = fetchgit { 8 - url = "git://www.ginac.de/cln.git"; 9 - rev = "cln_${builtins.replaceStrings [ "." ] [ "-" ] version}"; 10 - sha256 = "sha256-P32F4TIDhE2Dwzydq8iFK6ch3kICJcXeeXHs5PBQG88="; 7 + src = fetchurl { 8 + url = "${meta.homepage}${pname}-${version}.tar.bz2"; 9 + sha256 = "0jlq9l4hphk7qqlgqj9ihjp4m3rwjbhk6q4v00lsbgbri07574pl"; 11 10 }; 12 11 13 12 buildInputs = [ gmp ];
+3 -3
pkgs/development/python-modules/h3/default.nix
··· 13 13 14 14 buildPythonPackage rec { 15 15 pname = "h3"; 16 - version = "3.7.3"; 16 + version = "3.7.4"; 17 17 18 18 # pypi version does not include tests 19 19 src = fetchFromGitHub { 20 20 owner = "uber"; 21 21 repo = "h3-py"; 22 - rev = "v${version}"; 23 - sha256 = "0wc1fz8v59r97wlayr4lnsgwzd4fxm991xbs9690d4vwdkapafll"; 22 + rev = "refs/tags/v${version}"; 23 + sha256 = "sha256-/DtQD2M+5kBn1RxAOobVqtu32+1cxN8lZSuGH613Bwc="; 24 24 }; 25 25 26 26 dontConfigure = true;
+2 -2
pkgs/development/python-modules/plaid-python/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "plaid-python"; 12 - version = "9.2.0"; 12 + version = "9.3.0"; 13 13 format = "setuptools"; 14 14 15 15 disabled = pythonOlder "3.6"; 16 16 17 17 src = fetchPypi { 18 18 inherit pname version; 19 - hash = "sha256-3yFfANMkn8CXCheNHU77WGeYxPV4gs2jvOl/rV+/6vY="; 19 + hash = "sha256-7H6fpJl192L8MEWrQW89Fa/BTZ2GZXjDRcy0yc17hDI="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/tubeup/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "tubeup"; 12 - version = "0.0.27"; 12 + version = "0.0.28"; 13 13 14 14 disabled = isPy27; 15 15 16 16 src = fetchPypi { 17 17 inherit pname version; 18 - sha256 = "77affb4105fc319d82c56aa5706151a4976b8b504dd252fe3db01443e27cba50"; 18 + sha256 = "sha256-+RvDwOHL+zwpM/nOWWS7pZIFEOx+jMrgt3FLYSshANo="; 19 19 }; 20 20 21 21 postPatch = ''
+2 -2
pkgs/development/python-modules/types-freezegun/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "types-freezegun"; 8 - version = "1.1.8"; 8 + version = "1.1.9"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - hash = "sha256-9LsIxUqkaBbHehtceipU9Tk8POWOfUAC5n+QgbQR6SE="; 13 + hash = "sha256-bwUQjUaLrsrfmZhzvTfleyXOs1010/g+enQvJdb+iw4="; 14 14 }; 15 15 16 16 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/types-toml/default.nix
··· 5 5 6 6 buildPythonPackage rec { 7 7 pname = "types-toml"; 8 - version = "0.10.4"; 8 + version = "0.10.5"; 9 9 format = "setuptools"; 10 10 11 11 src = fetchPypi { 12 12 inherit pname version; 13 - sha256 = "sha256-k0DnwVh3FVgbsTkFs68wt5/mivrM/KN3Zl1eY7aUEpo="; 13 + sha256 = "sha256-+UlGOjiCAL45Lvk5nbrT4eO75tRUPYStk9lsP9oCgIA="; 14 14 }; 15 15 16 16 # Module doesn't have tests
+2 -2
pkgs/development/tools/quick-lint-js/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "quick-lint-js"; 6 - version = "2.3.1"; 6 + version = "2.4.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "quick-lint"; 10 10 repo = "quick-lint-js"; 11 11 rev = version; 12 - sha256 = "sha256-3DiK7c+RuCIy9B2j6ozSaVIRf63o9S8uH27SZZJHjes="; 12 + sha256 = "122z6wnmf5lk6pvwj5065470kvkbb8jqc32x0nw6103fnak5cyih"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake ninja ];
+4 -4
pkgs/development/tools/sumneko-lua-language-server/default.nix
··· 4 4 in 5 5 stdenv.mkDerivation rec { 6 6 pname = "sumneko-lua-language-server"; 7 - version = "2.6.7"; 7 + version = "3.1.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "sumneko"; 11 11 repo = "lua-language-server"; 12 12 rev = version; 13 - sha256 = "sha256-m9vtopRjxT9Re8pDdzfFUpg3zYAFE8zqFemgaNAbsvM="; 13 + sha256 = "sha256-P0ga7uXwxkihpuLdjT1VNbuspbYpOh3+U60u1Blppo4="; 14 14 fetchSubmodules = true; 15 15 }; 16 16 ··· 73 73 ''; 74 74 75 75 meta = with lib; { 76 - description = "Lua Language Server coded by Lua "; 76 + description = "Lua Language Server coded by Lua"; 77 77 homepage = "https://github.com/sumneko/lua-language-server"; 78 78 license = licenses.mit; 79 - maintainers = with maintainers; [ ]; 79 + maintainers = with maintainers; [ sei40kr ]; 80 80 platforms = platforms.linux ++ platforms.darwin; 81 81 mainProgram = "lua-language-server"; 82 82 };
+7 -4
pkgs/misc/wiki-tui/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "wiki-tui"; 5 - version = "0.4.5"; 5 + version = "0.4.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "Builditluc"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-IMNHsmL1L+zfGxfdTxJ4HBGiQOzWmYVE0P3ZInbMVl0="; 11 + sha256 = "sha256-qoj5rg0YeBWQuU/HU84wOSG9y9p4Q1DFbqsh61mYnUc="; 12 12 }; 13 13 14 14 buildInputs = [ ncurses openssl ] ++ lib.optional stdenv.isDarwin Security; 15 15 16 16 nativeBuildInputs = [ pkg-config ]; 17 17 18 - cargoSha256 = "sha256-Q8Xl6L41cDeDN370owAAL9xZhdyUuDKrPlZxG3eg87c="; 18 + cargoSha256 = "sha256-btSWvlObvn08cAWVMM4R0aciYz8swRFZjX+WDhALj3M="; 19 + 20 + # Tests fail with this error: `found argument --test-threads which was not expected` 21 + doCheck = false; 19 22 20 23 meta = with lib; { 21 24 description = "A simple and easy to use Wikipedia Text User Interface"; 22 25 homepage = "https://github.com/builditluc/wiki-tui"; 23 26 license = licenses.mit; 24 - maintainers = with maintainers; [ lom ]; 27 + maintainers = with maintainers; [ lom builditluc ]; 25 28 }; 26 29 }
+6 -2
pkgs/servers/http/envoy/default.nix
··· 74 74 ]; 75 75 76 76 fetchAttrs = { 77 - sha256 = "0f7mls2zrpjjvbz6pgkzrvr55bv05xn2l76j9i1r0cf367qqfkz8"; 77 + sha256 = { 78 + x86_64-linux = "0f7mls2zrpjjvbz6pgkzrvr55bv05xn2l76j9i1r0cf367qqfkz8"; 79 + aarch64-linux = "1l3ls47z20xrw6x9qps5jm7vq50xb1acv9gczfdrj9hw6jybgwgg"; 80 + }.${stdenv.system} or (throw "unsupported system ${stdenv.system}"); 78 81 dontUseCmakeConfigure = true; 79 82 dontUseGnConfigure = true; 80 83 preInstall = '' ··· 124 127 "--noexperimental_strict_action_env" 125 128 "--cxxopt=-Wno-maybe-uninitialized" 126 129 "--cxxopt=-Wno-uninitialized" 130 + "--cxxopt=-Wno-error=type-limits" 127 131 ]; 128 132 129 133 passthru.tests = { ··· 137 141 description = "Cloud-native edge and service proxy"; 138 142 license = licenses.asl20; 139 143 maintainers = with maintainers; [ lukegb ]; 140 - platforms = [ "x86_64-linux" ]; # Other platforms will generate different fetch hashes. 144 + platforms = [ "x86_64-linux" "aarch64-linux" ]; 141 145 }; 142 146 }
+1 -1
pkgs/servers/http/pomerium/default.nix
··· 86 86 description = "Authenticating reverse proxy"; 87 87 license = licenses.asl20; 88 88 maintainers = with maintainers; [ lukegb ]; 89 - platforms = [ "x86_64-linux" ]; # Envoy derivation is x86_64-linux only. 89 + platforms = [ "x86_64-linux" "aarch64-linux" ]; 90 90 }; 91 91 }
+3 -3
pkgs/servers/mautrix-whatsapp/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "mautrix-whatsapp"; 5 - version = "0.3.0"; 5 + version = "0.3.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "mautrix"; 9 9 repo = "whatsapp"; 10 10 rev = "v${version}"; 11 - sha256 = "M44APMnpQU+9TTJu4NF528o0JvGvWja4H7XUcAHtxrA="; 11 + sha256 = "adsGPVG/EwpzOqhFJvn3anjTXwGY27a7Bc4NNkBeqJk="; 12 12 }; 13 13 14 14 buildInputs = [ olm ]; 15 15 16 - vendorSha256 = "o3KTcnMd6Tqt9QIfW29wvN8POIFThNg8AdeGDF5wbVc="; 16 + vendorSha256 = "WT8oDtmUFrqfNK/RnEv8+jpGuQEGt+ppjtmcfUGYZv0="; 17 17 18 18 doCheck = false; 19 19
+8 -7
pkgs/tools/misc/fsql/default.nix
··· 1 - { lib, buildGoPackage, fetchFromGitHub }: 1 + { lib, buildGoModule, fetchFromGitHub }: 2 2 3 - buildGoPackage rec { 3 + buildGoModule rec { 4 4 pname = "fsql"; 5 - version = "0.3.1"; 6 - 7 - goPackagePath = "github.com/kshvmdn/fsql"; 5 + version = "0.4.0"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "kshvmdn"; 11 9 repo = "fsql"; 12 10 rev = "v${version}"; 13 - sha256 = "1accpxryk4744ydfrqc3la5k376ji11yr84n66dz5cx0f3n71vmz"; 11 + sha256 = "sha256-/9X1ag18epFjEfB+TbRsHPCZRZblV0ohvDlZ523kXXc="; 14 12 }; 13 + 14 + vendorSha256 = "sha256-h75iQSpHZqc0QNOZWHU1l6xsHB8ClfWXYo1jVMzX72Q="; 15 + 16 + ldflags = [ "-s" "-w" ]; 15 17 16 18 meta = with lib; { 17 19 description = "Search through your filesystem with SQL-esque queries"; ··· 20 22 maintainers = with maintainers; [ pSub ]; 21 23 platforms = platforms.unix; 22 24 }; 23 - 24 25 }
+4 -4
pkgs/tools/misc/goreleaser/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "goreleaser"; 5 - version = "1.7.0"; 5 + version = "1.8.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "goreleaser"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-vTik6KFOkKOik78/H0hvAv6xI+QSALOHD4N6befPaT4="; 11 + sha256 = "sha256-P4F/5n08vony4ed9o62NCK0UXjpRo+jjadQK1ke0Tl0="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-ujtgcH5EF+PZAD/1Y0+yI4m7y2hNJ3w4KB2pvKbdgsU="; 14 + vendorSha256 = "sha256-UAApPni4zIAQVOmPAah5vEE8kTrGaJ3irjtsukBNVHo="; 15 15 16 16 ldflags = [ 17 17 "-s" ··· 26 26 meta = with lib; { 27 27 description = "Deliver Go binaries as fast and easily as possible"; 28 28 homepage = "https://goreleaser.com"; 29 - maintainers = with maintainers; [ c0deaddict endocrimes sarcasticadmin ]; 29 + maintainers = with maintainers; [ c0deaddict endocrimes sarcasticadmin techknowlogick ]; 30 30 license = licenses.mit; 31 31 }; 32 32 }
+2 -2
pkgs/tools/networking/godns/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "godns"; 5 - version = "2.7.3"; 5 + version = "2.7.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "TimothyYe"; 9 9 repo = "godns"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4QWcccJHvytZmWZJnPcI8W6pQCWgXz0FkTe8sX54Cbk="; 11 + sha256 = "sha256-0aE+XcRqk/3/auscVdqdzehrpM6CeSdAJTugHXY8rek="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-vhByl9oJjFIvOskAgLubZ5RCcitKd2jjxi8D9nU6850=";
+5 -1
pkgs/top-level/all-packages.nix
··· 5736 5736 5737 5737 uniscribe = callPackage ../tools/text/uniscribe { }; 5738 5738 5739 + calcoo = callPackage ../applications/misc/calcoo { }; 5740 + 5739 5741 galculator = callPackage ../applications/misc/galculator { 5740 5742 gtk = gtk3; 5741 5743 }; ··· 21308 21310 engelsystem = callPackage ../servers/web-apps/engelsystem { php = php74; }; 21309 21311 21310 21312 envoy = callPackage ../servers/http/envoy { 21311 - jdk = openjdk11; 21313 + jdk = openjdk11_headless; 21312 21314 gn = gn1924; 21313 21315 }; 21314 21316 ··· 29371 29373 symlinks = callPackage ../tools/system/symlinks { }; 29372 29374 29373 29375 syncplay = python3.pkgs.callPackage ../applications/networking/syncplay { }; 29376 + 29377 + syncplay-nogui = syncplay.override { enableGUI = false; }; 29374 29378 29375 29379 syncterm = callPackage ../applications/terminal-emulators/syncterm { }; 29376 29380