about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-01-06 11:21:40 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-01-06 11:22:28 +0100
commit29e93555ec43618c8fee71a301a5485e1189ab9b (patch)
treeaf0e6af0b301a3803a2a0175769cfc7b1c4c085c /pkgs/applications
parentcb70a594cbf6cc097d9ac57d3b036d2418452006 (diff)
downloadnixlib-29e93555ec43618c8fee71a301a5485e1189ab9b.tar
nixlib-29e93555ec43618c8fee71a301a5485e1189ab9b.tar.gz
nixlib-29e93555ec43618c8fee71a301a5485e1189ab9b.tar.bz2
nixlib-29e93555ec43618c8fee71a301a5485e1189ab9b.tar.lz
nixlib-29e93555ec43618c8fee71a301a5485e1189ab9b.tar.xz
nixlib-29e93555ec43618c8fee71a301a5485e1189ab9b.tar.zst
nixlib-29e93555ec43618c8fee71a301a5485e1189ab9b.zip
firefox*: fixup build after updating sed
I failed to simply patch the bad [:space:] usage; I don't know why.
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/browsers/firefox/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix
index 3b0eb1405169..6a688de02d08 100644
--- a/pkgs/applications/networking/browsers/firefox/default.nix
+++ b/pkgs/applications/networking/browsers/firefox/default.nix
@@ -44,7 +44,7 @@ common = { pname, version, sha512, updateScript }: stdenv.mkDerivation rec {
     ++ lib.optional enableGTK3 gtk3
     ++ lib.optionals (!passthru.ffmpegSupport) [ gstreamer gst_plugins_base ];
 
-  nativeBuildInputs = [autoconf213 which];
+  nativeBuildInputs = [ autoconf213 which gnused ];
 
   configureFlags =
     [ "--enable-application=browser"