nixpkgs/pkgs/applications/science/logic/potassco/clingcon.nix
2021-12-16 20:28:19 +01:00

37 lines
823 B
Nix

{ lib, stdenv
, fetchFromGitHub
, cmake
, clingo
}:
stdenv.mkDerivation rec {
pname = "clingcon";
version = "5.0.0";
src = fetchFromGitHub {
owner = "potassco";
repo = pname;
rev = "v${version}";
sha256 = "1g2xkz9nsgqnrw3fdf5jchl16f0skj5mm32va61scc2yrchll166";
};
nativeBuildInputs = [ cmake clingo ];
cmakeFlags = [
"-DCLINGCON_MANAGE_RPATH=ON"
"-DPYCLINGCON_ENABLE=OFF"
"-DCLINGCON_BUILD_TESTS=ON"
];
doCheck = true;
meta = {
description = "Extension of clingo to handle constraints over integers";
license = lib.licenses.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}";
};
}