tmux: 3.2a > 3.3, add me as maintainer

This commit is contained in:
Sandro Jäckel 2022-06-01 14:59:49 +02:00
parent a9ce8f1ef2
commit 7cf77a91dd
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -1,11 +1,12 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, pkg-config
, bison
, ncurses
, libevent
, ncurses
, pkg-config
, systemd
, utf8proc
}:
@ -22,7 +23,7 @@ in
stdenv.mkDerivation rec {
pname = "tmux";
version = "3.2a";
version = "3.3";
outputs = [ "out" "man" ];
@ -30,17 +31,9 @@ stdenv.mkDerivation rec {
owner = "tmux";
repo = "tmux";
rev = version;
sha256 = "0143ylfk7zsl3xmiasb768238gr582cfhsgv3p0h0f13bp8d6q09";
sha256 = "sha256-Sxj2vXkbbPNRrqJKeIYwI7xdBtwRbl6a6a3yZr7UWW0=";
};
patches = [
# See https://github.com/tmux/tmux/pull/2755
(fetchpatch {
url = "https://github.com/tmux/tmux/commit/d0a2683120ec5a33163a14b0e1b39d208745968f.patch";
sha256 = "070knpncxfxi6k4q64jwi14ns5vm3606cf402h1c11cwnaa84n1g";
})
];
nativeBuildInputs = [
pkg-config
autoreconfHook
@ -50,12 +43,14 @@ stdenv.mkDerivation rec {
buildInputs = [
ncurses
libevent
] ++ lib.optionals stdenv.isDarwin [ utf8proc ];
] ++ lib.optionals stdenv.isLinux [ systemd ]
++ lib.optionals stdenv.isDarwin [ utf8proc ];
configureFlags = [
"--sysconfdir=/etc"
"--localstatedir=/var"
] ++ lib.optionals stdenv.isDarwin [ "--enable-utf8proc" ];
] ++ lib.optionals stdenv.isLinux [ "--enable-systemd" ]
++ lib.optionals stdenv.isDarwin [ "--enable-utf8proc" ];
enableParallelBuilding = true;
@ -67,10 +62,8 @@ stdenv.mkDerivation rec {
meta = {
homepage = "https://tmux.github.io/";
description = "Terminal multiplexer";
longDescription =
'' tmux is intended to be a modern, BSD-licensed alternative to programs such as GNU screen. Major features include:
longDescription = ''
tmux is intended to be a modern, BSD-licensed alternative to programs such as GNU screen. Major features include:
* A powerful, consistent, well-documented and easily scriptable command interface.
* A window may be split horizontally and vertically into panes.
* Panes can be freely moved and resized, or arranged into preset layouts.
@ -83,8 +76,7 @@ stdenv.mkDerivation rec {
'';
changelog = "https://github.com/tmux/tmux/raw/${version}/CHANGES";
license = lib.licenses.bsd3;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ thammers fpletz ];
maintainers = with lib.maintainers; [ thammers fpletz SuperSandro2000 ];
};
}