nixpkgs/pkgs/servers/gemini/agate/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.7 KiB
Nix
Raw Normal View History

2022-03-01 15:18:09 +01:00
{ lib, stdenv, nixosTests, fetchFromGitHub, fetchpatch, rustPlatform, libiconv, Security }:
2021-02-03 19:38:46 +01:00
rustPlatform.buildRustPackage rec {
pname = "agate";
2022-03-01 15:18:09 +01:00
version = "3.2.3";
2021-02-03 19:38:46 +01:00
src = fetchFromGitHub {
owner = "mbrubeck";
repo = pname;
rev = "v${version}";
2022-03-01 15:18:09 +01:00
sha256 = "sha256-nkWk/0TIAHcYQjxbg0HnT+4S4Cinl22WfqHb9U6u5eI=";
2021-02-03 19:38:46 +01:00
};
2022-03-01 15:18:09 +01:00
cargoSha256 = "sha256-aF86QpizJ+lMNmN9DQKA9o1QZWZObyQ3v3+HmT/s02g=";
2021-02-03 19:38:46 +01:00
2022-03-01 15:18:09 +01:00
patches = [
# https://github.com/mbrubeck/agate/pull/143
(fetchpatch {
name = "fix-port-collision.patch";
url = "https://github.com/mbrubeck/agate/commit/2f5d7878ec9d0dd51762c4c7680fc9f825d8ecd5.patch";
sha256 = "sha256-NEFmfb0y97O2W96YggD+MgcN7tlFEi9T4FNzLCND77s=";
})
];
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-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
'';
2022-02-07 17:03:58 +01:00
passthru.tests = { inherit (nixosTests) agate; };
2021-02-03 19:38:46 +01:00
meta = with lib; {
2021-12-03 20:09:11 +01:00
homepage = "https://github.com/mbrubeck/agate";
changelog = "https://github.com/mbrubeck/agate/blob/master/CHANGELOG.md";
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.
'';
license = with licenses; [ asl20 /* or */ mit ];
2021-02-03 19:38:46 +01:00
maintainers = with maintainers; [ jk ];
};
}