nixpkgs/pkgs/development/libraries/gstreamer/validate/default.nix
2016-04-25 19:04:24 -05:00

35 lines
773 B
Nix

{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
, python, gobjectIntrospection
}:
stdenv.mkDerivation rec {
name = "gst-validate-1.8.0";
meta = {
description = "Integration testing infrastructure for the GStreamer framework";
homepage = "http://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 = "1pcy9pfffyk6xiw6aq38kbv7k24x2rljdy8fabjfy1abpmvvfrkn";
};
outputs = [ "dev" "out" ];
nativeBuildInputs = [
pkgconfig gobjectIntrospection
];
buildInputs = [
python
];
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
enableParallelBuilding = true;
}