summary refs log tree commit diff
path: root/pkgs/tools/misc/a4term/default.nix
blob: 689caa396981bf578156ca2c933a50bb0307d2a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, stdenv
, fetchFromGitHub
, libtickit
, libvterm-neovim
}:

stdenv.mkDerivation rec {
  pname = "a4term";
  version = "0.2.3";

  src = fetchFromGitHub {
    owner = "rpmohn";
    repo = "a4";
    rev = "v${version}";
    hash = "sha256-AX5psz9+bLdFFeDR55TIrAWDAkhDygw6289OgIfOJTg=";
  };

  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";
  };
}