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