2022-06-16 17:23:12 +00:00
|
|
|
{ lib, stdenv, nixosTests, fetchFromGitHub, rustPlatform, libiconv, Security }:
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "agate";
|
2023-03-24 00:07:29 +00:00
|
|
|
version = "3.3.0";
|
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}";
|
2023-03-24 00:07:29 +00:00
|
|
|
hash = "sha256-B0hbXar/RulfBJUR1Jtczf3p1H6Zj5OVCXVCaj5zf/U=";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
2023-03-24 00:07:29 +00:00
|
|
|
cargoHash = "sha256-6Z+mcQAJwW7tm4SBbrHwHIwiqlFV+PIa5I2onU2rPts=";
|
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
|
|
|
|
'';
|
|
|
|
|
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";
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|