acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / re / revpfw3 / package.nix
blob6858f84354b2971f1540dd741e82be61091431b8
2   lib,
3   fetchgit,
4   rustPlatform,
5   nix-update-script,
6 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "revpfw3";
9   version = "0.4.2";
11   passthru.updateScript = nix-update-script { };
13   src = fetchgit {
14     url = "https://git.tudbut.de/tudbut/revpfw3";
15     rev = "v${version}";
16     hash = "sha256-v8BtgQYdELui5Yu8kpE5f97MSo/WhNah+e1xXhZGJwM=";
17   };
19   cargoHash = "sha256-MmVN4NmwSZiWYh7uMAQ+OogJT1kRLoB2q6gVfoaer54=";
21   meta = {
22     description = "Reverse proxy to bypass the need for port forwarding";
23     homepage = "https://git.tudbut.de/tudbut/revpfw3";
24     license = lib.licenses.mit;
25     maintainers = with lib.maintainers; [ tudbut ];
26     mainProgram = "revpfw3";
27   };