From 4dc6341855d8a39c31cc663835c120ad711efb3a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sun, 2 Feb 2025 14:22:25 +0100 Subject: [PATCH] firebase-tools: 13.29.2 -> 13.29.3 Diff: https://github.com/firebase/firebase-tools/compare/refs/tags/v13.29.2...v13.29.3 Changelog: https://github.com/firebase/firebase-tools/blob/refs/tags/v13.29.3/CHANGELOG.md --- pkgs/by-name/fi/firebase-tools/package.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/pkgs/by-name/fi/firebase-tools/package.nix b/pkgs/by-name/fi/firebase-tools/package.nix index 7877540a8c4f..2b0f99cce68f 100644 --- a/pkgs/by-name/fi/firebase-tools/package.nix +++ b/pkgs/by-name/fi/firebase-tools/package.nix @@ -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;