lol

Merge pull request #209013 from wegank/hepmc3-darwin

hepmc3: unbreak on aarch64-darwin

authored by

Thiago Kenji Okada and committed by
GitHub
1bf5934e fe1bb44e

+5 -2
+5 -2
pkgs/development/libraries/physics/hepmc3/default.nix
··· 32 32 ] 33 33 ++ lib.optional withPython python; 34 34 35 + # error: invalid version number in 'MACOSX_DEPLOYMENT_TARGET=11.0' 36 + preConfigure = lib.optionalString (stdenv.isDarwin && lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11") '' 37 + MACOSX_DEPLOYMENT_TARGET=10.16 38 + ''; 39 + 35 40 cmakeFlags = [ 36 41 "-DHEPMC3_ENABLE_PYTHON=${if withPython then "ON" else "OFF"}" 37 42 ] ++ lib.optionals withPython [ ··· 57 62 homepage = "http://hepmc.web.cern.ch/hepmc/"; 58 63 platforms = platforms.unix; 59 64 maintainers = with maintainers; [ veprbl ]; 60 - # never built on aarch64-darwin since first introduction in nixpkgs 61 - broken = stdenv.isDarwin && stdenv.isAarch64; 62 65 }; 63 66 }