summary refs log blame commit diff
path: root/pkgs/development/compilers/yap/default.nix
blob: 44e407105690a9a23934623c644b904b1fa35406 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                          
 
                         

                          
 
                  

                                                                    

    
                                      
 

                                                   
                                                                                           
                         


                                                    

    
{ stdenv, fetchurl, readline, gmp, zlib }:

stdenv.mkDerivation rec {
  version = "6.2.2";
  name = "yap-${version}";

  src = fetchurl {
    url = "http://www.dcc.fc.up.pt/~vsc/Yap/${name}.tar.gz";
    sha256 = "0l6p0vy667wws64cvwf74ssl6h9gypjzrsl3b2d32hs422186pzi";
  };

  buildInputs = [ readline gmp zlib ];

  meta = {
    homepage = "http://www.dcc.fc.up.pt/~vsc/Yap/";
    description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
    license = "artistic";

    maintainers = [ stdenv.lib.maintainers.simons ];
    platforms = stdenv.lib.platforms.linux;
  };
}