summary refs log tree commit diff
path: root/pkgs/development/compilers/ikarus/0.0.3.nix
blob: 1976df7b7422f1eb40b3e71e6220cb8530c7970e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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";
  };
}