mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
mkcl: runtime needs gcc
This commit is contained in:
parent
c0a963e3cc
commit
58a9b09f7c
1 changed files with 6 additions and 1 deletions
|
@ -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/;
|
||||
|
|
Loading…
Reference in a new issue