about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2018-04-17 23:16:31 +0100
committerGitHub <noreply@github.com>2018-04-17 23:16:31 +0100
commit98c66c742cebfa4a0841739872965227db897ab6 (patch)
tree23a60bdcf39884803f1318db927f8020244f42e2 /pkgs
parentad77d624a1647c46b34cebea8e016d3a5d66b643 (diff)
parent78f661fd5e348746fa6c7998280ed5950e10a295 (diff)
downloadnixlib-98c66c742cebfa4a0841739872965227db897ab6.tar
nixlib-98c66c742cebfa4a0841739872965227db897ab6.tar.gz
nixlib-98c66c742cebfa4a0841739872965227db897ab6.tar.bz2
nixlib-98c66c742cebfa4a0841739872965227db897ab6.tar.lz
nixlib-98c66c742cebfa4a0841739872965227db897ab6.tar.xz
nixlib-98c66c742cebfa4a0841739872965227db897ab6.tar.zst
nixlib-98c66c742cebfa4a0841739872965227db897ab6.zip
Merge pull request #38997 from dywedir/yarn
yarn: 1.5.1 -> 1.6.0
Diffstat (limited to 'pkgs')
-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 bd7dd5924c06..eefe7dcfa74a 100644
--- a/pkgs/development/tools/yarn/default.nix
+++ b/pkgs/development/tools/yarn/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "yarn-${version}";
-  version = "1.5.1";
+  version = "1.6.0";
 
   src = fetchzip {
     url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
-    sha256 = "13m1y1c2h1fvq8fw1vlmnmnh3jx3l2cx7mz3x55sbgwcinzhkz9m";
+    sha256 = "0bblp1jy4s9y5rpcqn40w61qwsmxr342xkcn7ykk88i7sng2cgfw";
   };
 
   buildInputs = [makeWrapper nodejs];