mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 22:20:51 +00:00
firefox-bin: fix pulseaudio references
This commit is contained in:
parent
ece4c62d4b
commit
0c7b8931f9
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, config, wrapGAppsHook
|
{ lib, stdenv, fetchurl, config, wrapGAppsHook
|
||||||
, alsaLib
|
, alsaLib
|
||||||
, atk
|
, atk
|
||||||
, cairo
|
, cairo
|
||||||
|
@ -87,7 +87,7 @@ stdenv.mkDerivation {
|
||||||
libPath = stdenv.lib.makeLibraryPath
|
libPath = stdenv.lib.makeLibraryPath
|
||||||
[ stdenv.cc.cc
|
[ stdenv.cc.cc
|
||||||
alsaLib
|
alsaLib
|
||||||
alsaLib.dev
|
(lib.getDev alsaLib)
|
||||||
atk
|
atk
|
||||||
cairo
|
cairo
|
||||||
curl
|
curl
|
||||||
|
@ -124,7 +124,7 @@ stdenv.mkDerivation {
|
||||||
pango
|
pango
|
||||||
libheimdal
|
libheimdal
|
||||||
libpulseaudio
|
libpulseaudio
|
||||||
libpulseaudio.dev
|
(lib.getDev libpulseaudio)
|
||||||
systemd
|
systemd
|
||||||
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
|
] + ":" + stdenv.lib.makeSearchPathOutput "lib" "lib64" [
|
||||||
stdenv.cc.cc
|
stdenv.cc.cc
|
||||||
|
|
Loading…
Reference in a new issue