summary refs log tree commit diff
path: root/pkgs/applications/science/logic/potassco/clingcon.nix
blob: 0f3218b767366840247b6cd776218d0d7c2c5af6 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ lib, stdenv
, fetchFromGitHub
, cmake
, bison
, re2c
}:

stdenv.mkDerivation rec {
  pname = "clingcon";
  version = "3.3.0";

  src = fetchFromGitHub {
    owner = "potassco";
    repo = pname;
    rev = "v${version}";
    fetchSubmodules = true;
    sha256 = "1q7517h10jfvjdk2czq8d6y57r8kr1j1jj2k2ip2qxkpyfigk4rs";
   };

  # deal with clingcon through git submodules recursively importing
  # an outdated version of libpotassco which uses deprecated <xlocale.h> header in .cpp files
  postPatch = ''
    find ./ -type f -exec sed -i 's/<xlocale.h>/<locale.h>/g' {} \;
  '';

  nativeBuildInputs = [ cmake bison re2c ];

  cmakeFlags = [
    "-DCLINGCON_MANAGE_RPATH=ON"
    "-DCLINGO_BUILD_WITH_PYTHON=OFF"
    "-DCLINGO_BUILD_WITH_LUA=OFF"
  ];

  meta = {
    description = "Extension of clingo to handle constraints over integers";
    license = lib.licenses.gpl3; # for now GPL3, next version MIT!
    platforms = lib.platforms.unix;
    homepage = "https://potassco.org/";
    downloadPage = "https://github.com/potassco/clingcon/releases/";
    changelog = "https://github.com/potassco/clingcon/releases/tag/v${version}";
  };
}