about summary refs log tree commit diff
path: root/pkgs/development/compilers/stanc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/stanc/default.nix')
-rw-r--r--pkgs/development/compilers/stanc/default.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/pkgs/development/compilers/stanc/default.nix b/pkgs/development/compilers/stanc/default.nix
deleted file mode 100644
index 66671823d866..000000000000
--- a/pkgs/development/compilers/stanc/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ 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=";
-  };
-
-  # Error: This expression has type [ `Use_Sys_unix ]
-  postPatch = ''
-    substituteInPlace test/integration/run_bin_on_args.ml \
-      --replace "if Sys.file_exists (to_windows path) then to_windows cmd else cmd" "cmd"
-  '';
-
-  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;
-  };
-}