mkcl: runtime needs gcc

This commit is contained in:
Tomas Hlavaty 2015-10-14 23:39:12 +02:00
parent c0a963e3cc
commit 58a9b09f7c

View file

@ -1,4 +1,4 @@
{ stdenv, fetchgit, gmp }:
{ stdenv, fetchgit, makeWrapper, gmp, gcc }:
stdenv.mkDerivation rec {
v = "1.1.9";
@ -10,6 +10,7 @@ stdenv.mkDerivation rec {
sha256 = "0ja7vyp5rjidb2a1gah35jqzqn6zjkikz5sd966p0f0wh26l6n03";
};
buildInputs = [ makeWrapper ];
propagatedBuildInputs = [ gmp ];
configureFlags = [
@ -17,6 +18,10 @@ stdenv.mkDerivation rec {
"GMP_LDFLAGS=-L${gmp}/lib"
];
postInstall = ''
wrapProgram $out/bin/mkcl --prefix PATH : "${gcc}/bin"
'';
meta = {
description = "ANSI Common Lisp Implementation";
homepage = https://common-lisp.net/project/mkcl/;