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

23 lines
689 B
Nix
Raw Normal View History

{ fetchurl, stdenv, ocaml, ocamlPackages, coq }:
stdenv.mkDerivation rec {
name = "why3-${version}";
2015-05-22 06:42:20 +00:00
version = "0.86.1";
src = fetchurl {
2015-05-22 06:42:20 +00:00
url = https://gforge.inria.fr/frs/download.php/file/34797/why3-0.86.1.tar.gz;
sha256 = "129kzq79n8h480zrlphgh1ixvwp3wm18nbcky9bp4wdnr6zaibd7";
};
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 ];
};
}