blob: f2a82d21680a8294850788f92743a3c2df8efa7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
fetchFromGitHub,
ocamlPackages,
}:
ocamlPackages.buildDunePackage rec {
pname = "stanc";
version = "2.39.0";
minimalOCamlVersion = "4.12";
src = fetchFromGitHub {
owner = "stan-dev";
repo = "stanc3";
tag = "v${version}";
hash = "sha256-ZAH9uFEZu75BC2xYGUXg62RHiADmKYBYP2Nt8bwEVRY=";
};
nativeBuildInputs = with ocamlPackages; [
cmdliner
menhir
];
buildInputs = with ocamlPackages; [
core_unix
menhirLib
ppx_deriving
fmt
yojson
cmdliner
];
meta = {
homepage = "https://github.com/stan-dev/stanc3";
description = "Stan compiler and utilities";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ wegank ];
platforms = lib.platforms.unix;
};
}
|