* Added libvdpau and vdpauinfo.
svn path=/nixpkgs/branches/stdenv-updates/; revision=25296
This commit is contained in:
parent
a85502fa0d
commit
1f5b61713e
18
pkgs/development/libraries/libvdpau/default.nix
Normal file
18
pkgs/development/libraries/libvdpau/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, xlibs }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "libvdpau-0.4.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
||||||
|
sha256 = "16zmmbawfnvrxjqvgfwxjfd1wh3vyz2cmvxza6cgf4j9qs36y6q6";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig xlibs.libX11 ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
||||||
|
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
|
||||||
|
license = "bsd";
|
||||||
|
};
|
||||||
|
}
|
18
pkgs/tools/X11/vdpauinfo/default.nix
Normal file
18
pkgs/tools/X11/vdpauinfo/default.nix
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{ stdenv, fetchurl, pkgconfig, xlibs, libvdpau }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "vdpauinfo-0.0.6";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
||||||
|
sha256 = "0m2llqjnwh3x6y56hik3znym2mfk1haq81a15p54m60ngf0mvfsj";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pkgconfig xlibs.libX11 libvdpau ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
||||||
|
description = "Tool to query the Video Decode and Presentation API for Unix (VDPAU) abilities of the system";
|
||||||
|
license = "bsd";
|
||||||
|
};
|
||||||
|
}
|
@ -3603,6 +3603,8 @@ let
|
|||||||
|
|
||||||
libv4l = callPackage ../development/libraries/libv4l { };
|
libv4l = callPackage ../development/libraries/libv4l { };
|
||||||
|
|
||||||
|
libvdpau = callPackage ../development/libraries/libvdpau { };
|
||||||
|
|
||||||
libvirt = callPackage ../development/libraries/libvirt { };
|
libvirt = callPackage ../development/libraries/libvirt { };
|
||||||
|
|
||||||
libvncserver = builderDefsPackage (import ../development/libraries/libvncserver) {
|
libvncserver = builderDefsPackage (import ../development/libraries/libvncserver) {
|
||||||
@ -6539,6 +6541,8 @@ let
|
|||||||
qt = qt3;
|
qt = qt3;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
vdpauinfo = callPackage ../tools/X11/vdpauinfo { };
|
||||||
|
|
||||||
veracity = callPackage ../applications/version-management/veracity {};
|
veracity = callPackage ../applications/version-management/veracity {};
|
||||||
|
|
||||||
viewMtn = builderDefsPackage (import ../applications/version-management/viewmtn/0.10.nix)
|
viewMtn = builderDefsPackage (import ../applications/version-management/viewmtn/0.10.nix)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user