nixpkgs/pkgs/development/compilers/yap/default.nix

20 lines
475 B
Nix
Raw Normal View History

2013-09-11 19:40:10 +02:00
{ stdenv, fetchurl, readline }:
stdenv.mkDerivation rec {
2013-09-11 19:40:10 +02:00
version = "6.2.2";
name = "yap-${version}";
src = fetchurl {
2013-09-11 19:40:10 +02:00
url = "http://www.dcc.fc.up.pt/~vsc/Yap/${name}.tar.gz";
sha256 = "0l6p0vy667wws64cvwf74ssl6h9gypjzrsl3b2d32hs422186pzi";
};
2013-09-11 19:40:10 +02:00
buildInputs = [ readline ];
meta = {
description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
homepage = http://yap.sourceforge.net/;
license = "artistic";
};
}