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:
parent
e339915fa7
commit
f5b3d8ac1d
1 changed files with 7 additions and 9 deletions
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue