mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
_9ptls: init at 1.6.4
This commit is contained in:
parent
7d518f6e37
commit
af484128b9
28
pkgs/os-specific/linux/9ptls/default.nix
Normal file
28
pkgs/os-specific/linux/9ptls/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user