aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/interpreters/shen-sbcl/default.nix
blob: 6d10669d20d8b06f77a70c323ee738bdbb37b9d2 (plain)
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
32
{ stdenv
, fetchurl
, shen-sources
, sbcl
}:

stdenv.mkDerivation rec {
  name = "shen-sbcl-${version}";
  version = "3.0.3";
  src = fetchurl {
    url = "https://github.com/Shen-Language/shen-cl/releases/download/v${version}/shen-cl-v${version}-sources.tar.gz";
    sha256 = "0mc10jlrxqi337m6ngwbr547zi4qgk69g1flz5dsddjy5x41j0yz";
  };
  buildInputs = [
    sbcl shen-sources
  ];
  buildPhase = ''
    ln -s ${shen-sources} kernel
    make sbcl
  '';
  installPhase = ''
    mkdir -p $out
    install -m755 -D bin/sbcl/shen $out/bin/shen-sbcl
  '';
  meta = with stdenv.lib; {
    homepage = https://shenlanguage.org;
    description = "Port of Shen running on Steel Bank Common Lisp";
    platforms = sbcl.meta.platforms;
    maintainers = with maintainers; [ bsima ];
    license = licenses.bsd3;
  };
}