2018-02-18 13:11:06 +01:00
|
|
|
{ fetchurl, fetchpatch, stdenv, gmpxx, perl, gnum4 }:
|
2011-12-14 15:31:56 +01:00
|
|
|
|
2017-08-26 13:58:04 +02:00
|
|
|
let version = "1.2"; in
|
2011-12-14 15:31:56 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ppl-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://bugseng.com/products/ppl/download/ftp/releases/${version}/ppl-${version}.tar.bz2";
|
2017-08-26 13:58:04 +02:00
|
|
|
sha256 = "1wgxcbgmijgk11df43aiqfzv31r3bkxmgb4yl68g21194q60nird";
|
2011-12-14 15:31:56 +01:00
|
|
|
};
|
|
|
|
|
2018-02-18 13:11:06 +01:00
|
|
|
patches = [(fetchpatch {
|
|
|
|
name = "ppl.patch";
|
|
|
|
url = "http://www.cs.unipr.it/git/gitweb.cgi?p=ppl/ppl.git;a=patch;h=c39f6a07b51f89e365b05ba4147aa2aa448febd7";
|
|
|
|
sha256 = "1zj90hm25pkgvk4jlkfzh18ak9b98217gbidl3731fdccbw6hr87";
|
|
|
|
})];
|
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ perl gnum4 ];
|
2011-12-14 15:31:56 +01:00
|
|
|
propagatedBuildInputs = [ gmpxx ];
|
|
|
|
|
2014-06-01 20:46:33 +02:00
|
|
|
configureFlags = [ "--disable-watchdog" ] ++
|
2014-05-28 08:35:31 +02:00
|
|
|
stdenv.lib.optionals stdenv.isDarwin [
|
2014-06-01 20:46:33 +02:00
|
|
|
"CPPFLAGS=-fexceptions"
|
2014-05-28 08:35:31 +02:00
|
|
|
"--disable-ppl_lcdd" "--disable-ppl_lpsol" "--disable-ppl_pips"
|
|
|
|
];
|
2011-12-14 15:31:56 +01:00
|
|
|
|
|
|
|
# Beware! It took ~6 hours to compile PPL and run its tests on a 1.2 GHz
|
|
|
|
# x86_64 box. Nevertheless, being a dependency of GCC, it probably ought
|
|
|
|
# to be tested.
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "The Parma Polyhedra Library";
|
2011-12-14 15:31:56 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The Parma Polyhedra Library (PPL) provides numerical abstractions
|
|
|
|
especially targeted at applications in the field of analysis and
|
|
|
|
verification of complex systems. These abstractions include convex
|
|
|
|
polyhedra, defined as the intersection of a finite number of (open or
|
|
|
|
closed) halfspaces, each described by a linear inequality (strict or
|
|
|
|
non-strict) with rational coefficients; some special classes of
|
|
|
|
polyhedra shapes that offer interesting complexity/precision tradeoffs;
|
|
|
|
and grids which represent regularly spaced points that satisfy a set of
|
|
|
|
linear congruence relations. The library also supports finite
|
|
|
|
powersets and products of (any kind of) polyhedra and grids and a mixed
|
|
|
|
integer linear programming problem solver using an exact-arithmetic
|
|
|
|
version of the simplex algorithm.
|
|
|
|
'';
|
|
|
|
|
2013-02-20 10:20:07 +01:00
|
|
|
homepage = http://bugseng.com/products/ppl/;
|
2011-12-14 15:31:56 +01:00
|
|
|
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2011-12-14 15:31:56 +01:00
|
|
|
|
2013-08-16 23:44:33 +02:00
|
|
|
maintainers = [ ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2011-12-14 15:31:56 +01:00
|
|
|
};
|
|
|
|
}
|