summary refs log blame commit diff
path: root/pkgs/development/interpreters/tinyscheme/default.nix
blob: ca897ec692c198ac00f214769a70a5e31f0bd700 (plain) (tree)
1
2
3
4
5
6
7
8


                         
                       


                   
                                                                       
























                                                                                
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  pname = "tinyscheme";
  version = "1.41";

  src = fetchurl {
    url = "mirror://sourceforge/tinyscheme/${pname}-${version}.tar.gz";
    sha256 = "168rk4zrlhsknbvldq2jsgabpwlqkx6la44gkqmijmf7jhs11h7a";
  };

  patchPhase = ''
    substituteInPlace scheme.c --replace "init.scm" "$out/lib/init.scm"
  '';

  installPhase = ''
    mkdir -p $out/bin $out/lib
    cp init.scm $out/lib
    cp scheme $out/bin/tinyscheme
  '';

  meta = with stdenv.lib; {
    description = "Lightweight Scheme implementation";
    longDescription = ''
      TinyScheme is a lightweight Scheme interpreter that implements as large a
      subset of R5RS as was possible without getting very large and complicated.
    '';
    homepage = http://tinyscheme.sourceforge.net/;
    license = licenses.bsdOriginal;
    maintainers = [ maintainers.ebzzry ];
    platforms = platforms.unix;
  };
}