yap prolog system added

svn path=/nixpkgs/trunk/; revision=11090
This commit is contained in:
Marc Weber 2008-03-13 01:13:53 +00:00
parent 6ea7522ba2
commit 9d5e5ddc9e
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,17 @@
args:
args.stdenv.mkDerivation rec {
name = "Yap-5.1.1";
src = args.fetchurl {
url = "http://downloads.sourceforge.net/yap/${name}.tar.gz";
sha256 = "0bajxmlla9gay4m4l7y7x6qldxzi0jcq2ykgpjk9liky7g5kbnya";
};
buildInputs =(with args; []);
meta = {
description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
homepage = http://yap.sourceforge.net/;
license = "artistic";
};
}

View file

@ -1606,6 +1606,10 @@ rec {
inherit stdenv binutils;
};
# prolog
yap = import ../development/compilers/yap {
inherit fetchurl stdenv;
};
### DEVELOPMENT / INTERPRETERS