Merge pull request #263829 from charmoniumQ/update-rr

rr: 5.6.0 -> 5.7.0

authored by

Felix Bühler and committed by
GitHub
245bad83 9a4908ee

+4 -10
+4 -10
pkgs/development/tools/analysis/rr/default.nix
··· 4 4 }: 5 5 6 6 stdenv.mkDerivation rec { 7 - version = "5.6.0"; 7 + version = "5.7.0"; 8 8 pname = "rr"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "mozilla"; 12 12 repo = "rr"; 13 13 rev = version; 14 - sha256 = "H39HPkAQGubXVQV3jCpH4Pz+7Q9n03PrS70utk7Tt2k="; 14 + hash = "sha256-n1Jbhr77bI0AXncY/RquNVSwwnnAXt31RmKtAa1/oHg="; 15 15 }; 16 16 17 - patches = [ 18 - (fetchpatch { 19 - name = "fix-flexible-array-member.patch"; 20 - url = "https://github.com/rr-debugger/rr/commit/2979c60ef8bbf7c940afd90172ddc5d8863f766e.diff"; 21 - sha256 = "cmdCJetQr3ELPOyWl37h1fGfG/xvaiJpywxIAnqb5YY="; 22 - }) 23 - ]; 17 + patches = [ ]; 24 18 25 19 postPatch = '' 26 20 substituteInPlace src/Command.cc --replace '_BSD_SOURCE' '_DEFAULT_SOURCE' ··· 54 48 hardeningDisable = [ "fortify" ]; 55 49 56 50 # FIXME 57 - #doCheck = true; 51 + doCheck = false; 58 52 59 53 preCheck = "export HOME=$TMPDIR"; 60 54