Skip to content

Commit

Permalink
restls: init at 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oluceps committed Mar 13, 2024
1 parent 6074e65 commit 503f924
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/by-name/re/restls/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ fetchFromGitHub
, rustPlatform
, lib
}:

rustPlatform.buildRustPackage rec{
pname = "restls";
version = "0.1.1";

src = fetchFromGitHub {
owner = "3andne";
repo = "restls";
rev = "v${version}";
hash = "sha256-nlQdBwxHVbpOmb9Wq+ap2i4KI1zJYT3SEqvedDbVH8Q=";
};

cargoHash = "sha256-KtNLLtStZ7SNndcPxWfNPA2duoXFVePrbNQFPUz2xFg=";

meta = with lib; {
homepage = "https://github.com/3andne/restls";
description = "A Perfect Impersonation of TLS";
license = licenses.bsd3;
mainProgram = "restls";
maintainers = with maintainers; [ oluceps ];
};
}

0 comments on commit 503f924

Please sign in to comment.