Add packages scsh, The Scheme Shell

svn path=/nixpkgs/trunk/; revision=18248
This commit is contained in:
Marco Maggesi 2009-11-07 11:17:53 +00:00
parent 0c0f090bc9
commit 4d0e24acd3
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{stdenv, fetchurl}:
let
pname = "scsh";
version = "0.6.7";
name = "${pname}-${version}";
in
stdenv.mkDerivation {
inherit name;
src = fetchurl {
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
sha256 = "c4a9f7df2a0bb7a7aa3dafc918aa9e9a566d4ad33a55f0192889de172d1ddb7f";
};
meta = {
description = "a Scheme shell";
longDescription = ''
SCSH is an implementation of the Scheme shell. It is implemented as
a heap image which is interpreted by the Scheme 48 virtual machine.
'';
homepage = http://www.scsh.net/;
license = "BSD";
};
}

View File

@ -2498,6 +2498,8 @@ let
inherit fetchurl stdenv sqlite ruby ;
};
scsh = import ../development/interpreters/scsh { inherit stdenv fetchurl; };
spidermonkey = import ../development/interpreters/spidermonkey {
inherit fetchurl stdenv readline;
};