timeloop: unstable-2022-11-29 -> 3.0.3

Changes:
- https://github.com/NVlabs/timeloop/releases/tag/v3.0
- https://github.com/NVlabs/timeloop/releases/tag/v3.0.1
- https://github.com/NVlabs/timeloop/releases/tag/v3.0.2
- https://github.com/NVlabs/timeloop/releases/tag/v3.0.3

+5 -5
+5 -5
pkgs/applications/science/computer-architecture/timeloop/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "timeloop"; 18 - version = "unstable-2022-11-29"; 19 20 src = fetchFromGitHub { 21 owner = "NVlabs"; 22 repo = "timeloop"; 23 - rev = "905ba953432c812772de935d57fd0a674a89d3c1"; 24 - hash = "sha256-EXiWXf8hdX4vFRNk9wbFSOsix/zVkwrafGUtFrsoAN0="; 25 }; 26 27 nativeBuildInputs = [ scons ]; ··· 52 53 # use nix ar/ranlib 54 substituteInPlace ./SConstruct \ 55 - --replace "env.Replace(AR = \"gcc-ar\")" "" \ 56 - --replace "env.Replace(RANLIB = \"gcc-ranlib\")" "" 57 '' + lib.optionalString stdenv.isDarwin '' 58 # prevent clang from dying on errors that gcc is fine with 59 substituteInPlace ./src/SConscript --replace "-Werror" "-Wno-inconsistent-missing-override"
··· 15 16 stdenv.mkDerivation rec { 17 pname = "timeloop"; 18 + version = "3.0.3"; 19 20 src = fetchFromGitHub { 21 owner = "NVlabs"; 22 repo = "timeloop"; 23 + rev = "v${version}"; 24 + hash = "sha256-CGPhrBNzFdERAA/Eym2v0+FvFUe+VkBLnwYEqEMHE9k="; 25 }; 26 27 nativeBuildInputs = [ scons ]; ··· 52 53 # use nix ar/ranlib 54 substituteInPlace ./SConstruct \ 55 + --replace-fail "env.Replace(AR = \"gcc-ar\")" "pass" \ 56 + --replace-fail "env.Replace(RANLIB = \"gcc-ranlib\")" "pass" 57 '' + lib.optionalString stdenv.isDarwin '' 58 # prevent clang from dying on errors that gcc is fine with 59 substituteInPlace ./src/SConscript --replace "-Werror" "-Wno-inconsistent-missing-override"