From dd75ac4355c185b6e4db33651aadc4c3669ad2c7 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 30 May 2015 14:27:47 +0200 Subject: Fix references to pulseaudio. In NixOS/nixpkgs@be5f408, the "pulseaudio" attribute has been removed to prevent accidentally using it if we just want to have the library, so let's fix this on our side. Signed-off-by: aszlig --- pkgs/twitchstream/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/twitchstream/default.nix') diff --git a/pkgs/twitchstream/default.nix b/pkgs/twitchstream/default.nix index 543ad261..b6d0b523 100644 --- a/pkgs/twitchstream/default.nix +++ b/pkgs/twitchstream/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, writeScriptBin, ffmpeg_2, pulseaudio }: +{ stdenv, fetchurl, writeScriptBin, ffmpeg_2, libpulseaudio }: # FIXME: Clean up this whole file! @@ -46,11 +46,11 @@ let "--enable-libvo-aacenc" ]; preConfigure = '' - addPkgConfigPath "${pulseaudio}" + addPkgConfigPath "${libpulseaudio}" addPkgConfigPath "${aacenc}" ''; NIX_CFLAGS_COMPILE = "-I${aacenc}/include -L${aacenc}/lib"; - buildInputs = attrs.buildInputs ++ [ pulseaudio aacenc ]; + buildInputs = attrs.buildInputs ++ [ libpulseaudio aacenc ]; }); script = let -- cgit 1.4.1