{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base , python, gobjectIntrospection, json-glib }: stdenv.mkDerivation rec { name = "gst-validate-1.12.3"; meta = { description = "Integration testing infrastructure for the GStreamer framework"; homepage = https://gstreamer.freedesktop.org; license = stdenv.lib.licenses.lgpl2Plus; platforms = stdenv.lib.platforms.unix; }; src = fetchurl { url = "${meta.homepage}/src/gst-validate/${name}.tar.xz"; sha256 = "17j812pkzgbyn9ys3b305yl5mrf9nbm8whwj4iqdskr742fr8fai"; }; outputs = [ "out" "dev" ]; nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; buildInputs = [ python json-glib ]; propagatedBuildInputs = [ gstreamer gst-plugins-base ]; enableParallelBuilding = true; }