2021-07-14 22:03:04 +00:00
|
|
|
# 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.
|
2020-10-07 09:15:18 +00:00
|
|
|
|
|
|
|
{ callPackage, fetchFromGitHub }:
|
|
|
|
|
|
|
|
let
|
|
|
|
rr = callPackage ./. {};
|
|
|
|
in
|
|
|
|
|
|
|
|
rr.overrideAttrs (old: {
|
2021-07-14 22:03:04 +00:00
|
|
|
version = "unstable-2021-07-06";
|
2020-10-07 09:15:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mozilla";
|
|
|
|
repo = "rr";
|
2021-07-14 22:03:04 +00:00
|
|
|
rev = "0fc21a8d654dabc7fb1991d76343824cb7951ea0";
|
|
|
|
sha256 = "0s851rflxmvxcfw97zmplcwzhv86xmd3my78pi4c7gkj18d621i5";
|
2020-10-07 09:15:18 +00:00
|
|
|
};
|
|
|
|
})
|