fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ stdenv, fetchurl, gmp }:
2
3stdenv.mkDerivation rec {
4 version = "0.0.3";
5 name = "ikarus-${version}";
6
7 src = fetchurl {
8 url = "http://launchpad.net/ikarus/0.0/${version}/+download/${name}.tar.gz";
9 sha256 = "0d4vqwqfnj39l0gar2di021kcf6bfpkc6g40yapkmxm6sxpdcvjv";
10 };
11
12 buildInputs = [ gmp ];
13
14 meta = {
15 description = "Scheme compiler, aiming at R6RS";
16 homepage = http://ikarus-scheme.org/;
17 license = stdenv.lib.licenses.gpl3;
18 };
19}