567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
33 lines
716 B
Nix
33 lines
716 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
gerbilPackages,
|
|
...
|
|
}:
|
|
|
|
{
|
|
pname = "ftw";
|
|
version = "unstable-2023-11-15";
|
|
git-version = "e5e2f56";
|
|
softwareName = "FTW: For The Web!";
|
|
gerbil-package = "drewc/ftw";
|
|
|
|
gerbilInputs = with gerbilPackages; [ gerbil-utils ];
|
|
|
|
pre-src = {
|
|
fun = fetchFromGitHub;
|
|
owner = "drewc";
|
|
repo = "ftw";
|
|
rev = "e5e2f56e90bf072ddf9c2987ddfac45f048e8a04";
|
|
sha256 = "04164190vv1fzfk014mgqqmy5cml5amh63df31q2yc2kzvfajfc3";
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple web handlers for Gerbil Scheme";
|
|
homepage = "https://github.com/drewc/ftw";
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.unix;
|
|
maintainers = with lib.maintainers; [ fare ];
|
|
};
|
|
}
|