a4term: init at 0.2.2

This commit is contained in:
Gustavo Coutinho de Souza
2023-07-26 08:01:24 -03:00
committed by Anderson Torres
parent c9cf0708f0
commit c66a3bd157
2 changed files with 36 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
{ lib
, stdenv
, fetchFromGitHub
, libtickit
, libvterm-neovim
}:
stdenv.mkDerivation rec {
pname = "a4term";
version = "0.2.2";
src = fetchFromGitHub {
owner = "rpmohn";
repo = "a4";
rev = "v${version}";
hash = "sha256-hsAEiPOZBqjvmSZEmZwfDqHZV/8ym62RZPxl3DG4ntQ=";
};
buildInputs = [
libtickit
libvterm-neovim
];
makeFlags = [ "PREFIX=$(out)" ];
meta = {
description = "A dynamic terminal window manager";
homepage = "https://www.a4term.com/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onemoresuza ];
platforms = lib.platforms.linux;
mainProgram = "a4";
};
}
+2
View File
@@ -7391,6 +7391,8 @@ with pkgs;
dvtm-unstable = callPackage ../tools/misc/dvtm/unstable.nix { };
a4term = callPackage ../tools/misc/a4term { };
ecmtools = callPackage ../tools/cd-dvd/ecm-tools { };
erofs-utils = callPackage ../tools/filesystems/erofs-utils { };