Commit cd8f1916 authored by Weijia Wang's avatar Weijia Wang
Browse files

ocamlPackages.zelus: init at 2.2

parent 79dc25b4
Loading
Loading
Loading
Loading
+42 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, buildDunePackage
, fetchFromGitHub
, menhir
, menhirLib
}:

buildDunePackage rec {
  pname = "zelus";
  version = "2.2";

  minimalOCamlVersion = "4.08.1";

  src = fetchFromGitHub {
    owner = "INRIA";
    repo = "zelus";
    rev = version;
    hash = "sha256-NcGX343LProADtzJwlq1kmihLaya1giY6xv9ScvdgTA=";
  };

  # ./configure: cannot execute: required file not found
  postPatch = lib.optionalString stdenv.isLinux ''
    patchShebangs configure
  '';

  nativeBuildInputs = [
    menhir
  ];

  buildInputs = [
    menhirLib
  ];

  meta = with lib; {
    description = "A synchronous language with ODEs";
    homepage = "https://zelus.di.ens.fr";
    license = licenses.inria-zelus;
    mainProgram = "zeluc";
    maintainers = with maintainers; [ wegank ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1880,6 +1880,8 @@ let

    zed = callPackage ../development/ocaml-modules/zed { };

    zelus = callPackage ../development/ocaml-modules/zelus { };

    zmq = callPackage ../development/ocaml-modules/zmq { };

    zmq-lwt = callPackage ../development/ocaml-modules/zmq/lwt.nix { };