b236e970ef
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
29 lines
606 B
Nix
29 lines
606 B
Nix
{ 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 ];
|
|
};
|
|
}
|