why3: update from 0.83 to 0.85

This commit is contained in:
Vincent Laporte 2014-10-11 23:27:57 +01:00 committed by Aristid Breitkreuz
parent 950adbe487
commit 531b44562a

View File

@ -2,21 +2,21 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "why3-${version}"; name = "why3-${version}";
version = "0.83"; version = "0.85";
src = fetchurl { src = fetchurl {
url = "https://gforge.inria.fr/frs/download.php/33490/${name}.tar.gz"; url = "https://gforge.inria.fr/frs/download.php/34074/why3-0.85.tar.gz";
sha256 = "1jcs5vj91ppbgh4q4hch89b63wgakjhg35pm3r4jwhp377lnggya"; sha256 = "0sj1pd50lqvnvyss1f8ysgigdi64s91rrpdrmp7crmcy1npa8apf";
}; };
buildInputs = with ocamlPackages; buildInputs = with ocamlPackages;
[ coq ocaml findlib lablgtk ocamlgraph zarith ]; [ coq ocaml findlib lablgtk ocamlgraph zarith ];
meta = { meta = with stdenv.lib; {
description = "why is a software verification platform"; description = "A platform for deductive program verification";
homepage = "http://why3.lri.fr/"; homepage = "http://why3.lri.fr/";
license = stdenv.lib.licenses.lgpl21; license = licenses.lgpl21;
platforms = stdenv.lib.platforms.linux; platforms = platforms.unix;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ]; maintainers = with maintainers; [ thoughtpolice vbgl ];
}; };
} }