mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
97 lines
2.9 KiB
Nix
97 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 = "34.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sitespeedio";
|
|
repo = "sitespeed.io";
|
|
rev = "v${version}";
|
|
hash = "sha256-yC/TlAJa71hbPYYuqPV+k3syGuo/VhnNjXmmxh47ySQ=";
|
|
};
|
|
|
|
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-Q0cWxV5OOaG8Z3aM2j0HtD1e9yPFVDSRcMKBf/yscv4=";
|
|
|
|
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 = "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";
|
|
};
|
|
}
|