aminal: remove (#139747)
* aminal: remove aminal was renamed to darktile, which was newly added by #136326. there's no backwards-compatible executable link, so throw with that info. * Update pkgs/top-level/aliases.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
e3b5143614
commit
2cbdd8d886
3 changed files with 1 additions and 73 deletions
|
@ -1,69 +0,0 @@
|
|||
{ 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";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -50,6 +50,7 @@ mapAliases ({
|
|||
alsaTools = alsa-tools; # added 2021-06-10
|
||||
alsaUtils = alsa-utils; # added 2021-06-10
|
||||
amazon-glacier-cmd-interface = throw "amazon-glacier-cmd-interface has been removed due to it being unmaintained."; # added 2020-10-30
|
||||
aminal = throw "aminal was renamed to darktile."; # added 2021-09-28
|
||||
ammonite-repl = ammonite; # added 2017-05-02
|
||||
amsn = throw "amsn has been removed due to being unmaintained."; # added 2020-12-09
|
||||
antimicro = throw "antimicro has been removed as it was broken, see antimicroX instead."; # added 2020-08-06
|
||||
|
|
|
@ -970,10 +970,6 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) AppKit CoreGraphics CoreServices CoreText Foundation OpenGL;
|
||||
};
|
||||
|
||||
aminal = callPackage ../applications/terminal-emulators/aminal {
|
||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa Kernel;
|
||||
};
|
||||
|
||||
archi = callPackage ../tools/misc/archi { };
|
||||
|
||||
contour = libsForQt5.callPackage ../applications/terminal-emulators/contour { };
|
||||
|
|
Loading…
Reference in a new issue