forked from mirrors/nixpkgs
ec3965d8d0
See #490 discussion. This reverts commit1278859d31
, reversing changes made to0c020c98f9
. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
21 lines
537 B
Nix
21 lines
537 B
Nix
{ stdenv, fetchurl, pkgconfig, libX11 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libvdpau-0.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
|
sha256 = "0k2ydz4yp7zynlkpd1llfwax30xndwbca36z83ah1i4ldjw2gfhx";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig libX11 ];
|
|
|
|
propagatedBuildInputs = [ libX11 ];
|
|
|
|
meta = {
|
|
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
|
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
|
|
license = "bsd";
|
|
};
|
|
}
|