libsigrokdecode: enable check

and remove libsigrok, they don't list it as a dependency
  and sigrok-cli works without it it seems
This commit is contained in:
Evils 2021-07-27 07:53:03 +02:00 committed by Bjørn Forsman
parent 24bc10546a
commit 77f78394e5

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, pkg-config, glib, python3, libsigrok, check }:
{ lib, stdenv, fetchurl, pkg-config, glib, python3, check }:
stdenv.mkDerivation rec {
pname = "libsigrokdecode";
@ -10,7 +10,9 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib python3 libsigrok check ];
buildInputs = [ glib python3 ];
checkInputs = [ check ];
doCheck = true;
meta = with lib; {
description = "Protocol decoding library for the sigrok signal analysis software suite";