Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
108 lines
3.0 KiB
Nix
108 lines
3.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
buildNpmPackage,
|
|
systemdLibs,
|
|
coreutils,
|
|
ffmpeg-headless,
|
|
imagemagick_light,
|
|
procps,
|
|
python3,
|
|
xorg,
|
|
nix-update-script,
|
|
|
|
# chromedriver is more efficient than geckodriver, but is available on less platforms.
|
|
|
|
withChromium ? (lib.elem stdenv.hostPlatform.system chromedriver.meta.platforms),
|
|
chromedriver,
|
|
chromium,
|
|
|
|
withFirefox ? (lib.elem stdenv.hostPlatform.system geckodriver.meta.platforms),
|
|
geckodriver,
|
|
firefox,
|
|
}:
|
|
assert
|
|
(!withFirefox && !withChromium) -> throw "Either `withFirefox` or `withChromium` must be enabled.";
|
|
buildNpmPackage rec {
|
|
pname = "sitespeed-io";
|
|
version = "38.3.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sitespeedio";
|
|
repo = "sitespeed.io";
|
|
tag = "v${version}";
|
|
hash = "sha256-45lvEM8vkoXdbZNJamUR94PD0EwtoNEhWSNyV68yzPo=";
|
|
};
|
|
|
|
postPatch = ''
|
|
ln -s npm-shrinkwrap.json package-lock.json
|
|
'';
|
|
|
|
# Don't try to download the browser drivers
|
|
CHROMEDRIVER_SKIP_DOWNLOAD = true;
|
|
GECKODRIVER_SKIP_DOWNLOAD = true;
|
|
EDGEDRIVER_SKIP_DOWNLOAD = true;
|
|
|
|
buildInputs = [
|
|
systemdLibs
|
|
];
|
|
|
|
dontNpmBuild = true;
|
|
npmInstallFlags = [ "--omit=dev" ];
|
|
npmDepsHash = "sha256-rXGoIIbKNZCBhhuRM/0WcaciH/bLQamipmOIh1EXJlU=";
|
|
|
|
postInstall = ''
|
|
mv $out/bin/sitespeed{.,-}io
|
|
mv $out/bin/sitespeed{.,-}io-wpr
|
|
'';
|
|
|
|
postFixup =
|
|
let
|
|
chromiumArgs = lib.concatStringsSep " " [
|
|
"--browsertime.chrome.chromedriverPath=${lib.getExe chromedriver}"
|
|
"--browsertime.chrome.binaryPath=${lib.getExe chromium}"
|
|
];
|
|
firefoxArgs = lib.concatStringsSep " " [
|
|
"--browsertime.firefox.geckodriverPath=${lib.getExe geckodriver}"
|
|
"--browsertime.firefox.binaryPath=${lib.getExe firefox}"
|
|
# Firefox crashes if the profile template dir is not writable
|
|
"--browsertime.firefox.profileTemplate=$(mktemp -d)"
|
|
];
|
|
in
|
|
''
|
|
wrapProgram $out/bin/sitespeed-io \
|
|
--set PATH ${
|
|
lib.makeBinPath [
|
|
(python3.withPackages (p: [
|
|
p.numpy
|
|
p.opencv4
|
|
p.pyssim
|
|
]))
|
|
ffmpeg-headless
|
|
imagemagick_light
|
|
xorg.xorgserver
|
|
procps
|
|
coreutils
|
|
]
|
|
} \
|
|
${lib.optionalString withChromium "--add-flags '${chromiumArgs}'"} \
|
|
${lib.optionalString withFirefox "--add-flags '${firefoxArgs}'"} \
|
|
${lib.optionalString (!withFirefox && withChromium) "--add-flags '-b chrome'"} \
|
|
${lib.optionalString (withFirefox && !withChromium) "--add-flags '-b firefox'"}
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Open source tool that helps you monitor, analyze and optimize your website speed and performance";
|
|
homepage = "https://sitespeed.io";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ misterio77 ];
|
|
platforms = lib.unique (geckodriver.meta.platforms ++ chromedriver.meta.platforms);
|
|
mainProgram = "sitespeed-io";
|
|
};
|
|
}
|