about summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2022-01-24 21:42:53 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2022-01-24 21:46:44 +0100
commit7fc56a03f0f093b047b55fed3461b0117d8e63e6 (patch)
treef573ed4c4730711e9c9739d28431abbc00ef410e /pkgs/applications/terminal-emulators
parent1ac83b0de5e29558be07c36b8c675b03f1650b30 (diff)
downloadnixlib-7fc56a03f0f093b047b55fed3461b0117d8e63e6.tar
nixlib-7fc56a03f0f093b047b55fed3461b0117d8e63e6.tar.gz
nixlib-7fc56a03f0f093b047b55fed3461b0117d8e63e6.tar.bz2
nixlib-7fc56a03f0f093b047b55fed3461b0117d8e63e6.tar.lz
nixlib-7fc56a03f0f093b047b55fed3461b0117d8e63e6.tar.xz
nixlib-7fc56a03f0f093b047b55fed3461b0117d8e63e6.tar.zst
nixlib-7fc56a03f0f093b047b55fed3461b0117d8e63e6.zip
rxvt-unicode: 9.26 -> 9.30
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/rxvt-unicode/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix
index 2c130bf02d3e..70ff4a4555d7 100644
--- a/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix
+++ b/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix
@@ -2,6 +2,7 @@
 , libX11, libXt, libXft, libXrender
 , ncurses, fontconfig, freetype
 , pkg-config, gdk-pixbuf, perl
+, libptytty
 , perlSupport      ? true
 , gdkPixbufSupport ? true
 , unicode3Support  ? true
@@ -9,7 +10,7 @@
 
 let
   pname = "rxvt-unicode";
-  version = "9.26";
+  version = "9.30";
   description = "A clone of the well-known terminal emulator rxvt";
 
   desktopItem = makeDesktopItem {
@@ -31,12 +32,13 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${version}.tar.bz2";
-    sha256 = "12y9p32q0v7n7rhjla0j2g9d5rj2dmwk20c9yhlssaaxlawiccb4";
+    sha256 = "0badnkjsn3zps24r5iggj8k5v4f00npc77wqg92pcn1q5z8r677y";
   };
 
   buildInputs =
     [ libX11 libXt libXft ncurses  # required to build the terminfo file
       fontconfig freetype pkg-config libXrender
+      libptytty
     ] ++ optional perlSupport perl
       ++ optional gdkPixbufSupport gdk-pixbuf;