Skip to content

Commit 7ba1c7a

Browse files
committedJul 17, 2017
iprover: 0.8.1 -> 2.5
1 parent ac50c4d commit 7ba1c7a

File tree

1 file changed

+7
-10
lines changed

1 file changed

+7
-10
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
{ stdenv, fetchurl, ocaml, eprover }:
1+
{ stdenv, fetchurl, ocaml, eprover, zlib }:
22

33
stdenv.mkDerivation rec {
44
name = "iprover-${version}";
5-
version = "0.8.1";
5+
version = "2.5";
66

77
src = fetchurl {
8-
url = "http://iprover.googlecode.com/files/iprover_v${version}.tar.gz";
9-
sha256 = "15qn523w4l296np5rnkwi50a5x2xqz0kaza7bsh9bkazph7jma7w";
8+
url = "http://www.cs.man.ac.uk/~korovink/iprover/iprover-v${version}.tar.gz";
9+
sha256 = "1mbxjczp6nqw0p33glqmw973c268yzy4gxflk1lfiyiihrjdhinb";
1010
};
1111

12-
buildInputs = [ ocaml eprover ];
12+
buildInputs = [ ocaml eprover zlib ];
1313

1414
preConfigure = ''patchShebangs .'';
1515

@@ -25,12 +25,9 @@ stdenv.mkDerivation rec {
2525

2626
meta = with stdenv.lib; {
2727
description = "An automated first-order logic theorem prover";
28-
maintainers = with maintainers;
29-
[
30-
raskin
31-
];
28+
homepage = http://www.cs.man.ac.uk/~korovink/iprover/;
29+
maintainers = with maintainers; [ raskin gebner ];
3230
platforms = platforms.linux;
3331
license = licenses.gpl3;
34-
downloadPage = "http://code.google.com/p/iprover/downloads/list";
3532
};
3633
}

0 commit comments

Comments
 (0)
Please sign in to comment.