libsigrokdecode: fix build with libxcrypt
This commit is contained in:
parent
e963dde643
commit
2e7e473125
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue