about summary refs log tree commit diff
path: root/pkgs/development/compilers
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-09-11 20:43:04 +0200
committerPeter Simons <simons@cryp.to>2013-09-11 20:43:04 +0200
commit39043ce87e5839fcdae9906f4cccf06747570825 (patch)
treeaa7dd948bec55c9af6511970ed8db4d50e30c4e5 /pkgs/development/compilers
parentd8d001da13d61d986fdd1a719e5756868b6b3e74 (diff)
downloadnixlib-39043ce87e5839fcdae9906f4cccf06747570825.tar
nixlib-39043ce87e5839fcdae9906f4cccf06747570825.tar.gz
nixlib-39043ce87e5839fcdae9906f4cccf06747570825.tar.bz2
nixlib-39043ce87e5839fcdae9906f4cccf06747570825.tar.lz
nixlib-39043ce87e5839fcdae9906f4cccf06747570825.tar.xz
nixlib-39043ce87e5839fcdae9906f4cccf06747570825.tar.zst
nixlib-39043ce87e5839fcdae9906f4cccf06747570825.zip
yap: add 'zlib' and 'gmp' build inputs to enable additional features
Diffstat (limited to 'pkgs/development/compilers')
-rw-r--r--pkgs/development/compilers/yap/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/development/compilers/yap/default.nix b/pkgs/development/compilers/yap/default.nix
index 8a00850a03a4..44e407105690 100644
--- a/pkgs/development/compilers/yap/default.nix
+++ b/pkgs/development/compilers/yap/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, readline }:
+{ stdenv, fetchurl, readline, gmp, zlib }:
 
 stdenv.mkDerivation rec {
   version = "6.2.2";
@@ -9,11 +9,14 @@ stdenv.mkDerivation rec {
     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";
-    homepage = http://yap.sourceforge.net/;
     license = "artistic";
+
+    maintainers = [ stdenv.lib.maintainers.simons ];
+    platforms = stdenv.lib.platforms.linux;
   };
 }