summary refs log tree commit diff
path: root/pkgs/development/compilers/yap/default.nix
blob: 753c0f8ee7783024088c84aa997106621d8b089e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:
        
stdenv.mkDerivation rec {
  name = "yap-5.1.1";

  src = fetchurl {
    url = "http://downloads.sourceforge.net/yap/Yap-5.1.1.tar.gz";
    sha256 = "0bajxmlla9gay4m4l7y7x6qldxzi0jcq2ykgpjk9liky7g5kbnya";
  };

  meta = { 
    description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
    homepage = http://yap.sourceforge.net/;
    license = "artistic";
  };
}