2021-02-11 21:04:54 +00:00
|
|
|
{lib, stdenv, fetchurl, fetchpatch
|
2015-03-28 00:57:00 +00:00
|
|
|
, libtool, autoconf, automake
|
2020-10-22 11:43:37 +01:00
|
|
|
, texinfo
|
2016-04-19 16:41:59 +01:00
|
|
|
, gmp, mpfr, libffi, makeWrapper
|
2016-09-05 19:01:50 +01:00
|
|
|
, noUnicode ? false
|
|
|
|
, gcc
|
2016-12-13 21:35:16 +00:00
|
|
|
, threadSupport ? true
|
2018-04-23 23:25:22 +01:00
|
|
|
, useBoehmgc ? false, boehmgc
|
2012-12-13 06:07:18 +00:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="ecl";
|
2021-02-11 05:02:40 +00:00
|
|
|
version="21.2.1";
|
2012-12-13 06:07:18 +00:00
|
|
|
name="${baseName}-${version}";
|
2020-10-22 11:43:37 +01:00
|
|
|
url="https://common-lisp.net/project/ecl/static/files/release/${name}.tgz";
|
2021-02-11 05:02:40 +00:00
|
|
|
sha256="000906nnq25177bgsfndiw3iqqgrjc9spk10hzk653sbz3f7anmi";
|
2012-12-13 06:07:18 +00:00
|
|
|
};
|
|
|
|
buildInputs = [
|
2020-10-22 11:43:37 +01:00
|
|
|
libtool autoconf automake texinfo makeWrapper
|
2012-12-13 06:07:18 +00:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
2016-09-05 19:01:50 +01:00
|
|
|
libffi gmp mpfr gcc
|
2018-04-23 23:25:22 +01:00
|
|
|
# replaces ecl's own gc which other packages can depend on, thus propagated
|
2021-01-22 11:25:31 +00:00
|
|
|
] ++ lib.optionals useBoehmgc [
|
2018-04-23 23:25:22 +01:00
|
|
|
# replaces ecl's own gc which other packages can depend on, thus propagated
|
|
|
|
boehmgc
|
2010-01-20 05:40:46 +00:00
|
|
|
];
|
|
|
|
in
|
2012-12-13 06:07:18 +00:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
2010-02-23 21:32:16 +00:00
|
|
|
inherit buildInputs propagatedBuildInputs;
|
2016-02-12 01:01:37 +00:00
|
|
|
|
2012-12-13 06:07:18 +00:00
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
2016-02-12 01:01:37 +00:00
|
|
|
|
2019-12-16 22:02:26 +00:00
|
|
|
patches = [
|
2020-11-30 13:07:33 +00:00
|
|
|
# https://gitlab.com/embeddable-common-lisp/ecl/-/merge_requests/1
|
2021-02-11 21:04:54 +00:00
|
|
|
(fetchpatch {
|
2020-11-30 13:07:33 +00:00
|
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/ecl/patches/write_error.patch?h=9.2";
|
2021-02-11 21:04:54 +00:00
|
|
|
sha256 = "0hfxacpgn4919hg0mn4wf4m8r7y592r4gw7aqfnva7sckxi6w089";
|
2020-11-30 13:07:33 +00:00
|
|
|
})
|
2019-12-16 22:02:26 +00:00
|
|
|
];
|
|
|
|
|
2010-02-09 13:54:29 +00:00
|
|
|
configureFlags = [
|
2016-12-13 21:35:16 +00:00
|
|
|
(if threadSupport then "--enable-threads" else "--disable-threads")
|
2016-04-16 17:58:41 +01:00
|
|
|
"--with-gmp-prefix=${gmp.dev}"
|
2016-04-16 18:36:19 +01:00
|
|
|
"--with-libffi-prefix=${libffi.dev}"
|
2010-02-26 07:02:18 +00:00
|
|
|
]
|
|
|
|
++
|
2021-01-22 11:25:31 +00:00
|
|
|
(lib.optional (! noUnicode)
|
2010-02-26 07:14:11 +00:00
|
|
|
"--enable-unicode")
|
2010-02-26 07:02:18 +00:00
|
|
|
;
|
2016-02-12 01:01:37 +00:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 01:01:37 +00:00
|
|
|
|
2012-12-13 06:07:18 +00:00
|
|
|
postInstall = ''
|
2010-02-23 21:32:16 +00:00
|
|
|
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
|
2016-04-19 16:41:59 +01:00
|
|
|
wrapProgram "$out/bin/ecl" \
|
2016-09-05 19:01:50 +01:00
|
|
|
--prefix PATH ':' "${gcc}/bin" \
|
2016-04-19 16:41:59 +01:00
|
|
|
--prefix NIX_LDFLAGS ' ' "-L${gmp.lib or gmp.out or gmp}/lib" \
|
|
|
|
--prefix NIX_LDFLAGS ' ' "-L${libffi.lib or libffi.out or libffi}/lib"
|
2012-12-13 06:07:18 +00:00
|
|
|
'';
|
2016-02-12 01:01:37 +00:00
|
|
|
|
2010-01-20 05:40:46 +00:00
|
|
|
meta = {
|
2012-12-13 06:07:18 +00:00
|
|
|
inherit (s) version;
|
|
|
|
description = "Lisp implementation aiming to be small, fast and easy to embed";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://common-lisp.net/project/ecl/";
|
2021-01-22 11:25:31 +00:00
|
|
|
license = lib.licenses.mit ;
|
|
|
|
maintainers = [lib.maintainers.raskin];
|
2021-02-11 05:02:40 +00:00
|
|
|
platforms = lib.platforms.unix;
|
2010-01-20 05:40:46 +00:00
|
|
|
};
|
2012-12-13 06:07:18 +00:00
|
|
|
}
|