2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, fetchurl, mpfr, m4, binutils, emacs, zlib, which
|
2018-12-31 03:40:47 +00:00
|
|
|
, texinfo, libX11, xorgproto, libXi, gmp
|
|
|
|
, libXext, libXt, libXaw, libXmu } :
|
2016-01-24 15:28:29 +00:00
|
|
|
|
|
|
|
assert stdenv ? cc ;
|
|
|
|
assert stdenv.cc.isGNU ;
|
|
|
|
assert stdenv.cc ? libc ;
|
|
|
|
assert stdenv.cc.libc != null ;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "gcl";
|
2016-01-24 15:28:29 +00:00
|
|
|
version = "2.6.12";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
sha256 = "1s4hs2qbjqmn9h88l4xvsifq5c3dlc5s74lyb61rdi5grhdlkf4f";
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://gnu.spinellicreations.com/gcl/${pname}-${version}.tar.gz";
|
2016-01-24 15:28:29 +00:00
|
|
|
};
|
|
|
|
|
2016-03-15 14:47:39 +00:00
|
|
|
patches = [(fetchurl {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/dev-lisp/gcl/files/gcl-2.6.12-gcc5.patch";
|
2016-03-15 14:47:39 +00:00
|
|
|
sha256 = "00jbsn0qp8ki2w7dx8caha7g2hr9076xa6bg48j3qqqncff93zdh";
|
|
|
|
})];
|
|
|
|
|
2019-02-19 17:01:18 +00:00
|
|
|
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=902475
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace h/elf64_i386_reloc.h \
|
|
|
|
--replace 'case R_X86_64_PC32:' 'case R_X86_64_PC32: case R_X86_64_PLT32:'
|
|
|
|
'';
|
|
|
|
|
2016-01-24 15:28:29 +00:00
|
|
|
buildInputs = [
|
2010-07-06 17:48:03 +01:00
|
|
|
mpfr m4 binutils emacs gmp
|
2018-12-31 03:40:47 +00:00
|
|
|
libX11 xorgproto libXi
|
|
|
|
libXext libXt libXaw libXmu
|
2015-08-28 21:27:05 +01:00
|
|
|
zlib which texinfo
|
2015-09-15 05:27:19 +01:00
|
|
|
];
|
2010-07-07 19:44:57 +01:00
|
|
|
|
2010-07-06 21:27:48 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-ansi"
|
|
|
|
];
|
2009-11-05 21:53:37 +00:00
|
|
|
|
2016-05-09 23:21:57 +01:00
|
|
|
hardeningDisable = [ "pic" "bindnow" ];
|
2016-01-24 15:28:29 +00:00
|
|
|
|
2016-03-28 16:16:29 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-fgnu89-inline";
|
2016-01-24 15:28:29 +00:00
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
meta = with lib; {
|
2009-11-05 21:53:37 +00:00
|
|
|
description = "GNU Common Lisp compiler working via GCC";
|
2018-08-20 00:04:09 +01:00
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
2009-11-05 21:53:37 +00:00
|
|
|
};
|
|
|
|
}
|