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