mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
32 lines
675 B
Nix
32 lines
675 B
Nix
{stdenv, fetchurl, asdf, lisp ? null}:
|
|
stdenv.mkDerivation {
|
|
name = "cl-wrapper-script";
|
|
|
|
buildPhase="";
|
|
|
|
installPhase=''
|
|
mkdir -p "$out"/bin
|
|
cp ${./common-lisp.sh} "$out"/bin/common-lisp.sh
|
|
substituteAll "${./build-with-lisp.sh}" "$out/bin/build-with-lisp.sh"
|
|
substituteAll "${./cl-wrapper.sh}" "$out/bin/cl-wrapper.sh"
|
|
chmod a+x "$out"/bin/*
|
|
'';
|
|
|
|
inherit asdf lisp;
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
phases="installPhase fixupPhase";
|
|
|
|
preferLocalBuild = true;
|
|
|
|
passthru = {
|
|
inherit lisp;
|
|
};
|
|
|
|
meta = {
|
|
description = ''Script used to wrap Common Lisp implementations'';
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
};
|
|
}
|