summary refs log blame commit diff
path: root/pkgs/applications/science/logic/potassco/clingcon.nix
blob: 1614adf45537e551e3caa0b3e5bd7322090c291a (plain) (tree)
1
2
3
4
5
6
7
8
9
             

                 
        



                         
                    


                         
                 
                        
                                                                    

     
                                       


                                

                               

    

                 
          
                                                                            
                               
                                   




                                                                                
{ 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}";
  };
}