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

46 lines
1.1 KiB
Nix
Raw Normal View History

2012-12-13 06:07:18 +00:00
{stdenv, fetchurl
, gmp, mpfr, libffi
, noUnicode ? false,
}:
let
s = # Generated upstream information
rec {
baseName="ecl";
2015-03-08 18:43:06 +00:00
version="15.3.7";
2012-12-13 06:07:18 +00:00
name="${baseName}-${version}";
2015-03-08 18:43:06 +00:00
hash="13wlxkd5prm93gcm2dhm7v52fl803yx93aa97lrb39z0y6xzziid";
url="mirror://sourceforge/project/ecls/ecls/15.3/ecl-15.3.7.tgz";
sha256="13wlxkd5prm93gcm2dhm7v52fl803yx93aa97lrb39z0y6xzziid";
2012-12-13 06:07:18 +00:00
};
buildInputs = [
libffi
];
propagatedBuildInputs = [
gmp mpfr
];
in
2012-12-13 06:07:18 +00:00
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs propagatedBuildInputs;
2012-12-13 06:07:18 +00:00
src = fetchurl {
inherit (s) url sha256;
};
configureFlags = [
"--enable-threads"
]
++
2012-12-13 06:07:18 +00:00
(stdenv.lib.optional (! noUnicode)
"--enable-unicode")
;
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
'';
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
}