···122122 </listitem>
123123 <listitem>
124124 <para>
125125+ <link xlink:href="https://snowflake.torproject.org/">snowflake-proxy</link>,
126126+ a system to defeat internet censorship. Available as
127127+ <link xlink:href="options.html#opt-services.snowflake-proxy.enable">services.snowflake-proxy</link>.
128128+ </para>
129129+ </listitem>
130130+ <listitem>
131131+ <para>
125132 <link xlink:href="https://ergo.chat">ergochat</link>, a modern
126133 IRC with IRCv3 features. Available as
127134 <link xlink:href="options.html#opt-services.ergochat.enable">services.ergochat</link>.
+2
nixos/doc/manual/release-notes/rl-2205.section.md
···37373838- [heisenbridge](https://github.com/hifi/heisenbridge), a bouncer-style Matrix IRC bridge. Available as [services.heisenbridge](options.html#opt-services.heisenbridge.enable).
39394040+- [snowflake-proxy](https://snowflake.torproject.org/), a system to defeat internet censorship. Available as [services.snowflake-proxy](options.html#opt-services.snowflake-proxy.enable).
4141+4042- [ergochat](https://ergo.chat), a modern IRC with IRCv3 features. Available as [services.ergochat](options.html#opt-services.ergochat.enable).
41434244- [PowerDNS-Admin](https://github.com/ngoduykhanh/PowerDNS-Admin), a web interface for the PowerDNS server. Available at [services.powerdns-admin](options.html#opt-services.powerdns-admin.enable).
···33let
44 ocamlDependencies = version:
55 if lib.versionAtLeast version "4.2"
66- then with ocaml-ng.ocamlPackages; [
66+ then with ocaml-ng.ocamlPackages_4_12; [
77 ocaml
88 findlib
99 sedlex_2
+3
pkgs/development/compilers/reason/default.nix
···22, fix, menhir, menhirLib, menhirSdk, merlin-extend, ppxlib, utop, cppo, ppx_derivers
33}:
4455+lib.throwIfNot (lib.versionOlder ocaml.version "4.13")
66+ "reason is not available for OCaml ${ocaml.version}"
77+58stdenv.mkDerivation rec {
69 pname = "ocaml${ocaml.version}-reason";
710 version = "3.7.0";
+1-3
pkgs/development/libraries/arrow-cpp/default.nix
···1919, grpc
2020, gtest
2121, jemalloc
2222-, libnsl
2322, lz4
2423, minio
2524, ninja
···3938, zlib
4039, zstd
4140, enableShared ? !stdenv.hostPlatform.isStatic
4242-, enableFlight ? !stdenv.isDarwin # libnsl is not supported on darwin
4141+, enableFlight ? true
4342, enableJemalloc ? !(stdenv.isAarch64 && stdenv.isDarwin)
4443 # boost/process is broken in 1.69 on darwin, but fixed in 1.70 and
4544 # non-existent in older versions
···129128 python3.pkgs.numpy
130129 ] ++ lib.optionals enableFlight [
131130 grpc
132132- libnsl
133131 openssl
134132 protobuf
135133 ] ++ lib.optionals enableS3 [ aws-sdk-cpp openssl ]
···2828 }."${version}";
2929 };
3030 ocamlPackages =
3131- if lib.versionAtLeast version "0.17.0"
3131+ if lib.versionAtLeast version "0.19.0"
3232 then ocaml-ng.ocamlPackages
3333+ else if lib.versionAtLeast version "0.17.0"
3434+ then ocaml-ng.ocamlPackages_4_12
3335 else if lib.versionAtLeast version "0.14.3"
3436 then ocaml-ng.ocamlPackages_4_10
3537 else ocaml-ng.ocamlPackages_4_07