2021-02-03 19:38:46 +01:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform, installShellFiles }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "agate";
|
2021-02-12 17:51:38 +01:00
|
|
|
version = "2.5.0";
|
2021-02-03 19:38:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mbrubeck";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-02-12 17:51:38 +01:00
|
|
|
sha256 = "sha256-mnatEvojma1+cOVllTAzDVxl5luRGleLE6GNPnQUNWQ=";
|
2021-02-03 19:38:46 +01:00
|
|
|
};
|
|
|
|
|
2021-02-12 17:51:38 +01:00
|
|
|
cargoSha256 = "sha256-B07itUftDj3yVMDc/2VetwYs74fZBa1tmeELbbQ39P0=";
|
2021-02-03 19:38:46 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
2021-02-04 09:59:20 +01:00
|
|
|
homepage = "https://proxy.vulpes.one/gemini/gem.limpet.net/agate";
|
|
|
|
changelog = "https://proxy.vulpes.one/gemini/gem.limpet.net/agate";
|
2021-02-03 19:38:46 +01:00
|
|
|
description = "Very simple server for the Gemini hypertext protocol";
|
|
|
|
longDescription = ''
|
|
|
|
Agate is a server for the Gemini network protocol, built with the Rust
|
|
|
|
programming language. Agate has very few features, and can only serve
|
|
|
|
static files. It uses async I/O, and should be quite efficient even when
|
|
|
|
running on low-end hardware and serving many concurrent requests.
|
|
|
|
'';
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ jk ];
|
|
|
|
};
|
|
|
|
}
|