restls: init at 0.1.1

This commit is contained in:
oluceps 2024-03-12 15:08:25 +08:00
parent 6074e65d28
commit 503f9242bd
No known key found for this signature in database
1 changed files with 26 additions and 0 deletions

View File

@ -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 ];
};
}