summary refs log tree commit diff
path: root/pkgs/development/lisp-modules/clwrapper/default.nix
blob: 9641dc305bec2b62be5c796dec6d191a0699fbac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{stdenv, fetchurl, asdf, lisp ? null}:
stdenv.mkDerivation {
  name = "cl-wrapper-script";

  buildPhase="";

  installPhase=''
    mkdir -p "$out"/bin
    cp ${./cl-wrapper.sh} "$out"/bin/cl-wrapper.sh
    cp ${./common-lisp.sh} "$out"/bin/common-lisp.sh
    substituteAll "${./build-with-lisp.sh}" "$out/bin/build-with-lisp.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];
  };
}