summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-07 06:02:03 +0000
committerGitHub <noreply@github.com>2021-07-07 06:02:03 +0000
commit0f7bc289e9fc7eb05267c1e10babe36081eb931b (patch)
tree6628e6c11650367e013540fe96e0d2f05fd56697 /pkgs/development/tools
parentcdd91475d5ef398b667655ad55b5eba665ab7360 (diff)
parent8f2e84f34ac34206e1aa6fcb284f72069b79ffa0 (diff)
downloadnixpkgs-0f7bc289e9fc7eb05267c1e10babe36081eb931b.tar
nixpkgs-0f7bc289e9fc7eb05267c1e10babe36081eb931b.tar.gz
nixpkgs-0f7bc289e9fc7eb05267c1e10babe36081eb931b.tar.bz2
nixpkgs-0f7bc289e9fc7eb05267c1e10babe36081eb931b.tar.lz
nixpkgs-0f7bc289e9fc7eb05267c1e10babe36081eb931b.tar.xz
nixpkgs-0f7bc289e9fc7eb05267c1e10babe36081eb931b.tar.zst
nixpkgs-0f7bc289e9fc7eb05267c1e10babe36081eb931b.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/analysis/rr/unstable.nix17
-rw-r--r--pkgs/development/tools/esbuild/default.nix4
2 files changed, 10 insertions, 11 deletions
diff --git a/pkgs/development/tools/analysis/rr/unstable.nix b/pkgs/development/tools/analysis/rr/unstable.nix
index 82b644f76ae..35098c1bcfc 100644
--- a/pkgs/development/tools/analysis/rr/unstable.nix
+++ b/pkgs/development/tools/analysis/rr/unstable.nix
@@ -1,9 +1,8 @@
-# This is a temporary copy of the default.nix in this folder, with the version updated to the current tip of rr's master branch.
-# This exists because rr has not had a release in a long time, but there have been a lot of improvements including UX.
-# Some of the UX improvements help prevent foot shooting.
-# Upstream has stated that it should be fine to use master.
-# This file, and its attribute in all-packages, can be removed once rr makes a release.
-# For further information, please see https://github.com/NixOS/nixpkgs/issues/99535 "Improve support for the rr debugger in nixos containers"
+# This is a temporary copy of the default.nix in this folder, with the version
+# updated to the current tip of rr's master branch. This exists because rr has
+# not had a release in a long time. Upstream has stated that it should be fine
+# to use master. This file, and its attribute in all-packages, can be removed
+# once rr makes a release.
 
 { callPackage, fetchFromGitHub }:
 
@@ -12,12 +11,12 @@ let
 in
 
   rr.overrideAttrs (old: {
-    version = "unstable-2020-10-04";
+    version = "unstable-2021-07-06";
 
     src = fetchFromGitHub {
       owner = "mozilla";
       repo = "rr";
-      rev = "9ff375813a740a0a6ebcdfcebc58bd61ab68c667";
-      sha256 = "0raifs6cg5ckpi2445inhy3hfhp4p89s1lkx9z17mcc2g1c1phf5";
+      rev = "0fc21a8d654dabc7fb1991d76343824cb7951ea0";
+      sha256 = "0s851rflxmvxcfw97zmplcwzhv86xmd3my78pi4c7gkj18d621i5";
     };
   })
diff --git a/pkgs/development/tools/esbuild/default.nix b/pkgs/development/tools/esbuild/default.nix
index 309845df80a..8b37899ef67 100644
--- a/pkgs/development/tools/esbuild/default.nix
+++ b/pkgs/development/tools/esbuild/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "esbuild";
-  version = "0.12.12";
+  version = "0.12.14";
 
   src = fetchFromGitHub {
     owner = "evanw";
     repo = "esbuild";
     rev = "v${version}";
-    sha256 = "sha256-4Ooadv8r6GUBiayiv4WKVurUeRPIv6LPlMhieH4VL8o=";
+    sha256 = "sha256-+qFR5XGV1LSCY8AR7gd269UcOwlL5hkvKiQEhdsqIJc=";
   };
 
   vendorSha256 = "sha256-2ABWPqhK2Cf4ipQH7XvRrd+ZscJhYPc3SV2cGT0apdg=";