3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/interpreters/tinyscheme/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1,020 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2019-01-08 01:05:38 +00:00
stdenv.mkDerivation rec {
pname = "tinyscheme";
2021-03-09 23:02:02 +00:00
version = "1.42";
2019-01-08 01:05:38 +00:00
src = fetchurl {
url = "mirror://sourceforge/tinyscheme/${pname}-${version}.tar.gz";
2021-03-09 23:02:02 +00:00
sha256 = "sha256-F7Cxv/0i89SdWDPiKhILM5A50s/aC0bW/FHdLwG0B60=";
2019-01-08 01:05:38 +00:00
};
patchPhase = ''
substituteInPlace scheme.c --replace "init.scm" "$out/lib/init.scm"
'';
installPhase = ''
mkdir -p $out/bin $out/lib
cp init.scm $out/lib
cp libtinyscheme* $out/lib
2019-01-08 01:05:38 +00:00
cp scheme $out/bin/tinyscheme
'';
meta = with lib; {
broken = stdenv.isDarwin;
2019-01-08 01:05:38 +00:00
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/";
2019-01-08 01:05:38 +00:00
license = licenses.bsdOriginal;
maintainers = [ maintainers.ebzzry ];
platforms = platforms.unix;
badPlatforms = [ "aarch64-darwin" ];
2019-01-08 01:05:38 +00:00
};
}