3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/science/logic/alt-ergo/default.nix

24 lines
781 B
Nix
Raw Normal View History

2016-01-04 14:40:10 +00:00
{ fetchurl, stdenv, ocamlPackages }:
stdenv.mkDerivation rec {
name = "alt-ergo-${version}";
2017-01-21 13:43:04 +00:00
version = "1.30";
src = fetchurl {
url = "http://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
name = "${name}.tar.gz";
2017-01-21 13:43:04 +00:00
sha256 = "025pacb4ax864fn5x8k78mw6hiig4jcazblj18gzxspg4f1l5n1g";
};
buildInputs = with ocamlPackages;
2017-01-21 13:43:04 +00:00
[ ocaml findlib camlzip ocamlgraph zarith lablgtk ocplib-simplex ];
meta = {
description = "High-performance theorem prover and SMT solver";
homepage = "http://alt-ergo.ocamlpro.com/";
license = stdenv.lib.licenses.cecill-c; # LGPL-2 compatible
2016-01-04 14:40:10 +00:00
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}