about summary refs log tree commit diff
path: root/pkgs/tools/X11/vdpauinfo
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2010-12-27 18:30:52 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2010-12-27 18:30:52 +0000
commit1f5b61713e7e08d1aac73e87d7e368eadf92d468 (patch)
treeccfcfdcff9b70c81fdeb01f54e6077329339409e /pkgs/tools/X11/vdpauinfo
parenta85502fa0d2523f542bcc3648c1a8fa00007e926 (diff)
downloadnixlib-1f5b61713e7e08d1aac73e87d7e368eadf92d468.tar
nixlib-1f5b61713e7e08d1aac73e87d7e368eadf92d468.tar.gz
nixlib-1f5b61713e7e08d1aac73e87d7e368eadf92d468.tar.bz2
nixlib-1f5b61713e7e08d1aac73e87d7e368eadf92d468.tar.lz
nixlib-1f5b61713e7e08d1aac73e87d7e368eadf92d468.tar.xz
nixlib-1f5b61713e7e08d1aac73e87d7e368eadf92d468.tar.zst
nixlib-1f5b61713e7e08d1aac73e87d7e368eadf92d468.zip
* Added libvdpau and vdpauinfo.
svn path=/nixpkgs/branches/stdenv-updates/; revision=25296
Diffstat (limited to 'pkgs/tools/X11/vdpauinfo')
-rw-r--r--pkgs/tools/X11/vdpauinfo/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/tools/X11/vdpauinfo/default.nix b/pkgs/tools/X11/vdpauinfo/default.nix
new file mode 100644
index 000000000000..23233861a061
--- /dev/null
+++ b/pkgs/tools/X11/vdpauinfo/default.nix
@@ -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";
+  };
+}