2014-03-19 12:21:10 +01:00
|
|
|
{ newScope
|
2012-12-03 17:55:09 +01:00
|
|
|
|
2012-12-03 18:23:49 +01:00
|
|
|
# package customization
|
2012-12-03 17:55:09 +01:00
|
|
|
, channel ? "stable"
|
2014-03-19 12:21:10 +01:00
|
|
|
, enableSELinux ? false
|
2012-12-03 18:23:49 +01:00
|
|
|
, enableNaCl ? false
|
2014-03-19 12:21:10 +01:00
|
|
|
, useOpenSSL ? false
|
|
|
|
, gnomeSupport ? false
|
|
|
|
, gnomeKeyringSupport ? false
|
2012-12-03 18:23:49 +01:00
|
|
|
, proprietaryCodecs ? true
|
2014-03-19 11:32:39 +01:00
|
|
|
, enablePepperFlash ? false
|
|
|
|
, enablePepperPDF ? false
|
2012-12-03 18:23:49 +01:00
|
|
|
, cupsSupport ? false
|
2014-03-19 12:21:10 +01:00
|
|
|
, pulseSupport ? false
|
chromium: Minimal build (no install) from source.
This only gets chromium to build so far, installation is missing by upstream, so
we need to manually copy the corresponding files. And I guess with nix, we also
need to patch a few paths on installation.
Another issue is that at the moment, a lot of dependencies are used from the
source tree, rather than from the system.
Also, it would be nice to build using LLVM, as it really speeds up compilation a
*LOT* and also has the side effect of resulting in smaller binaries.
Working unit tests would be nice, too. Unfortunately they're quite heavyweight
and take hours to run, so I guess "someday" would be the most appropriate time
to integrate.
Further todo's:
- Allow to disable GConf, GIO and CUPS.
- Option to disable the sandbox (for whatever reason the user might have).
- Integrate gold binutils.
- Pulseaudio support.
- Clearly separate Linux specific stuff.
2012-06-12 10:19:22 +02:00
|
|
|
}:
|
2009-10-30 09:45:58 +01:00
|
|
|
|
chromium: Minimal build (no install) from source.
This only gets chromium to build so far, installation is missing by upstream, so
we need to manually copy the corresponding files. And I guess with nix, we also
need to patch a few paths on installation.
Another issue is that at the moment, a lot of dependencies are used from the
source tree, rather than from the system.
Also, it would be nice to build using LLVM, as it really speeds up compilation a
*LOT* and also has the side effect of resulting in smaller binaries.
Working unit tests would be nice, too. Unfortunately they're quite heavyweight
and take hours to run, so I guess "someday" would be the most appropriate time
to integrate.
Further todo's:
- Allow to disable GConf, GIO and CUPS.
- Option to disable the sandbox (for whatever reason the user might have).
- Integrate gold binutils.
- Pulseaudio support.
- Clearly separate Linux specific stuff.
2012-06-12 10:19:22 +02:00
|
|
|
let
|
2014-03-19 12:21:10 +01:00
|
|
|
callPackage = newScope chromium;
|
2014-03-19 11:32:39 +01:00
|
|
|
|
2014-03-19 12:21:10 +01:00
|
|
|
chromium = {
|
2014-03-19 12:51:39 +01:00
|
|
|
source = callPackage ./source.nix {
|
|
|
|
inherit channel;
|
|
|
|
# XXX: common config
|
|
|
|
inherit useOpenSSL;
|
|
|
|
};
|
|
|
|
|
2014-03-19 12:21:10 +01:00
|
|
|
browser = callPackage ./browser.nix {
|
2014-03-19 12:51:39 +01:00
|
|
|
inherit enableSELinux enableNaCl useOpenSSL gnomeSupport
|
2014-03-19 12:57:49 +01:00
|
|
|
gnomeKeyringSupport proprietaryCodecs cupsSupport
|
|
|
|
pulseSupport;
|
|
|
|
};
|
|
|
|
|
|
|
|
plugins = callPackage ./plugins.nix {
|
|
|
|
inherit enablePepperFlash enablePepperPDF;
|
2014-03-19 11:32:39 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2014-03-19 12:21:10 +01:00
|
|
|
in chromium.browser
|