summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-03-20 08:58:55 -0500
committerGitHub <noreply@github.com>2022-03-20 08:58:55 -0500
commit158e6a355261d7f95e65329900bd4f83f67012da (patch)
tree79ddf0e15bc4d0d73bf49ba0e2cfab9cf1323e0f
parent2fb7f36f0e925835bbe743b78263fe7f95b56b50 (diff)
parent5c13acfdb2c1160e426e98fd46f6f32e8408b5c8 (diff)
downloadnixpkgs-158e6a355261d7f95e65329900bd4f83f67012da.tar
nixpkgs-158e6a355261d7f95e65329900bd4f83f67012da.tar.gz
nixpkgs-158e6a355261d7f95e65329900bd4f83f67012da.tar.bz2
nixpkgs-158e6a355261d7f95e65329900bd4f83f67012da.tar.lz
nixpkgs-158e6a355261d7f95e65329900bd4f83f67012da.tar.xz
nixpkgs-158e6a355261d7f95e65329900bd4f83f67012da.tar.zst
nixpkgs-158e6a355261d7f95e65329900bd4f83f67012da.zip
Merge pull request #164521 from r-ryantm/auto-update/yarn
yarn: 1.22.17 -> 1.22.18
-rw-r--r--pkgs/development/tools/yarn/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/yarn/default.nix b/pkgs/development/tools/yarn/default.nix
index 50d29cb4a1d..0e39a714ccd 100644
--- a/pkgs/development/tools/yarn/default.nix
+++ b/pkgs/development/tools/yarn/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "yarn";
-  version = "1.22.17";
+  version = "1.22.18";
 
   src = fetchzip {
     url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
-    sha256 = "1skzlyv2976bl1063f94422jbjy4ns1nxl622biizq31z4821yvj";
+    sha256 = "sha256-gI4v/WPWrNa2i2oct8Ns7bpDzmDCy+c86pGKpNznhh0=";
   };
 
   buildInputs = [ nodejs ];