nixUnstable: add util-linuxMinimal to nativeBuildInputs

Fixes an issue in tests where they can fail with `../common.sh: line 92:
unshare: command not found`.
This commit is contained in:
Cole Helbling 2021-03-22 15:49:22 -07:00
parent a8107985b5
commit fc3227e698

View file

@ -10,7 +10,7 @@ let
common =
{ lib, stdenv, perl, curl, bzip2, sqlite, openssl ? null, xz
, bash, coreutils, gzip, gnutar
, bash, coreutils, util-linuxMinimal, gzip, gnutar
, pkg-config, boehmgc, perlPackages, libsodium, brotli, boost, editline, nlohmann_json
, autoreconfHook, autoconf-archive, bison, flex
, jq, libarchive, libcpuid
@ -41,6 +41,7 @@ common =
nativeBuildInputs =
[ pkg-config ]
++ lib.optionals (is24 && stdenv.isLinux) [ util-linuxMinimal ]
++ lib.optionals is24
[ autoreconfHook
autoconf-archive