1{
2 lib,
3 fetchFromGitHub,
4 gerbilPackages,
5 ...
6}:
7
8{
9 pname = "ftw";
10 version = "unstable-2023-11-15";
11 git-version = "e5e2f56";
12 softwareName = "FTW: For The Web!";
13 gerbil-package = "drewc/ftw";
14
15 gerbilInputs = with gerbilPackages; [ gerbil-utils ];
16
17 pre-src = {
18 fun = fetchFromGitHub;
19 owner = "drewc";
20 repo = "ftw";
21 rev = "e5e2f56e90bf072ddf9c2987ddfac45f048e8a04";
22 sha256 = "04164190vv1fzfk014mgqqmy5cml5amh63df31q2yc2kzvfajfc3";
23 };
24
25 meta = with lib; {
26 description = "Simple web handlers for Gerbil Scheme";
27 homepage = "https://github.com/drewc/ftw";
28 license = licenses.mit;
29 platforms = platforms.unix;
30 maintainers = with maintainers; [ fare ];
31 };
32}