2015-07-16 02:33:19 +01:00
|
|
|
{ stdenv, fetchurl, automake, libtool, autoconf, intltool, perl
|
|
|
|
, gmpxx, flex, bison
|
|
|
|
}:
|
2010-12-05 18:22:14 +00:00
|
|
|
|
2015-07-16 02:33:19 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "opensmt";
|
2015-07-16 02:33:19 +01:00
|
|
|
version = "20101017";
|
2010-12-05 18:22:14 +00:00
|
|
|
|
2015-07-16 02:33:19 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://opensmt.googlecode.com/files/opensmt_src_${version}.tgz";
|
|
|
|
sha256 = "0xrky7ixjaby5x026v7hn72xh7d401w9jhccxjn0khhn1x87p2w1";
|
|
|
|
};
|
2010-12-05 18:22:14 +00:00
|
|
|
|
2015-07-16 02:33:19 +01:00
|
|
|
buildInputs = [ automake libtool autoconf intltool perl gmpxx flex bison ];
|
2014-07-28 10:43:20 +01:00
|
|
|
|
2015-07-16 02:33:19 +01:00
|
|
|
meta = with stdenv.lib; {
|
2010-12-05 18:22:14 +00:00
|
|
|
description = "A satisfiability modulo theory (SMT) solver";
|
2015-07-16 02:33:19 +01:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl3;
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://code.google.com/p/opensmt/;
|
2014-08-08 16:58:34 +01:00
|
|
|
broken = true;
|
2015-07-16 02:33:19 +01:00
|
|
|
downloadPage = "http://code.google.com/p/opensmt/downloads/list";
|
2010-12-05 18:22:14 +00:00
|
|
|
};
|
2015-07-16 02:33:19 +01:00
|
|
|
}
|