about summary refs log tree commit diff
path: root/pkgs/development/tools/yarn
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2017-03-07 16:25:09 +0000
committerzimbatm <zimbatm@zimbatm.com>2017-03-07 16:25:09 +0000
commite50203bfde29065fd7d1f047d9e3797f5c302b76 (patch)
tree2ae31605a7135573d086f2946ccbbf1f1bbc3e6c /pkgs/development/tools/yarn
parent264b69c973b9724b64fb908e645788d1e9ffa905 (diff)
downloadnixlib-e50203bfde29065fd7d1f047d9e3797f5c302b76.tar
nixlib-e50203bfde29065fd7d1f047d9e3797f5c302b76.tar.gz
nixlib-e50203bfde29065fd7d1f047d9e3797f5c302b76.tar.bz2
nixlib-e50203bfde29065fd7d1f047d9e3797f5c302b76.tar.lz
nixlib-e50203bfde29065fd7d1f047d9e3797f5c302b76.tar.xz
nixlib-e50203bfde29065fd7d1f047d9e3797f5c302b76.tar.zst
nixlib-e50203bfde29065fd7d1f047d9e3797f5c302b76.zip
yarn: 0.21.3 -> 0.22.0
Diffstat (limited to 'pkgs/development/tools/yarn')
-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 93d9422a759a..770eb9cc78b4 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 = "0.21.3";
+  version = "0.22.0";
 
   src = fetchzip {
     url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
-    sha256 = "0blcaick4p82d64cy9ip9rnbysd4194d77479hz2bx4iq6cdp6wa";
+    sha256 = "1hs4fqjj9rg47ipcagpdk3grh7aa0ls3vsxq4q20d5hb43s9n5gs";
   };
 
   buildInputs = [makeWrapper nodejs];