2018-12-01 12:07:37 -08:00
|
|
|
{ stdenv, fetchFromGitHub, bison, flex, perl, gmp, mpfr, enableGist ? true, qtbase }:
|
2014-09-10 05:14:41 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "gecode";
|
2019-04-14 11:49:35 -07:00
|
|
|
version = "6.2.0";
|
2014-09-10 05:14:41 -07:00
|
|
|
|
2018-12-01 11:54:27 -08:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Gecode";
|
|
|
|
repo = "gecode";
|
|
|
|
rev = "release-${version}";
|
2019-04-14 11:49:35 -07:00
|
|
|
sha256 = "0b1cq0c810j1xr2x9y9996p894571sdxng5h74py17c6nr8c6dmk";
|
2014-09-10 05:14:41 -07:00
|
|
|
};
|
|
|
|
|
2017-03-12 14:21:13 -07:00
|
|
|
enableParallelBuilding = true;
|
2018-12-01 12:07:37 -08:00
|
|
|
nativeBuildInputs = [ bison flex ];
|
|
|
|
buildInputs = [ perl gmp mpfr ]
|
|
|
|
++ stdenv.lib.optional enableGist qtbase;
|
2014-09-10 06:38:25 -07:00
|
|
|
|
2014-09-10 07:15:24 -07:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.mit;
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.gecode.org";
|
2014-09-10 06:38:25 -07:00
|
|
|
description = "Toolkit for developing constraint-based systems";
|
2014-09-10 07:15:24 -07:00
|
|
|
platforms = platforms.all;
|
2018-12-01 13:02:20 -08:00
|
|
|
maintainers = [ ];
|
2014-09-10 06:38:25 -07:00
|
|
|
};
|
2014-09-10 05:14:41 -07:00
|
|
|
}
|