Skip to content

Commit

Permalink
simavr: Disable parallel build
Browse files Browse the repository at this point in the history
  • Loading branch information
dezgeg committed Mar 9, 2017
1 parent d56e596 commit 5bb99ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/tools/simavr/default.nix
Expand Up @@ -4,7 +4,6 @@
stdenv.mkDerivation rec {
name = "simavr-${version}";
version = "1.5";
enableParallelBuilding = true;

src = fetchFromGitHub {
owner = "buserror";
Expand All @@ -13,6 +12,9 @@ stdenv.mkDerivation rec {
sha256 = "0b2lh6l2niv80dmbm9xkamvnivkbmqw6v97sy29afalrwfxylxla";
};

# ld: cannot find -lsimavr
enableParallelBuilding = false;

buildFlags = "AVR_ROOT=${avrgcclibc}/avr SIMAVR_VERSION=${version}";
installFlags = buildFlags + " DESTDIR=$(out)";

Expand Down

0 comments on commit 5bb99ca

Please sign in to comment.