2021-05-11 20:28:44 +02:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, libiconv, Security }:
|
2021-02-03 19:38:46 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "agate";
|
2021-06-08 15:48:57 +02:00
|
|
|
version = "3.1.0";
|
2021-02-03 19:38:46 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mbrubeck";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-06-08 15:48:57 +02:00
|
|
|
sha256 = "sha256-miIMz4Lk4R5So96Ceqe1Fl5ozpf47qWq0GgtKFDDCCA=";
|
2021-02-03 19:38:46 +01:00
|
|
|
};
|
|
|
|
|
2021-06-08 15:48:57 +02:00
|
|
|
cargoSha256 = "sha256-NZpqCl37dZUvXmn4Q1Pvbz3LSxk1s0s5x1CBO0POA/4=";
|
2021-02-03 19:38:46 +01:00
|
|
|
|
2021-05-11 20:28:44 +02:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2021-02-12 20:52:20 +01:00
|
|
|
|
2021-02-28 15:43:09 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/agate --help
|
|
|
|
$out/bin/agate --version 2>&1 | grep "agate ${version}"
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
2021-02-03 19:38:46 +01:00
|
|
|
meta = with lib; {
|
2021-02-19 10:59:43 +01:00
|
|
|
homepage = "https://proxy.vulpes.one/gemini/qwertqwefsday.eu/agate.gmi";
|
|
|
|
changelog = "https://proxy.vulpes.one/gemini/qwertqwefsday.eu/agate.gmi";
|
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.
|
|
|
|
'';
|
2021-02-19 10:59:43 +01:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2021-02-03 19:38:46 +01:00
|
|
|
maintainers = with maintainers; [ jk ];
|
|
|
|
};
|
|
|
|
}
|