mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 17:53:37 +00:00
35 lines
656 B
Nix
35 lines
656 B
Nix
{ 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";
|
|
};
|
|
}
|