2024-02-29 20:09:43 +00:00
|
|
|
{ lib, stdenv, nixosTests, fetchFromGitHub, rustPlatform, libiconv, Security }:
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "agate";
|
2024-02-29 20:09:43 +00:00
|
|
|
version = "3.3.4";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mbrubeck";
|
2023-03-24 00:07:29 +00:00
|
|
|
repo = "agate";
|
2021-02-13 14:23:35 +00:00
|
|
|
rev = "v${version}";
|
2024-02-29 20:09:43 +00:00
|
|
|
hash = "sha256-7z3iAA+Q3k5jEO9ZhA06h7/17gE0FWPqDOGK/XENRWg=";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
2024-01-02 11:29:13 +00:00
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
cargoHash = "sha256-iTopJnuH2extGnaJXL+RPUwcvj2e+k5A4BT33v+sFiA=";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
2021-05-20 23:08:51 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv Security ];
|
2021-02-13 14:23:35 +00:00
|
|
|
|
2021-03-09 03:18:52 +00:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
|
|
|
$out/bin/agate --help
|
|
|
|
$out/bin/agate --version 2>&1 | grep "agate ${version}"
|
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2022-02-20 05:27:41 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) agate; };
|
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
meta = with lib; {
|
2021-12-06 16:07:01 +00:00
|
|
|
homepage = "https://github.com/mbrubeck/agate";
|
|
|
|
changelog = "https://github.com/mbrubeck/agate/blob/master/CHANGELOG.md";
|
2021-02-13 14:23:35 +00:00
|
|
|
description = "Very simple server for the Gemini hypertext protocol";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "agate";
|
2021-02-13 14:23:35 +00:00
|
|
|
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-22 21:28:39 +00:00
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
2021-02-13 14:23:35 +00:00
|
|
|
maintainers = with maintainers; [ jk ];
|
|
|
|
};
|
|
|
|
}
|