My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/applications/science/logic/alt-ergo/default.nix

27 lines
882 B

{ 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 ];
};
}