yap prolog system added
svn path=/nixpkgs/trunk/; revision=11090
This commit is contained in:
parent
6ea7522ba2
commit
9d5e5ddc9e
17
pkgs/development/compilers/yap/default.nix
Normal file
17
pkgs/development/compilers/yap/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
@ -1606,6 +1606,10 @@ rec {
|
|||||||
inherit stdenv binutils;
|
inherit stdenv binutils;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# prolog
|
||||||
|
yap = import ../development/compilers/yap {
|
||||||
|
inherit fetchurl stdenv;
|
||||||
|
};
|
||||||
|
|
||||||
### DEVELOPMENT / INTERPRETERS
|
### DEVELOPMENT / INTERPRETERS
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user