9f629280c6
For now I left *-vaapi out, as the jump would be larger, simple update isn't enough, and it's unreferenced in nixpkgs.
35 lines
785 B
Nix
35 lines
785 B
Nix
{ stdenv, fetchurl, pkgconfig, gstreamer, gst-plugins-base
|
|
, python, gobjectIntrospection
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gst-validate-1.8.2";
|
|
|
|
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 = "33c5b585c5ca1659fe6c09fdf02e45d8132c0d386b405bf527b14ab481a0bafe";
|
|
};
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig gobjectIntrospection
|
|
];
|
|
|
|
buildInputs = [
|
|
python
|
|
];
|
|
|
|
propagatedBuildInputs = [ gstreamer gst-plugins-base ];
|
|
|
|
enableParallelBuilding = true;
|
|
}
|
|
|