nixpkgs/pkgs/development/compilers/ecl/default.nix

73 lines
2.2 KiB
Nix
Raw Normal View History

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