summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2023-01-08 11:49:30 +0000
committerGitHub <noreply@github.com>2023-01-08 11:49:30 +0000
commit6c73595e66ddea69fd40d867d962fa5e9ed06ada (patch)
tree46da991b47079372c5a0eec4965383766d3cd557
parent8661785f1e9ca8180706b535d1e5aee51a360c1f (diff)
parent7970ff70048575bcd7840bfb5eac2780b9ab3d98 (diff)
Merge pull request #209142 from wegank/vte-290-drop
vte_290: drop
-rw-r--r--pkgs/development/libraries/vte/2.90.nix38
-rw-r--r--pkgs/top-level/aliases.nix1
-rw-r--r--pkgs/top-level/all-packages.nix2
3 files changed, 1 insertions, 40 deletions
diff --git a/pkgs/development/libraries/vte/2.90.nix b/pkgs/development/libraries/vte/2.90.nix
deleted file mode 100644
index 59f1a2cd673a..000000000000
--- a/pkgs/development/libraries/vte/2.90.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ lib, stdenv, fetchurl, intltool, pkg-config, glib, gtk3, ncurses, gobject-introspection }:
-
-stdenv.mkDerivation rec {
- pname = "vte";
- version = "0.36.3";
-
- src = fetchurl {
- url = "mirror://gnome/sources/vte/${lib.versions.majorMinor version}/vte-${version}.tar.xz";
- sha256 = "54e5b07be3c0f7b158302f54ee79d4de1cb002f4259b6642b79b1e0e314a959c";
- };
-
- nativeBuildInputs = [ pkg-config intltool ];
- buildInputs = [ gobject-introspection glib gtk3 ncurses ];
-
- configureFlags = [ "--enable-introspection" ];
-
- enableParallelBuilding = true;
-
- postInstall = ''
- substituteInPlace $out/lib/libvte2_90.la --replace "-lncurses" "-L${ncurses.out}/lib -lncurses"
- '';
-
- meta = with lib; {
- homepage = "https://www.gnome.org/";
- description = "A library implementing a terminal emulator widget for GTK";
- longDescription = ''
- VTE is a library (libvte) implementing a terminal emulator widget for
- GTK, and a minimal sample application (vte) using that. Vte is
- mainly used in gnome-terminal, but can also be used to embed a
- console/terminal in games, editors, IDEs, etc. VTE supports Unicode and
- character set conversion, as well as emulating any terminal known to
- the system's terminfo database.
- '';
- license = licenses.lgpl2;
- maintainers = with maintainers; [ astsmtl antono ];
- platforms = platforms.linux;
- };
-}
diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix
index 906dddcd9eb3..cfc7f37b3f77 100644
--- a/pkgs/top-level/aliases.nix
+++ b/pkgs/top-level/aliases.nix
@@ -1588,6 +1588,7 @@ mapAliases ({
vkBasalt = vkbasalt; # Added 2022-11-22
vnc2flv = throw "vnc2flv has been removed: abandoned by upstream"; # Added 2022-03-21
vorbisTools = throw "'vorbisTools' has been renamed to/replaced by 'vorbis-tools'"; # Converted to throw 2022-02-22
+ vte_290 = throw "'vte_290' has been renamed to/replaced by 'vte'"; # Added 2023-01-05
vtun = throw "vtune has been removed as it's unmaintained upstream"; # Added 2021-10-29
inherit (libsForQt5.mauiPackages) vvave; # added 2022-05-17
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1d2827699754..7fcff90c252f 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -23224,8 +23224,6 @@ with pkgs;
gtkVersion = "4";
};
- vte_290 = callPackage ../development/libraries/vte/2.90.nix { };
-
vtk_8 = libsForQt5.callPackage ../development/libraries/vtk/8.x.nix {
stdenv = gcc9Stdenv;
inherit (darwin) libobjc;