mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
vtm: init at 0.6.0 (#161464)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
bbb5741eb7
commit
b236e970ef
28
pkgs/tools/misc/vtm/default.nix
Normal file
28
pkgs/tools/misc/vtm/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -10849,6 +10849,8 @@ with pkgs;
|
||||
SDL = SDL_sixel;
|
||||
};
|
||||
|
||||
vtm = callPackage ../tools/misc/vtm { };
|
||||
|
||||
witness = callPackage ../tools/security/witness { };
|
||||
|
||||
openconnect = openconnect_gnutls;
|
||||
|
Loading…
Reference in New Issue
Block a user