2bb3a9da24
This is a mostly cosmetical commit, in the sense it doesn't change the contents of any package, but reorganizes the overall Nixpkgs expressions. Terminal emulators are an ubiquitous tool for any Unix user; even the beginners are routinely familiarized to it. And, manifestly, there are many implementations of terminal emulators out there, from those traditionally made in C and C++ to those written in Haskell and Go. Terminal emulators deserve more highlight. This commit does that by creating a category for them.
70 lines
1.7 KiB
Nix
70 lines
1.7 KiB
Nix
{ buildGoPackage
|
|
, Carbon
|
|
, Cocoa
|
|
, Kernel
|
|
, fetchFromGitHub
|
|
, lib
|
|
, mesa_glu
|
|
, stdenv
|
|
, xorg
|
|
}:
|
|
|
|
buildGoPackage rec {
|
|
pname = "aminal";
|
|
version = "0.9.0";
|
|
|
|
goPackagePath = "github.com/liamg/aminal";
|
|
|
|
buildInputs =
|
|
lib.optionals stdenv.isLinux [
|
|
mesa_glu
|
|
xorg.libX11
|
|
xorg.libXcursor
|
|
xorg.libXi
|
|
xorg.libXinerama
|
|
xorg.libXrandr
|
|
xorg.libXxf86vm
|
|
] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa Kernel ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "liamg";
|
|
repo = "aminal";
|
|
rev = "v${version}";
|
|
sha256 = "0syv9md7blnl6i19zf8s1xjx5vfz6s755fxyg2ply0qc1pwhsj8n";
|
|
};
|
|
|
|
preBuild = ''
|
|
buildFlagsArray=("-ldflags=-X ${goPackagePath}/version.Version=${version}")
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Golang terminal emulator from scratch";
|
|
longDescription = ''
|
|
Aminal is a modern terminal emulator for Mac/Linux implemented in Golang
|
|
and utilising OpenGL.
|
|
|
|
The project is experimental at the moment, so you probably won't want to
|
|
rely on Aminal as your main terminal for a while.
|
|
|
|
Features:
|
|
- Unicode support
|
|
- OpenGL rendering
|
|
- Customisation options
|
|
- True colour support
|
|
- Support for common ANSI escape sequences a la xterm
|
|
- Scrollback buffer
|
|
- Clipboard access
|
|
- Clickable URLs
|
|
- Multi platform support (Windows coming soon...)
|
|
- Sixel support
|
|
- Hints/overlays
|
|
- Built-in patched fonts for powerline
|
|
- Retina display support
|
|
'';
|
|
homepage = "https://github.com/liamg/aminal";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ kalbasit ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|