forked from mirrors/nixpkgs
Added Ikarus Scheme
svn path=/nixpkgs/trunk/; revision=11755
This commit is contained in:
parent
26bdb2a619
commit
e9b3f798ba
21
pkgs/development/compilers/ikarus/0.0.3.nix
Normal file
21
pkgs/development/compilers/ikarus/0.0.3.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
|
||||
args : with args;
|
||||
rec {
|
||||
src = fetchurl {
|
||||
url = http://www.cs.indiana.edu/~aghuloum/ikarus/ikarus-0.0.3.tar.gz;
|
||||
sha256 = "0d4vqwqfnj39l0gar2di021kcf6bfpkc6g40yapkmxm6sxpdcvjv";
|
||||
};
|
||||
|
||||
buildInputs = [gmp];
|
||||
configureFlags = [];
|
||||
|
||||
/* doConfigure should be specified separately */
|
||||
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||
|
||||
name = "ikarus-" + version;
|
||||
meta = {
|
||||
description = "Ikarus - a Scheme compiler, aiming at R6RS";
|
||||
homepage = http://www.cs.indiana.edu/~aghuloum/ikarus/;
|
||||
license = "GPL3";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue