1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 14:11:36 +00:00

firefox: Use regular linker

It builds on Nix >= 1.8pre3890 due to the removal of the
ADDR_LIMIT_3GB personality flag.
This commit is contained in:
Eelco Dolstra 2014-11-14 15:57:03 +01:00
parent b61c3c1f3b
commit bf17f43fe9

View file

@ -4187,7 +4187,6 @@ let
tcl = callPackage ../development/interpreters/tcl { }; tcl = callPackage ../development/interpreters/tcl { };
xulrunner = callPackage ../development/interpreters/xulrunner { xulrunner = callPackage ../development/interpreters/xulrunner {
stdenv = if stdenv.isLinux then useGoldLinker stdenv else stdenv;
inherit (gnome) libIDL; inherit (gnome) libIDL;
inherit (pythonPackages) pysqlite; inherit (pythonPackages) pysqlite;
}; };
@ -9573,7 +9572,6 @@ let
filezilla = callPackage ../applications/networking/ftp/filezilla { }; filezilla = callPackage ../applications/networking/ftp/filezilla { };
firefox = callPackage ../applications/networking/browsers/firefox { firefox = callPackage ../applications/networking/browsers/firefox {
stdenv = if stdenv.isLinux then useGoldLinker stdenv else stdenv;
inherit (gnome) libIDL; inherit (gnome) libIDL;
inherit (pythonPackages) pysqlite; inherit (pythonPackages) pysqlite;
}; };