2021-02-13 14:23:35 +00:00
|
|
|
{lib, stdenv, fetchurl, fetchpatch
|
2020-04-24 23:36:52 +00:00
|
|
|
, libtool, autoconf, automake
|
2020-10-27 00:29:36 +00:00
|
|
|
, texinfo
|
2020-04-24 23:36:52 +00:00
|
|
|
, gmp, mpfr, libffi, makeWrapper
|
|
|
|
, noUnicode ? false
|
|
|
|
, gcc
|
|
|
|
, threadSupport ? true
|
|
|
|
, useBoehmgc ? false, boehmgc
|
|
|
|
}:
|
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="ecl";
|
2021-02-13 14:23:35 +00:00
|
|
|
version="21.2.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
name="${baseName}-${version}";
|
2020-10-27 00:29:36 +00:00
|
|
|
url="https://common-lisp.net/project/ecl/static/files/release/${name}.tgz";
|
2021-02-13 14:23:35 +00:00
|
|
|
sha256="000906nnq25177bgsfndiw3iqqgrjc9spk10hzk653sbz3f7anmi";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
buildInputs = [
|
2020-10-27 00:29:36 +00:00
|
|
|
libtool autoconf automake texinfo makeWrapper
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
libffi gmp mpfr gcc
|
|
|
|
# replaces ecl's own gc which other packages can depend on, thus propagated
|
2021-02-05 17:12:51 +00:00
|
|
|
] ++ lib.optionals useBoehmgc [
|
2020-04-24 23:36:52 +00:00
|
|
|
# replaces ecl's own gc which other packages can depend on, thus propagated
|
|
|
|
boehmgc
|
|
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
|
|
|
inherit buildInputs propagatedBuildInputs;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
2020-12-25 13:55:36 +00:00
|
|
|
# https://gitlab.com/embeddable-common-lisp/ecl/-/merge_requests/1
|
2021-02-13 14:23:35 +00:00
|
|
|
(fetchpatch {
|
2020-12-25 13:55:36 +00:00
|
|
|
url = "https://git.sagemath.org/sage.git/plain/build/pkgs/ecl/patches/write_error.patch?h=9.2";
|
2021-02-13 14:23:35 +00:00
|
|
|
sha256 = "0hfxacpgn4919hg0mn4wf4m8r7y592r4gw7aqfnva7sckxi6w089";
|
2020-12-25 13:55:36 +00:00
|
|
|
})
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
(if threadSupport then "--enable-threads" else "--disable-threads")
|
2021-08-05 21:33:18 +00:00
|
|
|
"--with-gmp-prefix=${lib.getDev gmp}"
|
|
|
|
"--with-libffi-prefix=${lib.getDev libffi}"
|
|
|
|
] ++ lib.optional useBoehmgc "--with-libgc-prefix=${lib.getDev boehmgc}"
|
|
|
|
++ lib.optional (!noUnicode) "--enable-unicode";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-08-05 21:33:18 +00:00
|
|
|
postInstall = let
|
|
|
|
ldArgs = lib.strings.concatMapStringsSep " "
|
|
|
|
(l: ''--prefix NIX_LDFLAGS ' ' "-L${l.lib or l.out or l}/lib"'')
|
|
|
|
([ gmp libffi ] ++ lib.optional useBoehmgc boehmgc);
|
|
|
|
in ''
|
2020-04-24 23:36:52 +00:00
|
|
|
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
|
2021-08-05 21:33:18 +00:00
|
|
|
wrapProgram "$out/bin/ecl" --prefix PATH ':' "${gcc}/bin" ${ldArgs}
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-08-05 21:33:18 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Lisp implementation aiming to be small, fast and easy to embed";
|
|
|
|
homepage = "https://common-lisp.net/project/ecl/";
|
2021-08-05 21:33:18 +00:00
|
|
|
license = licenses.mit ;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.unix;
|
2021-04-05 15:23:46 +00:00
|
|
|
changelog = "https://gitlab.com/embeddable-common-lisp/ecl/-/raw/${s.version}/CHANGELOG";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|