mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
libsigrokdecode: fix build with libxcrypt
This commit is contained in:
parent
e963dde643
commit
2e7e473125
@ -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 New Issue
Block a user