mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-15 18:23:09 +00:00
30 lines
1.0 KiB
Nix
30 lines
1.0 KiB
Nix
{ lib, fetchFromGitHub, rustPlatform, installShellFiles }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "agate";
|
|
version = "2.4.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mbrubeck";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-AojemBU3BUuMqokLH9mhYf+sH5Q+zSYeoGmuI5/6vPw=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-TFSD+G0i5EAu7D7gOtRzwFxO214CBPdh2Y6rRt39FVo=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://proxy.vulpes.one/gemini/gem.limpet.net/agate";
|
|
changelog = "https://proxy.vulpes.one/gemini/gem.limpet.net/agate";
|
|
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 ];
|
|
};
|
|
}
|