diff options
| author | rnhmjoj <rnhmjoj@inventati.org> | 2023-06-08 16:36:24 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2023-06-08 22:30:37 +0000 |
| commit | 8a70f028ded858752165bec9a988a7c7a4cc4c51 (patch) | |
| tree | e81c65be46a13a224a1a50b56c7c8c3b83cd0f73 | |
| parent | Merge pull request #236661 from NixOS/backport-236392-to-release-23.05 (diff) | |
| download | nixpkgs-origin/backport-236673-to-release-23.05.tar.gz | |
rxvt-unicode: 9.30 -> 9.31origin/backport-236673-to-release-23.05
(cherry picked from commit c05f72e9babe0cdd4eaea15e1f42ca6afa8b5996)
| -rw-r--r-- | pkgs/applications/terminal-emulators/rxvt-unicode/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix b/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix index ede0638e7a04..47cd84d94825 100644 --- a/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix +++ b/pkgs/applications/terminal-emulators/rxvt-unicode/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, fetchpatch, makeDesktopItem -, libX11, libXt, libXft, libXrender +, libX11, libXt, libXft, libXrender, libXext , ncurses, fontconfig, freetype , pkg-config, gdk-pixbuf, perl , libptytty @@ -12,7 +12,7 @@ let pname = "rxvt-unicode"; - version = "9.30"; + version = "9.31"; description = "A clone of the well-known terminal emulator rxvt"; desktopItem = makeDesktopItem { @@ -41,7 +41,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://dist.schmorp.de/rxvt-unicode/Attic/rxvt-unicode-${version}.tar.bz2"; - sha256 = "0badnkjsn3zps24r5iggj8k5v4f00npc77wqg92pcn1q5z8r677y"; + sha256 = "qqE/y8FJ/g8/OR+TMnlYD3Spb9MS1u0GuP8DwtRmcug="; }; nativeBuildInputs = [ pkg-config ]; @@ -49,7 +49,7 @@ stdenv.mkDerivation { [ libX11 libXt libXft ncurses # required to build the terminfo file fontconfig freetype libXrender libptytty - ] ++ optional perlSupport perl + ] ++ optionals perlSupport [ perl libXext ] ++ optional gdkPixbufSupport gdk-pixbuf; outputs = [ "out" "terminfo" ]; |
