d5f4a57cbf
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
27 lines
715 B
Nix
27 lines
715 B
Nix
{ lib, fetchFromGitHub, gerbilPackages, ... }:
|
|
|
|
{
|
|
pname = "ftw";
|
|
version = "unstable-2022-01-14";
|
|
git-version = "8ba16b3";
|
|
softwareName = "FTW: For The Web!";
|
|
gerbil-package = "drewc/ftw";
|
|
|
|
gerbilInputs = with gerbilPackages; [ gerbil-utils ];
|
|
|
|
pre-src = {
|
|
fun = fetchFromGitHub;
|
|
owner = "drewc";
|
|
repo = "ftw";
|
|
rev = "8ba16b3c1cdc2150df5af8ef3c92040ef8b563b9";
|
|
sha256 = "153i6whm5jfcj9s1qpxz03sq67969lq11brssyjc3yv3wyb1b07h";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Simple web handlers for Gerbil Scheme";
|
|
homepage = "https://github.com/drewc/ftw";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ fare ];
|
|
};
|
|
}
|