tmux: 3.2a > 3.3, add me as maintainer
This commit is contained in:
parent
a9ce8f1ef2
commit
7cf77a91dd
1 changed files with 24 additions and 32 deletions
|
@ -1,11 +1,12 @@
|
||||||
{ lib, stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
, pkg-config
|
|
||||||
, bison
|
, bison
|
||||||
, ncurses
|
|
||||||
, libevent
|
, libevent
|
||||||
|
, ncurses
|
||||||
|
, pkg-config
|
||||||
|
, systemd
|
||||||
, utf8proc
|
, utf8proc
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -22,7 +23,7 @@ in
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tmux";
|
pname = "tmux";
|
||||||
version = "3.2a";
|
version = "3.3";
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
|
@ -30,17 +31,9 @@ stdenv.mkDerivation rec {
|
||||||
owner = "tmux";
|
owner = "tmux";
|
||||||
repo = "tmux";
|
repo = "tmux";
|
||||||
rev = version;
|
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 = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
|
@ -50,12 +43,14 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
ncurses
|
ncurses
|
||||||
libevent
|
libevent
|
||||||
] ++ lib.optionals stdenv.isDarwin [ utf8proc ];
|
] ++ lib.optionals stdenv.isLinux [ systemd ]
|
||||||
|
++ lib.optionals stdenv.isDarwin [ utf8proc ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--sysconfdir=/etc"
|
"--sysconfdir=/etc"
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
] ++ lib.optionals stdenv.isDarwin [ "--enable-utf8proc" ];
|
] ++ lib.optionals stdenv.isLinux [ "--enable-systemd" ]
|
||||||
|
++ lib.optionals stdenv.isDarwin [ "--enable-utf8proc" ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
@ -67,24 +62,21 @@ stdenv.mkDerivation rec {
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://tmux.github.io/";
|
homepage = "https://tmux.github.io/";
|
||||||
description = "Terminal multiplexer";
|
description = "Terminal multiplexer";
|
||||||
|
longDescription = ''
|
||||||
longDescription =
|
tmux is intended to be a modern, BSD-licensed alternative to programs such as GNU screen. Major features include:
|
||||||
'' 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.
|
||||||
* A powerful, consistent, well-documented and easily scriptable command interface.
|
* Panes can be freely moved and resized, or arranged into preset layouts.
|
||||||
* A window may be split horizontally and vertically into panes.
|
* Support for UTF-8 and 256-colour terminals.
|
||||||
* Panes can be freely moved and resized, or arranged into preset layouts.
|
* Copy and paste with multiple buffers.
|
||||||
* Support for UTF-8 and 256-colour terminals.
|
* Interactive menus to select windows, sessions or clients.
|
||||||
* Copy and paste with multiple buffers.
|
* Change the current window by searching for text in the target.
|
||||||
* Interactive menus to select windows, sessions or clients.
|
* Terminal locking, manually or after a timeout.
|
||||||
* Change the current window by searching for text in the target.
|
* A clean, easily extended, BSD-licensed codebase, under active development.
|
||||||
* Terminal locking, manually or after a timeout.
|
'';
|
||||||
* A clean, easily extended, BSD-licensed codebase, under active development.
|
|
||||||
'';
|
|
||||||
changelog = "https://github.com/tmux/tmux/raw/${version}/CHANGES";
|
changelog = "https://github.com/tmux/tmux/raw/${version}/CHANGES";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
|
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
maintainers = with lib.maintainers; [ thammers fpletz ];
|
maintainers = with lib.maintainers; [ thammers fpletz SuperSandro2000 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue