From 1f5b61713e7e08d1aac73e87d7e368eadf92d468 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 27 Dec 2010 18:30:52 +0000 Subject: * Added libvdpau and vdpauinfo. svn path=/nixpkgs/branches/stdenv-updates/; revision=25296 --- pkgs/development/libraries/libvdpau/default.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 pkgs/development/libraries/libvdpau/default.nix (limited to 'pkgs/development/libraries/libvdpau') diff --git a/pkgs/development/libraries/libvdpau/default.nix b/pkgs/development/libraries/libvdpau/default.nix new file mode 100644 index 00000000000..b6f8260bc19 --- /dev/null +++ b/pkgs/development/libraries/libvdpau/default.nix @@ -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"; + }; +} -- cgit 1.4.1