9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
29 lines
606 B
Nix
29 lines
606 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "vtm";
|
|
version = "0.9.9r";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "netxs-group";
|
|
repo = "vtm";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-HVhRzJReIxO4R9ZhI8vPcV29TRVffT/Eq6Z4u1xMpQo=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [ "../src" ];
|
|
|
|
meta = with lib; {
|
|
description = "Terminal multiplexer with window manager and session sharing";
|
|
homepage = "https://vtm.netxs.online/";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ ahuzik ];
|
|
};
|
|
}
|