about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorpennae <82953136+pennae@users.noreply.github.com>2021-09-28 13:17:09 +0000
committerGitHub <noreply@github.com>2021-09-28 15:17:09 +0200
commit2cbdd8d88670e8cba97d4b07e7af1b581c19162c (patch)
tree21a49995a4eb8a22e618fba55f5f56123296ee4a /pkgs/applications/terminal-emulators
parente3b5143614b6242b65f09b71850e1807126e2f33 (diff)
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>
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/aminal/default.nix69
1 files changed, 0 insertions, 69 deletions
diff --git a/pkgs/applications/terminal-emulators/aminal/default.nix b/pkgs/applications/terminal-emulators/aminal/default.nix
deleted file mode 100644
index 70d0d083dcf3c..0000000000000
--- a/pkgs/applications/terminal-emulators/aminal/default.nix
+++ /dev/null
@@ -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;
-  };
-}