forked from mirrors/nixpkgs
Update YAP to version 6.2.2
This commit is contained in:
parent
3d5e7a99f4
commit
412b970479
|
@ -1,13 +1,16 @@
|
||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl, readline }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "yap-5.1.1";
|
version = "6.2.2";
|
||||||
|
name = "yap-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/yap/Yap-5.1.1.tar.gz";
|
url = "http://www.dcc.fc.up.pt/~vsc/Yap/${name}.tar.gz";
|
||||||
sha256 = "0bajxmlla9gay4m4l7y7x6qldxzi0jcq2ykgpjk9liky7g5kbnya";
|
sha256 = "0l6p0vy667wws64cvwf74ssl6h9gypjzrsl3b2d32hs422186pzi";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ readline ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
|
description = "Yap Prolog System is a ISO-compatible high-performance Prolog compiler";
|
||||||
homepage = http://yap.sourceforge.net/;
|
homepage = http://yap.sourceforge.net/;
|
||||||
|
|
Loading…
Reference in a new issue