crun: add criu support

Adding the criu dependency allows using the feature, too:

```
> ./result/bin/crun --version
crun version 0.17
commit: 0.17
spec: 1.0.0
+SYSTEMD +SELINUX +APPARMOR +CAP +SECCOMP +EBPF +CRIU +YAJL
```

Signed-off-by: Sascha Grunert <mail@saschagrunert.de>
This commit is contained in:
Sascha Grunert 2021-02-11 13:58:56 +01:00
parent 3d94e81a16
commit c2ef7b1cbf
No known key found for this signature in database
GPG Key ID: BEDA150F1B0AFEEC

View File

@ -10,6 +10,7 @@
, systemd
, yajl
, nixosTests
, criu
}:
let
@ -47,7 +48,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ autoreconfHook go-md2man pkg-config python3 ];
buildInputs = [ libcap libseccomp systemd yajl ];
buildInputs = [ criu libcap libseccomp systemd yajl ];
enableParallelBuilding = true;