about summary refs log tree commit diff
path: root/pkgs/development/tools/yarn
diff options
context:
space:
mode:
authorChristian Rackerseder <git@echooff.de>2018-11-08 08:48:53 +0100
committerChristian Rackerseder <git@echooff.de>2018-11-08 08:49:00 +0100
commit2f4dae8f563fb28484c043960f825f469c1aa35f (patch)
tree04e41baeb5ebb31f989f9acc9be08ee721ca85b6 /pkgs/development/tools/yarn
parentadf41ed942c7cf4e5b172cdf3bc740ebcd442b1c (diff)
yarn: 1.12.1 -> 1.12.3
Diffstat (limited to 'pkgs/development/tools/yarn')
-rw-r--r--pkgs/development/tools/yarn/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/yarn/default.nix b/pkgs/development/tools/yarn/default.nix
index be2b0689f9253..e2e115992bc63 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.12.1";
+  version = "1.12.3";
 
   src = fetchzip {
     url = "https://github.com/yarnpkg/yarn/releases/download/v${version}/yarn-v${version}.tar.gz";
-    sha256 = "084xci8y5na2765sh8flc8c5z7fik62filf1p58aqrb2000vna1j";
+    sha256 = "0izn7lfvfw046qlxdgiiiyqj24sl2yclm6v8bzy8ilsr00csbrm2";
   };
 
   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 = [ maintainers.offline maintainers.screendriver ];
     platforms = platforms.linux ++ platforms.darwin;
   };
 }