nixpkgs/pkgs/tools/networking/sitespeed-io/default.nix
2024-03-26 06:54:23 +00:00

98 lines
2.9 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, buildNpmPackage
, nodejs_18
, 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 = "33.4.0";
src = fetchFromGitHub {
owner = "sitespeedio";
repo = "sitespeed.io";
rev = "v${version}";
hash = "sha256-Yjp6sbMi4s23CecCYXxnUDQ9dc4SgnUnbBV8kLhv58U=";
};
nodejs = nodejs_18;
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;
dontNpmBuild = true;
npmInstallFlags = [ "--omit=dev" ];
npmDepsHash = "sha256-OT0dKF6dLuAZ5SgMVbrOyirJnpPNL5ygPjwvXqjKF1Q=";
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 = with lib; {
description = "An open source tool that helps you monitor, analyze and optimize your website speed and performance";
homepage = "https://sitespeed.io";
license = licenses.mit;
maintainers = with maintainers; [ misterio77 ];
platforms = lib.unique (geckodriver.meta.platforms ++ chromedriver.meta.platforms);
mainProgram = "sitespeed-io";
};
}