Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
608 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
stdenv,
fetchFromGitHub,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "vtm";
version = "0.9.99.61";
src = fetchFromGitHub {
owner = "netxs-group";
repo = "vtm";
rev = "v${finalAttrs.version}";
hash = "sha256-IlJbJw2c2Zgl+W5Jh01Iga8duiLgl/GurT620IhPh68=";
};
nativeBuildInputs = [
cmake
];
meta = {
description = "Terminal multiplexer with window manager and session sharing";
homepage = "https://vtm.netxs.online/";
license = lib.licenses.mit;
mainProgram = "vtm";
maintainers = [ ];
platforms = lib.platforms.all;
};
})