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

                            
                         
                   
                    
 

                                                                          
                                                                    

    
                                
 

                                                    




                                                                  
                                          



                                                                  
{ stdenv, fetchzip, cmake }:

stdenv.mkDerivation rec {
  pname = "clingo";
  version = "5.4.1";

  src = fetchzip {
    url = "https://github.com/potassco/clingo/archive/v${version}.tar.gz";
    sha256 = "1f0q5f71s696ywxcjlfz7z134m1h7i39j9sfdv8hlw2w3g5nppc3";
  };

  nativeBuildInputs = [ cmake ];

  cmakeFlags = [ "-DCLINGO_BUILD_WITH_PYTHON=OFF" ];

  meta = {
    inherit version;
    description = "ASP system to ground and solve logic programs";
    license = stdenv.lib.licenses.mit;
    maintainers = [stdenv.lib.maintainers.raskin];
    platforms = stdenv.lib.platforms.unix;
    homepage = "https://potassco.org/";
    downloadPage = "https://github.com/potassco/clingo/releases/";
  };
}