1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

redis: move pkgconfig to nativeBuildInputs

This commit is contained in:
Thomas Dy 2021-01-04 11:10:23 +09:00
parent c33e078c01
commit 17f33c9be1

View file

@ -20,7 +20,9 @@ stdenv.mkDerivation rec {
''}
'';
buildInputs = [ lua pkgconfig ]
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ lua ]
++ stdenv.lib.optional (stdenv.isLinux && !stdenv.hostPlatform.isMusl) systemd
++ stdenv.lib.optionals tlsSupport [ openssl ];
# More cross-compiling fixes.