Add Chibi-Scheme expression
This commit is contained in:
parent
4678ddc1c0
commit
6f682f9afb
@ -38,6 +38,7 @@
|
||||
coroa = "Jonas Hörsch <jonas@chaoflow.net>";
|
||||
cstrahan = "Charles Strahan <charles.c.strahan@gmail.com>";
|
||||
DamienCassou = "Damien Cassou <damien.cassou@gmail.com>";
|
||||
DerGuteMoritz = "Moritz Heidkamp <moritz@twoticketsplease.de>";
|
||||
doublec = "Chris Double <chris.double@double.co.nz>";
|
||||
ederoyd46 = "Matthew Brown <matt@ederoyd.co.uk>";
|
||||
edwtjo = "Edward Tjörnhammar <ed@cflags.cc>";
|
||||
|
36
pkgs/development/interpreters/chibi/default.nix
Normal file
36
pkgs/development/interpreters/chibi/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ stdenv, fetchurl, makeWrapper }:
|
||||
let
|
||||
version = "0.7";
|
||||
name = "chibi-scheme-${version}";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
meta = {
|
||||
homepage = "https://code.google.com/p/chibi-scheme/";
|
||||
description = "Small Footprint Scheme for use as a C Extension Language";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.DerGuteMoritz ];
|
||||
};
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://abrek.synthcode.com/${name}.tgz";
|
||||
sha256 = "1hhkq0khgi8i24xv66y7r6pgk1issn1i2bf7rv91rbk0wm0kv7qm";
|
||||
};
|
||||
|
||||
buildInputs = [ makeWrapper ];
|
||||
|
||||
installPhase = ''
|
||||
make install PREFIX="$out"
|
||||
'';
|
||||
|
||||
fixupPhase = ''
|
||||
wrapProgram "$out/bin/chibi-scheme" \
|
||||
--prefix CHIBI_MODULE_PATH : "$out/share/chibi:$out/lib/chibi"
|
||||
|
||||
for f in chibi-doc chibi-ffi snow-chibi; do
|
||||
substituteInPlace "$out/bin/$f" \
|
||||
--replace "/usr/bin/env chibi-scheme" "$out/bin/chibi-scheme"
|
||||
done
|
||||
'';
|
||||
}
|
@ -3562,6 +3562,8 @@ let
|
||||
|
||||
angelscript = callPackage ../development/interpreters/angelscript {};
|
||||
|
||||
chibi = callPackage ../development/interpreters/chibi { };
|
||||
|
||||
clisp = callPackage ../development/interpreters/clisp { };
|
||||
|
||||
# compatibility issues in 2.47 - at list 2.44.1 is known good
|
||||
|
Loading…
Reference in New Issue
Block a user