summary refs log tree commit diff
path: root/pkgs/development/tools/yarn/default.nix
diff options
context:
space:
mode:
authorVladyslav M <dywedir@pm.me>2019-03-17 01:32:18 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2019-03-17 00:32:18 +0100
commitb9ebc84f8d2cc5030c270f2050f88b6063f8bb40 (patch)
tree878a949fd13c5bb97c8b0b7ebe36a219c80b2382 /pkgs/development/tools/yarn/default.nix
parent88ffb73636a497737e94e023d421fb05b8db3a43 (diff)
downloadnixpkgs-b9ebc84f8d2cc5030c270f2050f88b6063f8bb40.tar
nixpkgs-b9ebc84f8d2cc5030c270f2050f88b6063f8bb40.tar.gz
nixpkgs-b9ebc84f8d2cc5030c270f2050f88b6063f8bb40.tar.bz2
nixpkgs-b9ebc84f8d2cc5030c270f2050f88b6063f8bb40.tar.lz
nixpkgs-b9ebc84f8d2cc5030c270f2050f88b6063f8bb40.tar.xz
nixpkgs-b9ebc84f8d2cc5030c270f2050f88b6063f8bb40.tar.zst
nixpkgs-b9ebc84f8d2cc5030c270f2050f88b6063f8bb40.zip
yarn: 1.14.0 -> 1.15.2 (#57727)
Diffstat (limited to 'pkgs/development/tools/yarn/default.nix')
-rw-r--r--pkgs/development/tools/yarn/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/yarn/default.nix b/pkgs/development/tools/yarn/default.nix
index 5dcc9e2ec20..a3756d27e46 100644
--- a/pkgs/development/tools/yarn/default.nix
+++ b/pkgs/development/tools/yarn/default.nix
@@ -1,12 +1,12 @@
 { stdenv, nodejs, fetchzip }:
 
 stdenv.mkDerivation rec {
-  name = "yarn-${version}";
-  version = "1.14.0";
+  pname = "yarn";
+  version = "1.15.2";
 
   src = fetchzip {
     url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
-    sha256 = "167lpw4bnw8845ip6cvdk827lwdbprisd7ygl7vqv4p1wgdcrkqq";
+    sha256 = "0gvg6m0mdppgjp5lg3mz1w19c1zsflhgldzx4hgm3rlrbx3rzmvr";
   };
 
   buildInputs = [ nodejs ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
     homepage = https://yarnpkg.com/;
     description = "Fast, reliable, and secure dependency management for javascript";
     license = licenses.bsd2;
-    maintainers = [ maintainers.offline maintainers.screendriver ];
+    maintainers = with maintainers; [ offline screendriver ];
     platforms = platforms.linux ++ platforms.darwin;
   };
 }