revpfw3: init at 0.4.0 (#340204)

This commit is contained in:
Aleksana 2024-09-09 10:28:49 +08:00 committed by GitHub
commit 33786efa7e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 32 additions and 0 deletions

View File

@ -21404,6 +21404,13 @@
githubId = 563054;
name = "Thomas Tuegel";
};
tudbut = {
name = "Daniella Hennig";
email = "nixpkgs@mail.tudbut.de";
matrix = "@tudbut:matrix.tudbut.de";
github = "tudbut";
githubId = 48156391;
};
tu-maurice = {
email = "valentin.gehrke+nixpkgs@zom.bi";
github = "tu-maurice";

View File

@ -0,0 +1,25 @@
{
lib,
fetchgit,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "revpfw3";
version = "0.4.0";
src = fetchgit {
url = "https://git.tudbut.de/tudbut/revpfw3";
rev = "v${version}";
hash = "sha256-v8BtgQYdELui5Yu8kpE5f97MSo/WhNah+e1xXhZGJwM=";
};
cargoHash = "sha256-0AVp6fQq/NCkvKcK5ALbFNxNkt0NgbOmGlmDBGxwONQ=";
meta = {
description = "Reverse proxy to bypass the need for port forwarding";
homepage = "https://git.tudbut.de/tudbut/revpfw3";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tudbut ];
mainProgram = "revpfw3";
};
}