lol

cmdstan: fix build on darwin

+3 -1
+3 -1
pkgs/development/compilers/cmdstan/default.nix
··· 16 16 doCheck = true; 17 17 checkInputs = [ python3 ]; 18 18 19 + CXXFLAGS = lib.optionalString stdenv.isDarwin "-D_BOOST_LGAMMA"; 20 + 19 21 postPatch = '' 20 22 substituteInPlace stan/lib/stan_math/make/libraries \ 21 23 --replace "/usr/bin/env bash" "bash" ··· 42 44 preFixup = "rm -rf $(pwd)"; 43 45 44 46 meta = { 45 - broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin; 47 + broken = stdenv.isLinux && stdenv.isAarch64; 46 48 description = "Command-line interface to Stan"; 47 49 longDescription = '' 48 50 Stan is a probabilistic programming language implementing full Bayesian