Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
|
|
pkg-config,
|
|
openssl,
|
|
|
|
versionCheckHook,
|
|
|
|
nix-update-script,
|
|
nixosTests,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "agate";
|
|
version = "3.3.19";
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mbrubeck";
|
|
repo = "agate";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-MPBjGtrQFM24ilBYJubfnfVHmTTIkNuWbfdbVYAXvtI=";
|
|
};
|
|
|
|
cargoHash = "sha256-8llvdpF8kQtLxsu5Ynn7Cw/LXXdE0N7ACVVeJtccwuQ=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ openssl ];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
|
|
doInstallCheck = 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${finalAttrs.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
|
|
# or
|
|
mit
|
|
];
|
|
maintainers = with lib.maintainers; [ jk ];
|
|
};
|
|
})
|