f901019706
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gecode/versions
27 lines
717 B
Nix
27 lines
717 B
Nix
{ stdenv, fetchFromGitHub, bison, flex, perl, gmp, mpfr, enableGist ? true, qtbase }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gecode-${version}";
|
|
version = "6.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Gecode";
|
|
repo = "gecode";
|
|
rev = "release-${version}";
|
|
sha256 = "0b1cq0c810j1xr2x9y9996p894571sdxng5h74py17c6nr8c6dmk";
|
|
};
|
|
|
|
enableParallelBuilding = true;
|
|
nativeBuildInputs = [ bison flex ];
|
|
buildInputs = [ perl gmp mpfr ]
|
|
++ stdenv.lib.optional enableGist qtbase;
|
|
|
|
meta = with stdenv.lib; {
|
|
license = licenses.mit;
|
|
homepage = http://www.gecode.org;
|
|
description = "Toolkit for developing constraint-based systems";
|
|
platforms = platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|