about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/science/logic/alt-ergo/default.nix
blob: f83480cfbafcd3a6d97bdb944f4e0d73e68f289e (plain) (blame)
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
{ fetchurl, stdenv, which, dune, ocamlPackages }:

stdenv.mkDerivation rec {
  pname = "alt-ergo";
  version = "2.3.0";

  src = fetchurl {
    url    = "https://alt-ergo.ocamlpro.com/download_manager.php?target=${pname}-${version}.tar.gz";
    name   = "${pname}-${version}.tar.gz";
    sha256 = "1ycr3ff0gacq1aqzs16n6swgfniwpim0m7rvhcam64kj0a80c6bz";
  };

  buildInputs = [ dune which ] ++ (with ocamlPackages; [
    ocaml findlib camlzip lablgtk menhir num ocplib-simplex psmt2-frontend seq zarith
  ]);

  preConfigure = "patchShebangs ./configure";

  meta = {
    description = "High-performance theorem prover and SMT solver";
    homepage    = "https://alt-ergo.ocamlpro.com/";
    license     = stdenv.lib.licenses.ocamlpro_nc;
    platforms   = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
    maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
  };
}