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 }:
2
3stdenv.mkDerivation {
4 name = "scheme48-1.9.2";
5
6 meta = {
7 homepage = http://s48.org/;
8 description = "Scheme 48";
9 maintainers = with stdenv.lib.maintainers; [ the-kenny ];
10 platforms = with stdenv.lib.platforms; unix;
11 };
12
13 src = fetchurl {
14 url = http://s48.org/1.9.2/scheme48-1.9.2.tgz;
15 sha256 = "1x4xfm3lyz2piqcw1h01vbs1iq89zq7wrsfjgh3fxnlm1slj2jcw";
16 };
17}