cmdstan: 2.37.0 -> 2.38.0 (#479820)

This commit is contained in:
Weijia Wang
2026-03-02 17:38:22 +00:00
committed by GitHub
2 changed files with 9 additions and 6 deletions
+2 -2
View File
@@ -12,14 +12,14 @@
stdenv.mkDerivation (finalAttrs: {
pname = "cmdstan";
version = "2.37.0";
version = "2.38.0";
src = fetchFromGitHub {
owner = "stan-dev";
repo = "cmdstan";
tag = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-bKkzzFkMF8+Ufz/EdKLJdB290Fvc2t8b47xB8oPz/sk=";
hash = "sha256-4Mx4LvXW2lYOSSOgNT0f+unry6mBobgGTDLwtiypHBU=";
};
postPatch = ''
+7 -4
View File
@@ -6,7 +6,7 @@
ocamlPackages.buildDunePackage rec {
pname = "stanc";
version = "2.37.0";
version = "2.38.0";
minimalOCamlVersion = "4.12";
@@ -14,10 +14,13 @@ ocamlPackages.buildDunePackage rec {
owner = "stan-dev";
repo = "stanc3";
tag = "v${version}";
hash = "sha256-d+sInQfnlT1gLbtIRPD+LUZgIdl519OrfvgSNYdYeII=";
hash = "sha256-j05PMQKIqkM9UWJzSVnkYWe6d+iUnmFOh1W8pZ7Fdyk=";
};
nativeBuildInputs = with ocamlPackages; [ menhir ];
nativeBuildInputs = with ocamlPackages; [
cmdliner
menhir
];
buildInputs = with ocamlPackages; [
core_unix
@@ -25,7 +28,7 @@ ocamlPackages.buildDunePackage rec {
ppx_deriving
fmt
yojson
cmdliner_1
cmdliner
];
meta = {