mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 21:59:08 -05:00
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
This commit is contained in:
parent
d4542b430f
commit
13b2b983ee
1 changed files with 12 additions and 8 deletions
|
@ -10,6 +10,7 @@
|
||||||
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
|
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
|
||||||
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
|
;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
|
||||||
;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
|
;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
|
||||||
|
;;; Copyright © 2024 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -36,12 +37,14 @@ (define-module (gnu packages tmux)
|
||||||
#:use-module (guix build-system trivial)
|
#:use-module (guix build-system trivial)
|
||||||
#:use-module (guix build-system python)
|
#:use-module (guix build-system python)
|
||||||
#:use-module (gnu packages)
|
#:use-module (gnu packages)
|
||||||
|
#:use-module (gnu packages autotools)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages bison)
|
#:use-module (gnu packages bison)
|
||||||
#:use-module (gnu packages check)
|
#:use-module (gnu packages check)
|
||||||
#:use-module (gnu packages linux)
|
#:use-module (gnu packages linux)
|
||||||
#:use-module (gnu packages libevent)
|
#:use-module (gnu packages libevent)
|
||||||
#:use-module (gnu packages ncurses)
|
#:use-module (gnu packages ncurses)
|
||||||
|
#:use-module (gnu packages pkg-config)
|
||||||
#:use-module (gnu packages sphinx))
|
#:use-module (gnu packages sphinx))
|
||||||
|
|
||||||
(define-public tmux
|
(define-public tmux
|
||||||
|
@ -49,18 +52,19 @@ (define-public tmux
|
||||||
(name "tmux")
|
(name "tmux")
|
||||||
(version "3.5")
|
(version "3.5")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method git-fetch)
|
||||||
(uri (string-append
|
(uri (git-reference
|
||||||
"https://github.com/tmux/tmux/releases/download/"
|
(url "https://github.com/tmux/tmux")
|
||||||
version "/tmux-" version ".tar.gz"))
|
(commit version)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"03wmh5q3sd87njjdnqadi8jvq1icha1wiwi29993zng7wx11kq1g"))))
|
(base32
|
||||||
|
"1bdah5b8fbxwba3z7i46yx5vcvhwmn7yvdh3wn0in1ijnn7mj97h"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(inputs
|
(inputs
|
||||||
(list libevent ncurses))
|
(list libevent ncurses))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list bison))
|
(list autoconf automake bison pkg-config))
|
||||||
(home-page "https://github.com/tmux/tmux/wiki")
|
(home-page "https://github.com/tmux/tmux/wiki")
|
||||||
(synopsis "Terminal multiplexer")
|
(synopsis "Terminal multiplexer")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue