1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libvdpau/default.nix

23 lines
641 B
Nix
Raw Normal View History

2013-02-02 15:18:48 +00:00
{ stdenv, fetchurl, pkgconfig, xlibs }:
stdenv.mkDerivation rec {
2013-11-16 20:25:57 +00:00
name = "libvdpau-0.7";
2013-02-02 15:18:48 +00:00
src = fetchurl {
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
2013-11-16 20:25:57 +00:00
sha256 = "1q5wx6fmqg2iiw57wxwh5vv4yszqs4nlvlzhzdn9vig8gi30ip14";
};
2013-02-02 15:18:48 +00:00
buildInputs = with xlibs; [ pkgconfig dri2proto libXext ];
2013-02-02 15:18:48 +00:00
propagatedBuildInputs = [ xlibs.libX11 ];
2013-11-16 20:25:57 +00:00
configureFlags = stdenv.lib.optional stdenv.isDarwin [ "--build=x86_64" ];
meta = {
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
license = "bsd";
};
}