vtm: 0.9.8v -> 0.9.9h

Diff: https://github.com/netxs-group/vtm/compare/v0.9.8v...v0.9.9h
This commit is contained in:
Sandro Jäckel 2023-05-04 23:30:22 +02:00
parent e339915fa7
commit f5b3d8ac1d
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -6,26 +6,24 @@
stdenv.mkDerivation rec {
pname = "vtm";
version = "0.9.8v";
version = "0.9.9h";
src = fetchFromGitHub {
owner = "netxs-group";
repo = "vtm";
rev = "v${version}";
sha256 = "sha256-7ECYbw51MXhYsbQxnuS4QUr5HN0cIUqgMx7V7D/kYTg=";
sha256 = "sha256-6JyOoEJoJ/y6pXfhQV4nei2NAOCClScFDscwqNPKZu8=";
};
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "../src" ];
meta = {
homepage = "https://vtm.netxs.online/";
meta = with lib; {
description = "Terminal multiplexer with window manager and session sharing";
license = lib.licenses.mit;
platforms = lib.platforms.all;
maintainers = with lib.maintainers; [ ahuzik ];
# never built on aarch64-linux since first introduction in nixpkgs
broken = stdenv.isLinux && stdenv.isAarch64;
homepage = "https://vtm.netxs.online/";
license = licenses.mit;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ ahuzik ];
};
}