3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/gstreamer/vaapi/default.nix

37 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, meson, ninja, pkgconfig, gst-plugins-base, bzip2, libva, wayland
, libdrm, udev, xorg, libGLU_combined, gstreamer, gst-plugins-bad, nasm
, libvpx, python
2015-05-24 11:53:14 +01:00
}:
stdenv.mkDerivation rec {
name = "gst-vaapi-${version}";
2018-10-17 02:41:47 +01:00
version = "1.14.4";
2015-05-24 11:53:14 +01:00
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-vaapi/gstreamer-vaapi-${version}.tar.xz";
2018-10-17 02:41:47 +01:00
sha256 = "18yha6119v7mwz47idv2vykzfssqfmh6hc824wqqsshwjvzdn66f";
2015-05-24 11:53:14 +01:00
};
outputs = [ "out" "dev" ];
2016-04-24 13:39:30 +01:00
nativeBuildInputs = [ meson ninja pkgconfig bzip2 ];
2015-05-24 11:53:14 +01:00
buildInputs = [
gstreamer gst-plugins-base gst-plugins-bad libva wayland libdrm udev
xorg.libX11 xorg.libXext xorg.libXv xorg.libXrandr xorg.libSM
xorg.libICE libGLU_combined nasm libvpx python
];
2015-05-24 11:53:14 +01:00
preConfigure = ''
2015-05-24 11:53:14 +01:00
export GST_PLUGIN_PATH_1_0=$out/lib/gstreamer-1.0
mkdir -p $GST_PLUGIN_PATH_1_0
'';
2015-05-24 11:53:14 +01:00
meta = {
2017-09-16 20:28:31 +01:00
homepage = https://gstreamer.freedesktop.org;
2015-05-24 11:53:14 +01:00
license = stdenv.lib.licenses.lgpl21Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ tstrobel ];
};
}