nixpkgs/pkgs/applications/science/logic/alt-ergo/default.nix

24 lines
760 B
Nix
Raw Normal View History

2016-01-04 15:40:10 +01:00
{ fetchurl, stdenv, ocamlPackages }:
stdenv.mkDerivation rec {
name = "alt-ergo-${version}";
2014-12-30 13:22:13 +01:00
version = "0.99.1";
src = fetchurl {
url = "http://alt-ergo.ocamlpro.com/download_manager.php?target=${name}.tar.gz";
name = "${name}.tar.gz";
2014-12-30 13:22:13 +01:00
sha256 = "0lnlf56ysisa45dxvbwzhl4fgyxyfz35psals2kv9x8gyq54zwpm";
};
buildInputs = with ocamlPackages;
2014-11-07 10:50:39 +01:00
[ ocaml findlib ocamlgraph zarith lablgtk ];
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 15:40:10 +01:00
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}