rust-rpxy: init at 0.10.4 (#495387)

This commit is contained in:
Jo
2026-03-04 20:42:30 +00:00
committed by GitHub
2 changed files with 39 additions and 0 deletions
+6
View File
@@ -13134,6 +13134,12 @@
githubId = 752510;
name = "Martin Potier";
};
jpteb = {
name = "Jan Philipp Tebernum";
github = "jpteb";
githubId = 13502853;
email = "jpteb@pm.me";
};
jpts = {
email = "james+nixpkgs@cleverley-prance.uk";
github = "jpts";
+33
View File
@@ -0,0 +1,33 @@
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rust-rpxy";
version = "0.10.4";
src = fetchFromGitHub {
owner = "junkurihara";
repo = "rust-rpxy";
tag = finalAttrs.version;
hash = "sha256-KGg+OtQj1PIp/zbViPTyAUvm6bRzWB1l6ktpDEOIDYM=";
fetchSubmodules = true;
};
cargoHash = "sha256-Fe/64ytHYBf1/VvWVGWrXiqHwAcoUh76zgHJ8FbTbzE=";
meta = {
description = "Http reverse proxy serving multiple domain names and terminating TLS for http/1.1, 2 and 3, written in Rust";
homepage = "https://github.com/junkurihara/rust-rpxy";
changelog = "https://github.com/junkurihara/rust-rpxy/releases/tag/${finalAttrs.version}";
license = with lib.licenses; [
mit
];
maintainers = with lib.maintainers; [
jpteb
];
mainProgram = "rpxy";
platforms = lib.platforms.all;
};
})