vtm: init at 0.6.0 (#161464)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Alesya Huzik 2022-03-04 22:26:55 +11:00 committed by GitHub
parent bbb5741eb7
commit b236e970ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "vtm";
version = "0.6.0";
src = fetchFromGitHub {
owner = "netxs-group";
repo = "vtm";
rev = "v${version}";
sha256 = "sha256-Z6PSx7TwarQx0Mc3fSRPwV7yIPJK3xtW4k0LJ6RPYRY=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "../src" ];
meta = {
homepage = "https://vtm.netxs.online/";
description = "Terminal multiplexer with window manager and session sharing";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ahuzik ];
};
}

View File

@ -10849,6 +10849,8 @@ with pkgs;
SDL = SDL_sixel;
};
vtm = callPackage ../tools/misc/vtm { };
witness = callPackage ../tools/security/witness { };
openconnect = openconnect_gnutls;