nixpkgs/pkgs/development/compilers/yap/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

26 lines
702 B
Nix

{ stdenv, fetchurl, readline, gmp, zlib }:
stdenv.mkDerivation rec {
version = "6.3.3";
name = "yap-${version}";
src = fetchurl {
url = "http://www.dcc.fc.up.pt/~vsc/Yap/${name}.tar.gz";
sha256 = "0y7sjwimadqsvgx9daz28c9mxcx9n1znxklih9xg16k6n54v9qxf";
};
buildInputs = [ readline gmp zlib ];
configureFlags = "--enable-tabling=yes";
meta = {
homepage = http://www.dcc.fc.up.pt/~vsc/Yap/;
description = "A ISO-compatible high-performance Prolog compiler";
license = stdenv.lib.licenses.artistic2;
maintainers = [ stdenv.lib.maintainers.peti ];
platforms = stdenv.lib.platforms.linux;
broken = !stdenv.is64bit; # the linux 32 bit build fails.
};
}