tlsclient: init at 1.5

This commit is contained in:
Jacob Moody 2023-07-01 13:24:17 -05:00
parent c3e258d519
commit 17b5dc8705
2 changed files with 42 additions and 0 deletions

View File

@ -0,0 +1,40 @@
{ lib
, stdenv
, fetchFromSourcehut
, pkg-config
, openssl
, installShellFiles
}:
stdenv.mkDerivation rec {
pname = "tlsclient";
version = "1.5";
src = fetchFromSourcehut {
owner = "~moody";
repo = "tlsclient";
rev = "v${version}";
hash = "sha256-9LKx9x5Kx7Mo4EL/b89Mdsdu8NqVYxohn98XnF+IWXs=";
};
strictDeps = true;
enableParallelBuilding = true;
nativeBuildInputs = [ pkg-config installShellFiles ];
buildInputs = [ openssl ];
makeFlags = [ "tlsclient" ];
installPhase = ''
install -Dm755 -t $out/bin tlsclient
installManPage tlsclient.1
'';
meta = with lib; {
description = "tlsclient command line utility";
longDescription = "unix port of 9front's tlsclient(1) and rcpu(1)";
homepage = "https://git.sr.ht/~moody/tlsclient";
license = licenses.mit;
maintainers = with maintainers; [ moody ];
mainProgram = "tlsclient";
platforms = platforms.all;
};
}

View File

@ -13345,6 +13345,8 @@ with pkgs;
tldr-hs = haskellPackages.tldr;
tlsclient = callPackage ../tools/admin/tlsclient { };
tlsx = callPackage ../tools/security/tlsx { };
tmate = callPackage ../tools/misc/tmate { };