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

49 lines
1.2 KiB
Nix
Raw Normal View History

2012-12-13 10:07:18 +04:00
{stdenv, fetchurl
, libtool, autoconf, automake
2012-12-13 10:07:18 +04:00
, gmp, mpfr, libffi
, noUnicode ? false,
}:
let
s = # Generated upstream information
rec {
baseName="ecl";
version="16.0.0";
2012-12-13 10:07:18 +04:00
name="${baseName}-${version}";
hash="0czh78z9i5b7jc241mq1h1gdscvdw5fbhfb0g9sn4rchwk1x8gil";
url="https://common-lisp.net/project/ecl/files/ecl-16.0.0.tgz";
sha256="0czh78z9i5b7jc241mq1h1gdscvdw5fbhfb0g9sn4rchwk1x8gil";
2012-12-13 10:07:18 +04:00
};
buildInputs = [
libtool autoconf automake
2012-12-13 10:07:18 +04:00
];
propagatedBuildInputs = [
libffi gmp mpfr
];
in
2012-12-13 10:07:18 +04:00
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs propagatedBuildInputs;
2012-12-13 10:07:18 +04:00
src = fetchurl {
inherit (s) url sha256;
};
configureFlags = [
"--enable-threads"
"--with-gmp-prefix=${gmp}"
"--with-libffi-prefix=${libffi}"
]
++
2012-12-13 10:07:18 +04:00
(stdenv.lib.optional (! noUnicode)
"--enable-unicode")
;
2012-12-13 10:07:18 +04:00
postInstall = ''
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
2012-12-13 10:07:18 +04:00
'';
meta = {
2012-12-13 10:07:18 +04: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;
};
2012-12-13 10:07:18 +04:00
}