1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

retdec: fix build

The build was broken by the gcc9 update. Pinning to gcc8 for now.
This commit is contained in:
Timo Kaufmann 2020-03-15 11:57:57 +01:00
parent 41742c85ec
commit e5642d405e
2 changed files with 4 additions and 1 deletions

View file

@ -130,6 +130,7 @@ in stdenv.mkDerivation rec {
# itself and trying to build it. The build should fail and tell you which dependencies you have to upgrade to which versions.
# I've notified upstream about this problem here:
# https://github.com/avast-tl/retdec/issues/412
# gcc is pinned to gcc8 in all-packages.nix. That should probably be re-evaluated on update.
version = "3.2";
src = fetchFromGitHub {

View file

@ -10616,7 +10616,9 @@ in
remake = callPackage ../development/tools/build-managers/remake { };
retdec = callPackage ../development/tools/analysis/retdec { };
retdec = callPackage ../development/tools/analysis/retdec {
stdenv = gcc8Stdenv;
};
retdec-full = retdec.override {
withPEPatterns = true;
};