2020-07-13 18:19:40 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
pkgs.originals.rr.overrideAttrs(_: {
|
2020-09-20 20:51:56 +02:00
|
|
|
src = pkgs.fetchFromGitHub {
|
|
|
|
owner = "mozilla";
|
|
|
|
repo = "rr";
|
|
|
|
rev = "8fc7d2a09a739fee1883d262501e88613165c1dd";
|
|
|
|
sha256 = "0avq5lv082z2sasggfn2awnfrh08cr8f0i9iw1dnrcxa6pc3bi9k";
|
|
|
|
fetchSubmodules = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
# Workaround as documented on https://github.com/mozilla/rr/wiki/Zen
|
|
|
|
postInstall = ''
|
|
|
|
cp $src/scripts/zen_workaround.py $out/bin/rr_zen_workaround
|
|
|
|
'';
|
2020-07-13 18:19:40 +02:00
|
|
|
})
|