mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
libvdpau: simplify arguments to this function
Patch submitted by Jan Malakhovski <oxij@oxij.org>.
This commit is contained in:
parent
281494cd51
commit
a2f4366497
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, pkgconfig, xlibs }:
|
||||
{ stdenv, fetchurl, pkgconfig, libX11 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libvdpau-0.4.1";
|
||||
|
@ -8,7 +8,9 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "16zmmbawfnvrxjqvgfwxjfd1wh3vyz2cmvxza6cgf4j9qs36y6q6";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig xlibs.libX11 ];
|
||||
buildInputs = [ pkgconfig libX11 ];
|
||||
|
||||
propagatedBuildInputs = [ libX11 ];
|
||||
|
||||
meta = {
|
||||
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
||||
|
|
|
@ -4238,7 +4238,7 @@ let
|
|||
|
||||
libva = callPackage ../development/libraries/libva { };
|
||||
|
||||
libvdpau = callPackage ../development/libraries/libvdpau { };
|
||||
libvdpau = callPackage ../development/libraries/libvdpau { inherit (xlibs) libX11; };
|
||||
|
||||
libvirt = callPackage ../development/libraries/libvirt { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue