summary refs log tree commit diff
diff options
context:
space:
mode:
authorzimbatm <zimbatm@zimbatm.com>2017-09-07 18:09:15 +0100
committerzimbatm <zimbatm@zimbatm.com>2017-09-07 18:10:09 +0100
commit2ae7e952b2d841ab82e934f22f65609ecd92a51b (patch)
tree7ff6dc3b68bf2decdb29054be9225a69b207b334
parent9903f4e2edb1015ccd9d0f95f3abb2309b32fe76 (diff)
downloadnixpkgs-2ae7e952b2d841ab82e934f22f65609ecd92a51b.tar
nixpkgs-2ae7e952b2d841ab82e934f22f65609ecd92a51b.tar.gz
nixpkgs-2ae7e952b2d841ab82e934f22f65609ecd92a51b.tar.bz2
nixpkgs-2ae7e952b2d841ab82e934f22f65609ecd92a51b.tar.lz
nixpkgs-2ae7e952b2d841ab82e934f22f65609ecd92a51b.tar.xz
nixpkgs-2ae7e952b2d841ab82e934f22f65609ecd92a51b.tar.zst
nixpkgs-2ae7e952b2d841ab82e934f22f65609ecd92a51b.zip
yarn: 0.28.4 -> 1.0.1
-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 26c0fe281e7..fda4e9abd45 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.28.4";
+  version = "1.0.1";
 
   src = fetchzip {
     url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
-    sha256 = "12l1ljgzk45i24d9x7036hdrb8f46in93xfc2z4wq94wzm24s2za";
+    sha256 = "1adp5wzxbq5glxbmqfvmjn3vld93mvl65y4bmhjn8clzj7n25piq";
   };
 
   buildInputs = [makeWrapper nodejs];