about summary refs log tree commit diff
path: root/pkgs/development/tools/analysis/rr
diff options
context:
space:
mode:
authordeliciouslytyped <47436522+deliciouslytyped@users.noreply.github.com>2020-10-04 23:25:55 +0200
committerdeliciouslytyped <47436522+deliciouslytyped@users.noreply.github.com>2020-10-04 23:27:08 +0200
commiteaf756639f1da3028e6070f2ecc693e96188c3ee (patch)
tree3e52f6b6fc2c49e90c4e2c1cb1ad10a202482b36 /pkgs/development/tools/analysis/rr
parent3df7751051afe49fc1df71ef6151fa984126db55 (diff)
downloadnixlib-eaf756639f1da3028e6070f2ecc693e96188c3ee.tar
nixlib-eaf756639f1da3028e6070f2ecc693e96188c3ee.tar.gz
nixlib-eaf756639f1da3028e6070f2ecc693e96188c3ee.tar.bz2
nixlib-eaf756639f1da3028e6070f2ecc693e96188c3ee.tar.lz
nixlib-eaf756639f1da3028e6070f2ecc693e96188c3ee.tar.xz
nixlib-eaf756639f1da3028e6070f2ecc693e96188c3ee.tar.zst
nixlib-eaf756639f1da3028e6070f2ecc693e96188c3ee.zip
rr: 5.3.0 +> 9ff37581 add rr-unstable until a new rr release is made
Diffstat (limited to 'pkgs/development/tools/analysis/rr')
-rw-r--r--pkgs/development/tools/analysis/rr/unstable.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/tools/analysis/rr/unstable.nix b/pkgs/development/tools/analysis/rr/unstable.nix
new file mode 100644
index 000000000000..82b644f76ae6
--- /dev/null
+++ b/pkgs/development/tools/analysis/rr/unstable.nix
@@ -0,0 +1,23 @@
+# 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"
+
+{ callPackage, fetchFromGitHub }:
+
+let
+  rr = callPackage ./. {};
+in
+
+  rr.overrideAttrs (old: {
+    version = "unstable-2020-10-04";
+
+    src = fetchFromGitHub {
+      owner = "mozilla";
+      repo = "rr";
+      rev = "9ff375813a740a0a6ebcdfcebc58bd61ab68c667";
+      sha256 = "0raifs6cg5ckpi2445inhy3hfhp4p89s1lkx9z17mcc2g1c1phf5";
+    };
+  })