firefox: Fix evaluation on non-Linux
Actually we only support Firefox on Linux, but we hit the “attribute ‘gcc.override’ missing” error before the platform check.
This commit is contained in:
parent
5c251eb3a0
commit
a5262a9000
|
@ -9286,7 +9286,7 @@ let
|
||||||
firefox13Wrapper = wrapFirefox { browser = firefox13Pkgs.firefox; };
|
firefox13Wrapper = wrapFirefox { browser = firefox13Pkgs.firefox; };
|
||||||
|
|
||||||
firefox = callPackage ../applications/networking/browsers/firefox {
|
firefox = callPackage ../applications/networking/browsers/firefox {
|
||||||
stdenv = useGoldLinker stdenv;
|
stdenv = if stdenv.isLinux then useGoldLinker stdenv else stdenv;
|
||||||
inherit (gnome) libIDL;
|
inherit (gnome) libIDL;
|
||||||
inherit (pythonPackages) pysqlite;
|
inherit (pythonPackages) pysqlite;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue