_9ptls: init at 1.6.4

This commit is contained in:
Jacob Moody 2023-07-20 20:51:42 -05:00
parent 7d518f6e37
commit af484128b9
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, stdenv
, tlsclient
}:
stdenv.mkDerivation (finalAttrs: {
inherit (tlsclient) src version enableParallelBuilding;
pname = "9ptls";
strictDeps = true;
buildFlags = [ "mount.9ptls" ];
installFlags = [ "PREFIX=$(out)" "SBIN=$(out)/bin" ];
installTargets = "mount.9ptls.install";
meta = with lib; {
description = "mount.9ptls mount helper";
longDescription = ''
mount.9ptls wraps the v9fs mount type in a dp9ik authenticated
tls tunnel using tlsclient.
'';
homepage = "https://git.sr.ht/~moody/tlsclient";
license = licenses.mit;
maintainers = with maintainers; [ moody ];
mainProgram = "mount.9ptls";
platforms = platforms.linux;
};
})

View File

@ -1385,6 +1385,8 @@ with pkgs;
_9pfs = callPackage ../tools/filesystems/9pfs { };
_9ptls = callPackage ../os-specific/linux/9ptls { };
aaa = callPackage ../tools/misc/aaa { };
aardvark-dns = callPackage ../tools/networking/aardvark-dns { };