linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / gecode / default.nix
blobfc9835d85db5d1f9497fffd21c0b64e9d1c9eacc
1 { lib, stdenv, fetchFromGitHub, bison, flex, perl, gmp, mpfr, enableGist ? true, qtbase }:
3 stdenv.mkDerivation rec {
4   pname = "gecode";
5   version = "6.2.0";
7   src = fetchFromGitHub {
8     owner = "Gecode";
9     repo = "gecode";
10     rev = "release-${version}";
11     sha256 = "0b1cq0c810j1xr2x9y9996p894571sdxng5h74py17c6nr8c6dmk";
12   };
14   enableParallelBuilding = true;
15   dontWrapQtApps = true;
16   nativeBuildInputs = [ bison flex ];
17   buildInputs = [ perl gmp mpfr ]
18     ++ lib.optional enableGist qtbase;
20   meta = with lib; {
21     license = licenses.mit;
22     homepage = "https://www.gecode.org";
23     description = "Toolkit for developing constraint-based systems";
24     platforms = platforms.all;
25     maintainers = [ ];
26   };