···264264 </listitem>
265265 <listitem>
266266 <para>
267267+ <literal>zfs</literal> was updated from 2.1.4 to 2.1.5,
268268+ enabling it to be used with Linux kernel 5.18.
269269+ </para>
270270+ </listitem>
271271+ <listitem>
272272+ <para>
267273 memtest86+ was updated from 5.00-coreboot-002 to 6.00-beta2.
268274 It is now the upstream version from https://www.memtest.org/,
269275 as coreboot’s fork is no longer available.
+2
nixos/doc/manual/release-notes/rl-2211.section.md
···102102103103- Matrix Synapse now requires entries in the `state_group_edges` table to be unique, in order to prevent accidentally introducing duplicate information (for example, because a database backup was restored multiple times). If your Synapse database already has duplicate rows in this table, this could fail with an error and require manual remediation.
104104105105+- `zfs` was updated from 2.1.4 to 2.1.5, enabling it to be used with Linux kernel 5.18.
106106+105107- memtest86+ was updated from 5.00-coreboot-002 to 6.00-beta2. It is now the upstream version from https://www.memtest.org/, as coreboot's fork is no longer available.
106108107109<!-- To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. -->
···11+{ lib
22+, stdenv
33+, fetchurl
44+, readline
55+}:
66+77+stdenv.mkDerivation rec {
88+ pname = "dterm";
99+ version = "0.5";
1010+1111+ src = fetchurl {
1212+ url = "http://www.knossos.net.nz/downloads/dterm-${version}.tgz";
1313+ hash = "sha256-lFM7558e7JZeWYhtXwCjXLZ1xdsdiUGfJTu3LxQKvds=";
1414+ };
1515+1616+ buildInputs = [ readline ];
1717+1818+ postPatch = ''
1919+ substituteInPlace Makefile \
2020+ --replace 'gcc' '${stdenv.cc.targetPrefix}cc'
2121+ '';
2222+2323+ preInstall = "mkdir -p $out/bin";
2424+2525+ installFlags = [ "BIN=$(out)/bin/" ];
2626+2727+ meta = with lib; {
2828+ homepage = "http://www.knossos.net.nz/resources/free-software/dterm/";
2929+ description = "A simple terminal program";
3030+ longDescription = ''
3131+ dterm is a simple terminal emulator, which doesn’t actually emulate any
3232+ particular terminal. Mainly, it is designed for use with xterm and
3333+ friends, which already do a perfectly good emulation, and therefore don’t
3434+ need any special help; dterm simply provides a means by which keystrokes
3535+ are forwarded to the serial line, and data forwarded from the serial line
3636+ appears on the terminal.
3737+ '';
3838+ license = licenses.gpl2Only;
3939+ maintainers = with maintainers; [ auchter ];
4040+ platforms = platforms.unix;
4141+ };
4242+}