1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/compilers/ecl/default.nix

55 lines
1.2 KiB
Nix
Raw Normal View History

2012-12-13 06:07:18 +00:00
{stdenv, fetchurl
, libtool, autoconf, automake
2012-12-13 06:07:18 +00:00
, gmp, mpfr, libffi
, noUnicode ? false,
}:
let
s = # Generated upstream information
rec {
baseName="ecl";
2016-02-29 16:20:41 +00:00
version="16.1.2";
2012-12-13 06:07:18 +00:00
name="${baseName}-${version}";
2016-02-29 16:20:41 +00:00
hash="16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d";
url="https://common-lisp.net/project/ecl/files/release/16.1.2/ecl-16.1.2.tgz";
sha256="16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d";
2012-12-13 06:07:18 +00:00
};
buildInputs = [
libtool autoconf automake
2012-12-13 06:07:18 +00:00
];
propagatedBuildInputs = [
libffi gmp mpfr
];
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
configureFlags = [
"--enable-threads"
"--with-gmp-prefix=${gmp}"
"--with-libffi-prefix=${libffi}"
]
++
2012-12-13 06:07:18 +00:00
(stdenv.lib.optional (! noUnicode)
"--enable-unicode")
;
2016-02-12 01:01:37 +00:00
hardening_format = false;
2012-12-13 06:07:18 +00:00
postInstall = ''
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
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";
license = stdenv.lib.licenses.mit ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
};
2012-12-13 06:07:18 +00:00
}