summary refs log tree commit diff
path: root/pkgs/development/libraries/gecode/3.nix
blob: 32e1163e0f074b9d77bb07cf8f258e8a6e1fc6dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, bash, perl }:

stdenv.mkDerivation rec {
  name = "gecode-${version}";
  version = "3.7.3";

  src = fetchurl {
    url = "http://www.gecode.org/download/${name}.tar.gz";
    sha256 = "0k45jas6p3cyldgyir1314ja3174sayn2h2ly3z9b4dl3368pk77";
  };

  nativeBuildInputs = [ bash perl ];

  preConfigure = "patchShebangs configure";

  meta = with stdenv.lib; {
    license = licenses.mit;
    homepage = https://www.gecode.org;
    description = "Toolkit for developing constraint-based systems";
    platforms = platforms.all;
    maintainers = [ maintainers.manveru ];
  };
}