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

70 lines
1.8 KiB
Nix
Raw Normal View History

2012-12-13 06:07:18 +00:00
{stdenv, fetchurl
, 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="20.4.24";
2012-12-13 06:07:18 +00:00
name="${baseName}-${version}";
url="https://common-lisp.net/project/ecl/static/files/release/${name}.tgz";
sha256="01qgdmr54wkj854f69qdm9sybrvd6gd21dpx4askdaaqybnkh237";
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
] ++ stdenv.lib.optionals useBoehmgc [
# 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 = [
];
configureFlags = [
2016-12-13 21:35:16 +00:00
(if threadSupport then "--enable-threads" else "--disable-threads")
"--with-gmp-prefix=${gmp.dev}"
"--with-libffi-prefix=${libffi.dev}"
]
++
2012-12-13 06:07:18 +00:00
(stdenv.lib.optional (! noUnicode)
"--enable-unicode")
;
2016-02-12 01:01:37 +00:00
hardeningDisable = [ "format" ];
2016-02-12 01:01:37 +00:00
2012-12-13 06:07:18 +00:00
postInstall = ''
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
wrapProgram "$out/bin/ecl" \
--prefix PATH ':' "${gcc}/bin" \
--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
meta = {
2012-12-13 06:07:18 +00:00
inherit (s) version;
description = "Lisp implementation aiming to be small, fast and easy to embed";
homepage = "https://common-lisp.net/project/ecl/";
2012-12-13 06:07:18 +00:00
license = stdenv.lib.licenses.mit ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
2012-12-13 06:07:18 +00:00
}