Merge pull request #195964 from SuperSandro2000/myrddin

authored by

Sandro and committed by
GitHub
f685147c f5355b93

+6 -7
+6 -7
pkgs/development/compilers/myrddin/default.nix
··· 4 4 , pkg-config 5 5 , bison 6 6 , binutils 7 - , binutils-unwrapped 8 7 , makeWrapper 9 8 }: 10 9 ··· 27 26 28 27 postPatch = '' 29 28 substituteInPlace mk/c.mk \ 30 - --replace "-Werror" "" 29 + --replace "-Werror" "" 31 30 ''; 32 31 33 32 buildPhase = '' 34 - make bootstrap 35 - make 33 + make bootstrap -j$NIX_BUILD_CORES 34 + make -j$NIX_BUILD_CORES 36 35 ''; 37 36 38 37 postInstall = '' 39 38 for b in $out/bin/*; do 40 - wrapProgram $b --prefix PATH : $out/bin:${lib.makeBinPath [ binutils ]} 39 + wrapProgram $b --prefix PATH : $out/bin:${lib.makeBinPath [ binutils ]} 41 40 done 42 41 ''; 43 42 ··· 48 47 doCheck = true; 49 48 50 49 meta = with lib; { 51 - # darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin 52 - broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 53 50 description = "Systems language that is both powerful and fun to use"; 54 51 homepage = "https://myrlang.org/"; 55 52 license = licenses.mit; 56 53 maintainers = with maintainers; [ luc65r ]; 57 54 platforms = platforms.all; 55 + # darwin: never built on Hydra https://hydra.nixos.org/job/nixpkgs/trunk/myrddin.x86_64-darwin 56 + broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 58 57 }; 59 58 }