mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
libvdpau-va-gl: init at 0.3.4
This commit is contained in:
parent
c0599fdd61
commit
77f280cf18
27
pkgs/development/libraries/libvdpau-va-gl/default.nix
Normal file
27
pkgs/development/libraries/libvdpau-va-gl/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, libX11, libpthreadstubs, libvdpau, glib
|
||||||
|
, libva, ffmpeg, mesa_glu }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.3.4";
|
||||||
|
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
name = "libvdpau-va-gl-${version}";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "i-rinat";
|
||||||
|
repo = "libvdpau-va-gl";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1909f3srm2iy2hv4m6jxg1nxrh9xgsnjs07wfzw3ais1fww0i2nn";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconfig ];
|
||||||
|
buildInputs = [ libX11 libpthreadstubs libvdpau glib libva ffmpeg mesa_glu ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/i-rinat/libvdpau-va-gl;
|
||||||
|
description = "VDPAU driver with OpenGL/VAAPI backend";
|
||||||
|
license = licenses.lgpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ abbradar ];
|
||||||
|
};
|
||||||
|
}
|
@ -7726,6 +7726,8 @@ let
|
|||||||
|
|
||||||
libvdpau = callPackage ../development/libraries/libvdpau { };
|
libvdpau = callPackage ../development/libraries/libvdpau { };
|
||||||
|
|
||||||
|
libvdpau-va-gl = callPackage ../development/libraries/libvdpau-va-gl { };
|
||||||
|
|
||||||
libvirt = callPackage ../development/libraries/libvirt { };
|
libvirt = callPackage ../development/libraries/libvirt { };
|
||||||
|
|
||||||
libvirt-glib = callPackage ../development/libraries/libvirt-glib { };
|
libvirt-glib = callPackage ../development/libraries/libvirt-glib { };
|
||||||
|
Loading…
Reference in New Issue
Block a user