nixpkgs/pkgs/applications/science/logic/why3/default.nix

23 lines
682 B
Nix
Raw Normal View History

2015-12-01 08:25:38 +00:00
{ fetchurl, stdenv, ocamlPackages, coq }:
stdenv.mkDerivation rec {
name = "why3-${version}";
2015-12-01 08:25:38 +00:00
version = "0.86.2";
src = fetchurl {
2015-12-01 08:25:38 +00:00
url = https://gforge.inria.fr/frs/download.php/file/35214/why3-0.86.2.tar.gz;
sha256 = "08sa7dmp6yp29xn0m6h98nic4q47vb4ahvaid5drwh522pvwvg10";
};
buildInputs = with ocamlPackages;
2015-05-22 06:42:20 +00:00
[ coq coq.camlp5 ocaml findlib lablgtk ocamlgraph zarith menhir ];
2014-10-11 22:27:57 +00:00
meta = with stdenv.lib; {
description = "A platform for deductive program verification";
homepage = "http://why3.lri.fr/";
2014-10-11 22:27:57 +00:00
license = licenses.lgpl21;
platforms = platforms.unix;
maintainers = with maintainers; [ thoughtpolice vbgl ];
};
}