sitespeed-io: 38.4.1 -> 39.3.1

Diff: https://github.com/sitespeedio/sitespeed.io/compare/v38.4.1...v39.3.1
This commit is contained in:
Gaetan Lepage
2026-01-12 10:00:33 +00:00
parent bde97c445c
commit 4563294110
+20 -10
View File
@@ -9,6 +9,7 @@
imagemagick_light,
procps,
python3,
versionCheckHook,
xorg,
nix-update-script,
@@ -24,21 +25,23 @@
}:
assert
(!withFirefox && !withChromium) -> throw "Either `withFirefox` or `withChromium` must be enabled.";
buildNpmPackage rec {
buildNpmPackage (finalAttrs: {
pname = "sitespeed-io";
version = "38.4.1";
version = "39.3.1";
src = fetchFromGitHub {
owner = "sitespeedio";
repo = "sitespeed.io";
tag = "v${version}";
hash = "sha256-7aqZ63q+17MmUjHwh5Z9yqvwRq/Av+UOswIlSA2V14E=";
tag = "v${finalAttrs.version}";
hash = "sha256-Qgw1rqUZ/2znTmvqSCSyTyzQWpHtxsG/tHNXDphT/Ng=";
};
# Don't try to download the browser drivers
CHROMEDRIVER_SKIP_DOWNLOAD = true;
GECKODRIVER_SKIP_DOWNLOAD = true;
EDGEDRIVER_SKIP_DOWNLOAD = true;
env = {
# Don't try to download the browser drivers
CHROMEDRIVER_SKIP_DOWNLOAD = true;
GECKODRIVER_SKIP_DOWNLOAD = true;
EDGEDRIVER_SKIP_DOWNLOAD = true;
};
buildInputs = [
systemdLibs
@@ -46,13 +49,18 @@ buildNpmPackage rec {
dontNpmBuild = true;
npmInstallFlags = [ "--omit=dev" ];
npmDepsHash = "sha256-2v/3Ygy6pAyfoQKcbJphIExcU46xc9c6+yXP2JbX11Y=";
npmDepsHash = "sha256-/SzoscPVDhOlAPKSCNkGnAbXjCXVD6KRD1MglM3ExAQ=";
postInstall = ''
mv $out/bin/sitespeed{.,-}io
mv $out/bin/sitespeed{.,-}io-wpr
'';
nativeInstallCheckInputs = [
versionCheckHook
];
doInstallCheck = true;
postFixup =
let
chromiumArgs = lib.concatStringsSep " " [
@@ -95,9 +103,11 @@ buildNpmPackage rec {
meta = {
description = "Open source tool that helps you monitor, analyze and optimize your website speed and performance";
homepage = "https://sitespeed.io";
downloadPage = "https://github.com/sitespeedio/sitespeed.io";
changelog = "https://github.com/sitespeedio/sitespeed.io/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ misterio77 ];
platforms = lib.unique (geckodriver.meta.platforms ++ chromedriver.meta.platforms);
mainProgram = "sitespeed-io";
};
}
})