libsigrokdecode: enable check

and remove libsigrok, they don't list it as a dependency
and sigrok-cli works without it it seems

authored by Evils and committed by Bjørn Forsman 77f78394 24bc1054

+4 -2
+4 -2
pkgs/development/tools/libsigrokdecode/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, glib, python3, libsigrok, check }: 1 + { lib, stdenv, fetchurl, pkg-config, glib, python3, check }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libsigrokdecode"; ··· 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ]; 13 - buildInputs = [ glib python3 libsigrok check ]; 13 + buildInputs = [ glib python3 ]; 14 + checkInputs = [ check ]; 15 + doCheck = true; 14 16 15 17 meta = with lib; { 16 18 description = "Protocol decoding library for the sigrok signal analysis software suite";