about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/st/stanc/package.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/by-name/st/stanc/package.nix')
-rw-r--r--nixpkgs/pkgs/by-name/st/stanc/package.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/by-name/st/stanc/package.nix b/nixpkgs/pkgs/by-name/st/stanc/package.nix
new file mode 100644
index 000000000000..e5e6f79eb8cd
--- /dev/null
+++ b/nixpkgs/pkgs/by-name/st/stanc/package.nix
@@ -0,0 +1,38 @@
+{
+  lib,
+  fetchFromGitHub,
+  ocamlPackages,
+}:
+
+ocamlPackages.buildDunePackage rec {
+  pname = "stanc";
+  version = "2.34.0";
+
+  minimalOCamlVersion = "4.12";
+  duneVersion = "3";
+
+  src = fetchFromGitHub {
+    owner = "stan-dev";
+    repo = "stanc3";
+    rev = "v${version}";
+    hash = "sha256-ixZCix3oLZhzs08JbmbNCO0lhAu1Jf+KnpHNKlU/FaA=";
+  };
+
+  nativeBuildInputs = with ocamlPackages; [ menhir ];
+
+  buildInputs = with ocamlPackages; [
+    core_unix
+    menhirLib
+    ppx_deriving
+    fmt
+    yojson
+  ];
+
+  meta = with lib; {
+    homepage = "https://github.com/stan-dev/stanc3";
+    description = "The Stan compiler and utilities";
+    license = licenses.bsd3;
+    maintainers = with maintainers; [ wegank ];
+    platforms = platforms.unix;
+  };
+}