Unverified Commit a0a154b0 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

firebase-tools: 13.29.2 -> 13.29.3 (#378816)

parents 61ed5bdb 4dc63418
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
@@ -5,22 +5,19 @@
  fetchFromGitHub,
  python3,
  xcbuild,
  fetchpatch,
}:
let
  version = "13.29.2";
buildNpmPackage rec {
  pname = "firebase-tools";
  version = "13.29.3";

  src = fetchFromGitHub {
    owner = "firebase";
    repo = "firebase-tools";
    tag = "v${version}";
    hash = "sha256-A/UHJC1BY2A/Zezdvq3W7Ra55TEwqTaYDI8VTwy7yrA=";
    hash = "sha256-ZY4hbo84qdvBGOpGWKKWR3bHHTP2+Poa1od7FCy9uSE=";
  };
in
buildNpmPackage {
  pname = "firebase-tools";
  inherit version src;

  npmDepsHash = "sha256-5ARfYHmWJFaO7pngWVDQ7R3PAopg4+2Q2kspBTpKclM=";
  npmDepsHash = "sha256-UqrTyK5IOK4N6z1UfApqzGCHj0H1/FujWdgJPrQoNxQ=";

  postPatch = ''
    ln -s npm-shrinkwrap.json package-lock.json
@@ -39,7 +36,7 @@ buildNpmPackage {
  };

  meta = {
    changelog = "https://github.com/firebase/firebase-tools/blob/${src.rev}/CHANGELOG.md";
    changelog = "https://github.com/firebase/firebase-tools/blob/v${version}/CHANGELOG.md";
    description = "Manage, and deploy your Firebase project from the command line";
    homepage = "https://github.com/firebase/firebase-tools";
    license = lib.licenses.mit;