2016-01-24 15:28:29 +00:00
|
|
|
{ stdenv, fetchurl, mpfr, m4, binutils, fetchcvs, emacs, zlib, which
|
|
|
|
, texinfo, libX11, xproto, inputproto, libXi, gmp
|
|
|
|
, libXext, xextproto, libXt, libXaw, libXmu } :
|
|
|
|
|
|
|
|
assert stdenv ? cc ;
|
|
|
|
assert stdenv.cc.isGNU ;
|
|
|
|
assert stdenv.cc ? libc ;
|
|
|
|
assert stdenv.cc.libc != null ;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "gcl-${version}";
|
|
|
|
version = "2.6.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "1s4hs2qbjqmn9h88l4xvsifq5c3dlc5s74lyb61rdi5grhdlkf4f";
|
|
|
|
url = "http://gnu.spinellicreations.com/gcl/${name}.tar.gz";
|
|
|
|
};
|
|
|
|
|
2016-03-15 14:47:39 +00:00
|
|
|
patches = [(fetchurl {
|
|
|
|
url = https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-lisp/gcl/files/gcl-2.6.12-gcc5.patch;
|
|
|
|
sha256 = "00jbsn0qp8ki2w7dx8caha7g2hr9076xa6bg48j3qqqncff93zdh";
|
|
|
|
})];
|
|
|
|
|
2016-01-24 15:28:29 +00:00
|
|
|
buildInputs = [
|
2010-07-06 16:48:03 +00:00
|
|
|
mpfr m4 binutils emacs gmp
|
2015-09-15 04:27:19 +00:00
|
|
|
libX11 xproto inputproto libXi
|
2009-11-06 09:44:03 +00:00
|
|
|
libXext xextproto libXt libXaw libXmu
|
2015-08-28 20:27:05 +00:00
|
|
|
zlib which texinfo
|
2015-09-15 04:27:19 +00:00
|
|
|
];
|
2010-07-07 18:44:57 +00:00
|
|
|
|
2010-07-06 20:27:48 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-ansi"
|
|
|
|
];
|
2009-11-05 21:53:37 +00:00
|
|
|
|
2016-05-09 22:21:57 +00:00
|
|
|
hardeningDisable = [ "pic" "bindnow" ];
|
2016-01-24 15:28:29 +00:00
|
|
|
|
2016-03-28 15:16:29 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
2016-01-24 15:28:29 +00:00
|
|
|
|
2009-11-05 21:53:37 +00:00
|
|
|
meta = {
|
|
|
|
description = "GNU Common Lisp compiler working via GCC";
|
2016-01-24 15:28:29 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2009-11-05 21:53:37 +00:00
|
|
|
};
|
|
|
|
}
|