From fdd9d132ca0802e08adbaa0d947fc353f633dee1 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 15 Nov 2014 16:44:27 +0100 Subject: [PATCH] mpv: Remove waf script from buildInputs. Since b23dbb1a5dffbfa3abb47fcd0f1579ac2e6f29fc, if buildInputs contains a plain file it is used as a setup hook. The waf script which is used here in mpv however isn't a setup hook and also shouldn't be included in buildInputs as it was kind of a no-op before already. Failed build log: https://headcounter.org/hydra/build/582548/nixlog/1/raw Signed-off-by: aszlig --- pkgs/applications/video/mpv/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index 46595c5609f..9eed69abe87 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation rec { }; buildInputs = with stdenv.lib; - [ waf python3 lua perl freetype pkgconfig ffmpeg libass docutils which libpthreadstubs lua5_sockets ] + [ python3 lua perl freetype pkgconfig ffmpeg libass docutils which libpthreadstubs lua5_sockets ] ++ optionals x11Support [ libX11 libXext mesa libXxf86vm ] ++ optional alsaSupport alsaLib ++ optional xvSupport libXv