mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
Manually fix ecl-config. Not that we really care what it says, but it should not give unsuable flag set
svn path=/nixpkgs/trunk/; revision=20203
This commit is contained in:
parent
ecc14afbda
commit
24614bdffe
@ -2,6 +2,8 @@ a :
|
||||
let
|
||||
s = import ./src-for-default.nix;
|
||||
buildInputs = with a; [
|
||||
];
|
||||
propagatedBuildInputs = with a; [
|
||||
gmp mpfr
|
||||
];
|
||||
in
|
||||
@ -9,14 +11,18 @@ rec {
|
||||
src = a.fetchUrlFromSrcInfo s;
|
||||
|
||||
inherit (s) name;
|
||||
inherit buildInputs;
|
||||
inherit buildInputs propagatedBuildInputs;
|
||||
configureFlags = [
|
||||
"--enable-threads"
|
||||
"--enable-unicode"
|
||||
];
|
||||
|
||||
/* doConfigure should be removed if not needed */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
phaseNames = ["doConfigure" "doMakeInstall" "fixEclConfig"];
|
||||
|
||||
fixEclConfig = a.fullDepEntry ''
|
||||
sed -e 's/@[-a-zA-Z_]*@//g' -i $out/bin/ecl-config
|
||||
'' ["minInit"];
|
||||
|
||||
meta = {
|
||||
description = "A Lisp implementation aiming to be small and fast";
|
||||
|
Loading…
Reference in New Issue
Block a user