Commit 6c88c36e authored by Harinn's avatar Harinn
Browse files

speedscope: 1.24.0 -> 1.25.0

parent 9cadaf69
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -7,13 +7,13 @@

buildNpmPackage rec {
  pname = "speedscope";
  version = "1.24.0";
  version = "1.25.0";

  src = fetchFromGitHub {
    owner = "jlfwong";
    repo = "speedscope";
    tag = "v${version}";
    hash = "sha256-QL+Hm3ujfZeKHMoNgQdxYStgWOIbxjDmXMHKnWddTfs=";
    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
@@ -25,7 +25,7 @@ buildNpmPackage rec {
    '';
  };

  npmDepsHash = "sha256-MgCIiVeq9w5XRPIsZ/9AbZpVwRQdzZgK7VC5Gl7cn78=";
  npmDepsHash = "sha256-hgvO5iU9lerTa9FJRHq9lm67lgrFSM5AR02GShsM3P8=";

  patches = [
    ./fix-shebang.patch
@@ -37,11 +37,6 @@ buildNpmPackage rec {

  dontNpmBuild = true;

  postFixup = ''
    # Remove some dangling symlinks
    rm $out/lib/node_modules/speedscope/node_modules/.bin/sshpk*
  '';

  nativeInstallCheckInputs = [
    versionCheckHook
  ];