nixpkgs/pkgs/servers/gemini/agate/default.nix
John Titor efd4ac1194
agate: cleanup
format with nixfmt-rfc-style
use `lib.` explicitly

update changelog url
2024-05-30 14:15:16 +05:30

71 lines
1.6 KiB
Nix

{
lib,
stdenv,
nixosTests,
fetchFromGitHub,
rustPlatform,
libiconv,
Security,
openssl,
pkg-config,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "agate";
version = "3.3.7";
src = fetchFromGitHub {
owner = "mbrubeck";
repo = "agate";
rev = "v${version}";
hash = "sha256-pNfTgkl59NTRDH+w23P49MUWzIXh5ElnJitMEYfsBnc=";
};
cargoHash = "sha256-RuSvweZhPWS2C2lwncxWAW2XLQN6+bAslv3p4IwQ2BA=";
nativeBuildInputs = [ pkg-config ];
buildInputs =
[ openssl ]
++ lib.optionals stdenv.isDarwin [
libiconv
Security
];
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/agate --help
$out/bin/agate --version 2>&1 | grep "agate ${version}"
runHook postInstallCheck
'';
__darwinAllowLocalNetworking = true;
passthru = {
tests = {
inherit (nixosTests) agate;
};
updateScript = nix-update-script { };
};
meta = {
homepage = "https://github.com/mbrubeck/agate";
changelog = "https://github.com/mbrubeck/agate/releases/tag/v${version}";
description = "Very simple server for the Gemini hypertext protocol";
mainProgram = "agate";
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 = with lib.licenses; [
asl20
mit
];
maintainers = with lib.maintainers; [ jk ];
};
}