yap: add 'zlib' and 'gmp' build inputs to enable additional features
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, readline }:
|
{ stdenv, fetchurl, readline, gmp, zlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "6.2.2";
|
version = "6.2.2";
|
||||||
@@ -9,11 +9,14 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0l6p0vy667wws64cvwf74ssl6h9gypjzrsl3b2d32hs422186pzi";
|
sha256 = "0l6p0vy667wws64cvwf74ssl6h9gypjzrsl3b2d32hs422186pzi";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ readline ];
|
buildInputs = [ readline gmp zlib ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
homepage = "http://www.dcc.fc.up.pt/~vsc/Yap/";
|
||||||
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/;
|
|
||||||
license = "artistic";
|
license = "artistic";
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user