[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: tmux: Build from git.
From: |
guix-commits |
Subject: |
07/07: gnu: tmux: Build from git. |
Date: |
Fri, 27 Sep 2024 08:16:24 -0400 (EDT) |
z572 pushed a commit to branch master
in repository guix.
commit 13b2b983ee2189493dc4f86670c1c13daa0c6bc6
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Fri Sep 27 19:19:25 2024 +0800
gnu: tmux: Build from git.
* gnu/packages/tmux.scm (tmux)[source]: Switch to git-fetch, and use
git-file-name.
[native-inputs]: Add autoconf, automake and pkg-config.
Change-Id: If56abbb76f3b00193bbd27c236a9f82c4f0eb3cb
---
gnu/packages/tmux.scm | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm
index 894dc5b509..7538170b60 100644
--- a/gnu/packages/tmux.scm
+++ b/gnu/packages/tmux.scm
@@ -10,6 +10,7 @@
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
+;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -36,12 +37,14 @@
#:use-module (guix build-system trivial)
#:use-module (guix build-system python)
#:use-module (gnu packages)
+ #:use-module (gnu packages autotools)
#:use-module (gnu packages bash)
#:use-module (gnu packages bison)
#:use-module (gnu packages check)
#:use-module (gnu packages linux)
#:use-module (gnu packages libevent)
#:use-module (gnu packages ncurses)
+ #:use-module (gnu packages pkg-config)
#:use-module (gnu packages sphinx))
(define-public tmux
@@ -49,18 +52,19 @@
(name "tmux")
(version "3.5")
(source (origin
- (method url-fetch)
- (uri (string-append
- "https://github.com/tmux/tmux/releases/download/"
- version "/tmux-" version ".tar.gz"))
- (sha256
- (base32
- "03wmh5q3sd87njjdnqadi8jvq1icha1wiwi29993zng7wx11kq1g"))))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/tmux/tmux")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1bdah5b8fbxwba3z7i46yx5vcvhwmn7yvdh3wn0in1ijnn7mj97h"))))
(build-system gnu-build-system)
(inputs
(list libevent ncurses))
(native-inputs
- (list bison))
+ (list autoconf automake bison pkg-config))
(home-page "https://github.com/tmux/tmux/wiki")
(synopsis "Terminal multiplexer")
(description
- branch master updated (e6a771c7ba -> 13b2b983ee), guix-commits, 2024/09/27
- 04/07: gnu: fnc: fix cross-compiling., guix-commits, 2024/09/27
- 01/07: gnu: parallel: Update to 20240922., guix-commits, 2024/09/27
- 06/07: gnu: tmux: Update to 3.5., guix-commits, 2024/09/27
- 02/07: gnu: fuzzel: Update to 1.11.0., guix-commits, 2024/09/27
- 07/07: gnu: tmux: Build from git.,
guix-commits <=
- 05/07: gnu: magic-enum: Update to 0.9.6., guix-commits, 2024/09/27
- 03/07: gnu: fnc: Update to 0.18., guix-commits, 2024/09/27