54 lines
1.2 KiB
Nix
54 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
buildNpmPackage (finalAttrs: {
|
|
pname = "speedscope";
|
|
version = "1.25.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jlfwong";
|
|
repo = "speedscope";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-2kBgOMWSr3XEkcfzetA4njIE2co+mHoPPUFmKn0tMVk=";
|
|
|
|
# scripts/prepack.sh wants to extract the git commit from .git
|
|
# We don't want to keep .git for reproducibility reasons, so save the commit
|
|
# to a file and patch the script.
|
|
leaveDotGit = true;
|
|
postFetch = ''
|
|
( cd $out; git rev-parse HEAD > COMMIT )
|
|
rm -rf $out/.git
|
|
'';
|
|
};
|
|
|
|
npmDepsHash = "sha256-hgvO5iU9lerTa9FJRHq9lm67lgrFSM5AR02GShsM3P8=";
|
|
|
|
patches = [
|
|
./fix-shebang.patch
|
|
];
|
|
|
|
postConfigure = ''
|
|
patchShebangs scripts
|
|
'';
|
|
|
|
dontNpmBuild = true;
|
|
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
doInstallCheck = true;
|
|
|
|
meta = {
|
|
description = "Fast and interactive web-based viewer for performance profiles";
|
|
homepage = "https://github.com/jlfwong/speedscope";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "speedscope";
|
|
maintainers = with lib.maintainers; [ thomasjm ];
|
|
};
|
|
})
|