criu: 3.17.1 -> 3.19

The main change is the build fix against `gcc-13`. Otherwise build fails
as:

include/common/list.h:35:19: error: storing the address of local variable 'postpone' in '((struct list_head *)((char *)start + 8))[24].prev' [-Werror=dangling-pointer=]
35 | new->prev = prev;
| ~~~~~~~~~~^~~~~~

Changes:
- https://github.com/checkpoint-restore/criu/releases/tag/v3.18
- https://github.com/checkpoint-restore/criu/releases/tag/v3.19

+3 -21
+3 -21
pkgs/os-specific/linux/criu/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, fetchpatch, protobuf, protobufc, asciidoc, iptables 1 + { stdenv, lib, fetchFromGitHub, protobuf, protobufc, asciidoc, iptables 2 2 , xmlto, docbook_xsl, libpaper, libnl, libcap, libnet, pkg-config, iproute2, gzip 3 3 , which, python3, makeWrapper, docbook_xml_dtd_45, perl, nftables, libbsd, gnutar 4 4 , buildPackages ··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 pname = "criu"; 9 - version = "3.17.1"; 9 + version = "3.19"; 10 10 11 11 src = fetchFromGitHub { 12 12 owner = "checkpoint-restore"; 13 13 repo = pname; 14 14 rev = "v${version}"; 15 - hash = "sha256-0B0cdX5bemy4glF9iWjrQIXIqilyYcCcAN9x4Jjrwzk="; 15 + hash = "sha256-S0nxBHfm7tWmW5PhSDhSAgy1uDa0RD5GTNpMDUHKqwY="; 16 16 }; 17 - 18 - patches = [ 19 - # Fixes redefinition of rseq headers 20 - (fetchpatch { 21 - url = "https://github.com/checkpoint-restore/criu/commit/1e6e826ffb7ac05f33fa123051c2fc2ddf0f68ea.patch"; 22 - hash = "sha256-LJjk0jQ5v5wqeprvBMpxhjLXn7v+lSPldEGgazGUM44="; 23 - }) 24 - 25 - # compat fixes for glibc-2.36 26 - (fetchpatch { 27 - url = "https://github.com/checkpoint-restore/criu/commit/8cd5fccd6cf3d03afb5abe463134d31f54d42258.patch"; 28 - sha256 = "sha256-b65DdLmyIuZik0dNRuWJKUPcDFA6CKq0bi4Vd26zgS4="; 29 - }) 30 - (fetchpatch { 31 - url = "https://github.com/checkpoint-restore/criu/commit/517c0947050e63aac72f63a3bf373d76264723b9.patch"; 32 - sha256 = "sha256-MPZ6oILVoZ7BQEZFjUlp3RuMC7iKTKXAtrUDFqbN4T8="; 33 - }) 34 - ]; 35 17 36 18 enableParallelBuilding = true; 37 19 depsBuildBuild = [ protobufc buildPackages.stdenv.cc ];