Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Mark some packages as broken due to GCC 5

(cherry picked from commit 47a04ac52c579ace473c3f6e2bf388d3712aac17)

+2
+1
pkgs/development/libraries/openbabel/default.nix
··· 18 meta = { 19 platforms = stdenv.lib.platforms.all; 20 maintainers = [ stdenv.lib.maintainers.urkud ]; 21 }; 22 }
··· 18 meta = { 19 platforms = stdenv.lib.platforms.all; 20 maintainers = [ stdenv.lib.maintainers.urkud ]; 21 + broken = true; # doesn't build with GCC 5; fix in GitHub 22 }; 23 }
+1
pkgs/development/libraries/vxl/default.nix
··· 26 license = "VXL License"; 27 maintainers = with stdenv.lib.maintainers; [viric]; 28 platforms = with stdenv.lib.platforms; linux; 29 }; 30 }
··· 26 license = "VXL License"; 27 maintainers = with stdenv.lib.maintainers; [viric]; 28 platforms = with stdenv.lib.platforms; linux; 29 + broken = true; # requires fix for gcc 5: https://lists.fedoraproject.org/pipermail/scm-commits/Week-of-Mon-20150216/1511118.html 30 }; 31 }