nixpkgs/pkgs/development/compilers/cmdstan/default.nix

44 lines
1.3 KiB
Nix
Raw Normal View History

2021-03-25 13:48:24 +03:00
{ lib, stdenv, fetchurl, python3, runtimeShell }:
2015-12-11 15:35:17 +03:00
stdenv.mkDerivation rec {
pname = "cmdstan";
version = "2.17.1";
2015-12-11 15:35:17 +03:00
src = fetchurl {
url = "https://github.com/stan-dev/cmdstan/releases/download/v${version}/cmdstan-${version}.tar.gz";
2017-12-26 20:44:13 +03:00
sha256 = "1vq1cnrkvrvbfl40j6ajc60jdrjcxag1fi6kff5pqmadfdz9564j";
2015-12-11 15:35:17 +03:00
};
buildFlags = [ "build" ];
2015-12-11 15:35:17 +03:00
enableParallelBuilding = true;
doCheck = true;
2021-03-25 13:48:24 +03:00
checkInputs = [ python3 ];
2018-08-08 21:26:16 +03:00
checkPhase = "python ./runCmdStanTests.py src/test/interface"; # see #5368
2015-12-11 15:35:17 +03:00
installPhase = ''
mkdir -p $out/opt $out/bin
cp -r . $out/opt/cmdstan
ln -s $out/opt/cmdstan/bin/stanc $out/bin/stanc
ln -s $out/opt/cmdstan/bin/stansummary $out/bin/stansummary
cat > $out/bin/stan <<EOF
#!${runtimeShell}
2015-12-11 15:35:17 +03:00
make -C $out/opt/cmdstan "\$(realpath "\$1")"
EOF
chmod a+x $out/bin/stan
'';
meta = {
description = "Command-line interface to Stan";
longDescription = ''
Stan is a probabilistic programming language implementing full Bayesian
statistical inference with MCMC sampling (NUTS, HMC), approximate Bayesian
inference with Variational inference (ADVI) and penalized maximum
likelihood estimation with Optimization (L-BFGS).
'';
homepage = "https://mc-stan.org/interfaces/cmdstan.html";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
2015-12-11 15:35:17 +03:00
};
}