Skip to content

Commit

Permalink
nixpkgs: add why3 0.83
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Seipp <aseipp@pobox.com>
  • Loading branch information
thoughtpolice committed May 1, 2014
1 parent 5f702d5 commit 4ee4f76
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/applications/science/logic/why3/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ fetchurl, stdenv, ocaml, ocamlPackages, coq }:

stdenv.mkDerivation rec {
name = "why3-${version}";
version = "0.83";

src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/33490/${name}.tar.gz";
sha256 = "1jcs5vj91ppbgh4q4hch89b63wgakjhg35pm3r4jwhp377lnggya";
};

buildInputs = with ocamlPackages;
[ coq ocaml findlib lablgtk ocamlgraph zarith ];

meta = {
description = "why is a software verification platform";
homepage = "http://why3.lri.fr/";
license = stdenv.lib.licenses.lgpl21;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10372,6 +10372,8 @@ let

verifast = callPackage_i686 ../applications/science/logic/verifast {};

why3 = callPackage ../applications/science/logic/why3 {};

yices = callPackage ../applications/science/logic/yices {};

z3 = callPackage ../applications/science/logic/z3 {};
Expand Down

0 comments on commit 4ee4f76

Please sign in to comment.