2012-12-13 07:07:18 +01:00
|
|
|
{stdenv, fetchurl
|
2015-03-28 01:57:00 +01:00
|
|
|
, libtool, autoconf, automake
|
2016-04-19 17:41:59 +02:00
|
|
|
, gmp, mpfr, libffi, makeWrapper
|
2016-09-05 20:01:50 +02:00
|
|
|
, noUnicode ? false
|
|
|
|
, gcc
|
2016-12-13 22:35:16 +01:00
|
|
|
, threadSupport ? true
|
2012-12-13 07:07:18 +01:00
|
|
|
}:
|
|
|
|
let
|
|
|
|
s = # Generated upstream information
|
|
|
|
rec {
|
|
|
|
baseName="ecl";
|
2017-01-02 17:14:33 +01:00
|
|
|
version="16.1.3";
|
2012-12-13 07:07:18 +01:00
|
|
|
name="${baseName}-${version}";
|
2017-01-02 17:14:33 +01:00
|
|
|
hash="0m0j24w5d5a9dwwqyrg0d35c0nys16ijb4r0nyk87yp82v38b9bn";
|
|
|
|
url="https://common-lisp.net/project/ecl/static/files/release/ecl-16.1.3.tgz";
|
|
|
|
sha256="0m0j24w5d5a9dwwqyrg0d35c0nys16ijb4r0nyk87yp82v38b9bn";
|
2012-12-13 07:07:18 +01:00
|
|
|
};
|
|
|
|
buildInputs = [
|
2016-04-19 17:41:59 +02:00
|
|
|
libtool autoconf automake makeWrapper
|
2012-12-13 07:07:18 +01:00
|
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
2016-09-05 20:01:50 +02:00
|
|
|
libffi gmp mpfr gcc
|
2010-01-20 06:40:46 +01:00
|
|
|
];
|
|
|
|
in
|
2012-12-13 07:07:18 +01:00
|
|
|
stdenv.mkDerivation {
|
|
|
|
inherit (s) name version;
|
2010-02-23 22:32:16 +01:00
|
|
|
inherit buildInputs propagatedBuildInputs;
|
2016-02-12 02:01:37 +01:00
|
|
|
|
2012-12-13 07:07:18 +01:00
|
|
|
src = fetchurl {
|
|
|
|
inherit (s) url sha256;
|
|
|
|
};
|
2016-02-12 02:01:37 +01:00
|
|
|
|
2010-02-09 14:54:29 +01:00
|
|
|
configureFlags = [
|
2016-12-13 22:35:16 +01:00
|
|
|
(if threadSupport then "--enable-threads" else "--disable-threads")
|
2016-04-16 18:58:41 +02:00
|
|
|
"--with-gmp-prefix=${gmp.dev}"
|
2016-04-16 19:36:19 +02:00
|
|
|
"--with-libffi-prefix=${libffi.dev}"
|
2010-02-26 08:02:18 +01:00
|
|
|
]
|
|
|
|
++
|
2012-12-13 07:07:18 +01:00
|
|
|
(stdenv.lib.optional (! noUnicode)
|
2010-02-26 08:14:11 +01:00
|
|
|
"--enable-unicode")
|
2010-02-26 08:02:18 +01:00
|
|
|
;
|
2016-02-12 02:01:37 +01:00
|
|
|
|
2016-02-26 18:38:15 +01:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 02:01:37 +01:00
|
|
|
|
2012-12-13 07:07:18 +01:00
|
|
|
postInstall = ''
|
2010-02-23 22:32:16 +01:00
|
|
|
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
|
2016-04-19 17:41:59 +02:00
|
|
|
wrapProgram "$out/bin/ecl" \
|
2016-09-05 20:01:50 +02:00
|
|
|
--prefix PATH ':' "${gcc}/bin" \
|
2016-04-19 17:41:59 +02: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 07:07:18 +01:00
|
|
|
'';
|
2016-02-12 02:01:37 +01:00
|
|
|
|
2010-01-20 06:40:46 +01:00
|
|
|
meta = {
|
2012-12-13 07:07:18 +01:00
|
|
|
inherit (s) version;
|
|
|
|
description = "Lisp implementation aiming to be small, fast and easy to embed";
|
|
|
|
license = stdenv.lib.licenses.mit ;
|
|
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-01-20 06:40:46 +01:00
|
|
|
};
|
2012-12-13 07:07:18 +01:00
|
|
|
}
|