rxvt-unicode: 9.30 -> 9.31

This commit is contained in:
rnhmjoj 2023-06-08 16:36:24 +02:00
parent c651ca23fd
commit c05f72e9ba
No known key found for this signature in database
GPG Key ID: BFBAF4C975F76450

View File

@ -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" ];