libsigrokdecode: fix build with libxcrypt

This commit is contained in:
Franz Pletz 2022-09-30 02:10:16 +02:00 committed by Martin Weinelt
parent e963dde643
commit 2e7e473125
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pkg-config, glib, python3, check }:
{ lib, stdenv, fetchurl, pkg-config, glib, python3, check, libxcrypt }:
stdenv.mkDerivation rec {
pname = "libsigrokdecode";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib python3 ];
buildInputs = [ glib python3 libxcrypt ];
checkInputs = [ check ];
doCheck = true;