Skip to content

Commit

Permalink
bore-cli: init at 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DieracDelta authored and happysalada committed Apr 14, 2022
1 parent ae6932e commit 569f8c8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/networking/bore-cli/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{ lib, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
pname = "bore-cli";
version = "0.2.1";

src = fetchFromGitHub {
owner = "ekzhang";
repo = "bore";
rev = "v${version}";
sha256 = "sha256-k1QpNpN6MVt7+PIDFcJtd7yD1ZpBJ9GFBBagVArRifs=";
};

cargoSha256 = "sha256-fNsMNU4npChqyIeonMSc6AjcBxVYVJhiG++HkQ3FM9M=";

# tests do not find grcov path correctly
meta = with lib; {
description = "Rust tool to create TCP tunnels";
homepage = "https://github.com/ekzhang/bore";
license = licenses.mit;
maintainers = with maintainers; [ DieracDelta ];
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14653,6 +14653,7 @@ with pkgs;
libodb = callPackage ../development/libraries/libodb { };
libodb-sqlite = callPackage ../development/libraries/libodb-sqlite { };
bdep = callPackage ../development/tools/build-managers/build2/bdep.nix { };
bore-cli = callPackage ../tools/networking/bore-cli/default.nix {};
bpkg = callPackage ../development/tools/build-managers/build2/bpkg.nix { };

buildkite-agent = callPackage ../development/tools/continuous-integration/buildkite-agent { };
Expand Down

0 comments on commit 569f8c8

Please sign in to comment.